Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for tvp1 (0.29 sec)

  1. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    	twoVolPod := st.MakePod().Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			AWSElasticBlockStore: &v1.AWSElasticBlockStoreVolumeSource{VolumeID: "tvp1"},
    		},
    	}).Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			AWSElasticBlockStore: &v1.AWSElasticBlockStoreVolumeSource{VolumeID: "tvp2"},
    		},
    	}).Obj()
    	splitVolsPod := st.MakePod().Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			HostPath: &v1.HostPathVolumeSource{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/tables_test.go

    )
    
    func TestProjLookupTable(t *testing.T) {
    	var table projLookupTable
    	table.FromP3(B)
    
    	var tmp1, tmp2, tmp3 projCached
    	table.SelectInto(&tmp1, 6)
    	table.SelectInto(&tmp2, -2)
    	table.SelectInto(&tmp3, -4)
    	// Expect T1 + T2 + T3 = identity
    
    	var accP1xP1 projP1xP1
    	accP3 := NewIdentityPoint()
    
    	accP1xP1.Add(accP3, &tmp1)
    	accP3.fromP1xP1(&accP1xP1)
    	accP1xP1.Add(accP3, &tmp2)
    	accP3.fromP1xP1(&accP1xP1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/scalarmult.go

    		tmp2.FromP1xP1(tmp1) // tmp2 =  4*(prev) in P2 coords
    		tmp1.Double(tmp2)    // tmp1 =  8*(prev) in P1xP1 coords
    		tmp2.FromP1xP1(tmp1) // tmp2 =  8*(prev) in P2 coords
    		tmp1.Double(tmp2)    // tmp1 = 16*(prev) in P1xP1 coords
    		v.fromP1xP1(tmp1)    //    v = 16*(prev) in P3 coords
    		table.SelectInto(multiple, digits[i])
    		tmp1.Add(v, multiple) // tmp1 = x_i*Q + 16*(prev) in P1xP1 coords
    	}
    	v.fromP1xP1(tmp1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/partitioned-topological-sort.mlir

    func.func @tf_ops_will_be_partitioned() -> tensor<1xf32> {
      %const = "tfl.pseudo_const"() {value = dense<[1.0]> : tensor<1xf32>} : () -> tensor<1xf32>
      %tmp1 = "tfl.add"(%const, %const) { fused_activation_function = "NONE" } : (tensor<1xf32>,tensor<1xf32>) -> (tensor<1xf32>)
      %tmp2 = "tf.AddV2"(%tmp1, %tmp1) { device = "" } : (tensor<1xf32>, tensor<1xf32>) -> (tensor<1xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 22:33:49 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  5. misc/cgo/gmp/pi.go

    		return -1
    	}
    	return tmp1.Int64()
    }
    
    func nextTerm(k int64) {
    	y2 := k*2 + 1
    	accum.Add(accum, tmp1.Lsh(numer, 1))
    	accum.Mul(accum, tmp1.SetInt64(y2))
    	numer.Mul(numer, tmp1.SetInt64(k))
    	denom.Mul(denom, tmp1.SetInt64(y2))
    }
    
    func eliminateDigit(d int64) {
    	accum.Sub(accum, tmp1.Mul(denom, tmp1.SetInt64(d)))
    	accum.Mul(accum, ten)
    	numer.Mul(numer, ten)
    }
    
    func main() {
    	i := 0
    	k := int64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 22:32:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/control_edges.mlir

    func.func @long_chain(%arg0: tensor<1xf32>)->tensor<1xf32> {
      %tmp0, %ctl0 = tfl.control_node controls "tfl.neg"(%arg0): (tensor<1xf32>) -> tensor<1xf32>
      %tmp1, %ctl1 = tfl.control_node(%ctl0) controls "tfl.neg"(%tmp0): (tensor<1xf32>) -> tensor<1xf32>
      %tmp2, %ctl2 = tfl.control_node(%ctl1) controls "tfl.neg"(%tmp1): (tensor<1xf32>) -> tensor<1xf32>
      %tmp3, %ctl3 = tfl.control_node(%ctl2) controls "tfl.neg"(%tmp2): (tensor<1xf32>) -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 14 21:40:53 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. src/crypto/ecdh/x25519.go

    		z2.Multiply(&z2, &tmp1)
    		tmp0.Square(&tmp1)
    		tmp1.Square(&x2)
    		x3.Add(&z3, &z2)
    		z2.Subtract(&z3, &z2)
    		x2.Multiply(&tmp1, &tmp0)
    		tmp1.Subtract(&tmp1, &tmp0)
    		z2.Square(&z2)
    
    		z3.Mult32(&tmp1, 121666)
    		x3.Square(&x3)
    		tmp0.Add(&tmp0, &z3)
    		z3.Multiply(&x1, &z2)
    		z2.Multiply(&tmp1, &tmp0)
    	}
    
    	x2.Swap(&x3, swap)
    	z2.Swap(&z3, swap)
    
    	z2.Invert(&z2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

      %tmp1 = "tfl.add"(%const, %const) { fused_activation_function = "NONE" } : (tensor<1xf32>,tensor<1xf32>) -> (tensor<1xf32>)
      %tmp2 = "tfl.add"(%var, %tmp1) { fused_activation_function = "NONE" } : (tensor<!tf_type.resource<tensor<1xf32>>>, tensor<1xf32>) -> (tensor<1xf32>)
      %tmp3 = "tfl.add"(%tmp2, %tmp1) { fused_activation_function = "NONE" } : (tensor<1xf32>, tensor<1xf32>) -> (tensor<1xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalarmult_test.go

    			t.Errorf("Basepoint table %d does not match", i)
    		}
    
    		// Set p = (16^2)*p = 256*p = 2^8*p
    		tmp2.FromP3(tmp3)
    		for j := 0; j < 7; j++ {
    			tmp1.Double(tmp2)
    			tmp2.FromP1xP1(tmp1)
    		}
    		tmp1.Double(tmp2)
    		tmp3.fromP1xP1(tmp1)
    		checkOnCurve(t, tmp3)
    	}
    }
    
    func TestScalarMultMatchesBaseMult(t *testing.T) {
    	scalarMultMatchesBaseMult := func(x Scalar) bool {
    		var p, q Point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/internal/types/testdata/spec/assignability.go

    func _[
    	TP0 any,
    	TP1 ~_Chan,
    	TP2 ~chan int | ~chan byte,
    ]() {
    	var (
    		_ TP0 = c // ERRORx `cannot use c .* as TP0 value`
    		_ TP0 = C // ERRORx `cannot use C .* as TP0 value`
    		_ TP1 = c
    		_ TP1 = C // ERRORx `cannot use C .* as TP1 value`
    		_ TP2 = c // ERRORx `.* cannot assign (chan int|_Chan.*) to chan byte`
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top