Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 480 for MUL (0.02 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-tfl-stablehlo-mul.mlir

    Eugene Burmako <******@****.***> 1671166704 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 16 05:09:09 UTC 2022
    - 751 bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/FarmHashFingerprint64.java

        if (length >= 8) {
          long mul = K2 + length * 2L;
          long a = load64(bytes, offset) + K2;
          long b = load64(bytes, offset + length - 8);
          long c = rotateRight(b, 37) * mul + a;
          long d = (rotateRight(a, 25) + b) * mul;
          return hashLength16(c, d, mul);
        }
        if (length >= 4) {
          long mul = K2 + length * 2;
          long a = load32(bytes, offset) & 0xFFFFFFFFL;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/FarmHashFingerprint64.java

        if (length >= 8) {
          long mul = K2 + length * 2L;
          long a = load64(bytes, offset) + K2;
          long b = load64(bytes, offset + length - 8);
          long c = rotateRight(b, 37) * mul + a;
          long d = (rotateRight(a, 25) + b) * mul;
          return hashLength16(c, d, mul);
        }
        if (length >= 4) {
          long mul = K2 + length * 2;
          long a = load32(bytes, offset) & 0xFFFFFFFFL;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/arithBoundary_test.go

    	itd8{a: -1, b: 127, add: 126, sub: -128, mul: -127, div: 0, mod: -1},
    	itd8{a: 0, b: -128, add: -128, sub: -128, mul: 0, div: 0, mod: 0},
    	itd8{a: 0, b: -127, add: -127, sub: 127, mul: 0, div: 0, mod: 0},
    	itd8{a: 0, b: -1, add: -1, sub: 1, mul: 0, div: 0, mod: 0},
    	itd8{a: 0, b: 0, add: 0, sub: 0, mul: 0},
    	itd8{a: 0, b: 1, add: 1, sub: -1, mul: 0, div: 0, mod: 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 31.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/magic_test.go

    			// Find largest multiple of c.
    			Mul := new(big.Int).Div(Max, C)
    			Mul.Mul(Mul, C)
    			mul := Mul.Int64()
    
    			// Try some input values, mostly around multiples of c.
    			for _, x := range [...]int64{
    				-1, 1,
    				-c - 1, -c, -c + 1, c - 1, c, c + 1,
    				-2*c - 1, -2 * c, -2*c + 1, 2*c - 1, 2 * c, 2*c + 1,
    				-mul - 1, -mul, -mul + 1, mul - 1, mul, mul + 1,
    				int64(1)<<(n-1) - 1, -int64(1) << (n - 1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 22:02:07 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     ConcatV2 1
     Const 5
     GreaterEqual 1
     MatMul 1
     Mul 5
     Select 2
     Sigmoid 3
     Snapshot 1
     Split 1
     Tanh 2
    cluster 28 size 27
     Add 3
     BiasAdd 1
     Cast 1
     ConcatV2 1
     Const 5
     GreaterEqual 1
     MatMul 1
     Mul 5
     Select 2
     Sigmoid 3
     Snapshot 1
     Split 1
     Tanh 2
    cluster 29 size 9
     Add 1
     Mul 2
     RealDiv 2
     Sqrt 2
     Sub 2
    cluster 30 size 9
     Add 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/fiat/p224_invert.go

    	z.Square(x)
    	t0.Mul(x, z)
    	z.Square(t0)
    	z.Mul(x, z)
    	t1.Square(z)
    	for s := 1; s < 3; s++ {
    		t1.Square(t1)
    	}
    	t1.Mul(z, t1)
    	t2.Square(t1)
    	for s := 1; s < 6; s++ {
    		t2.Square(t2)
    	}
    	t1.Mul(t1, t2)
    	for s := 0; s < 2; s++ {
    		t1.Square(t1)
    	}
    	t0.Mul(t0, t1)
    	t1.Square(t0)
    	for s := 1; s < 3; s++ {
    		t1.Square(t1)
    	}
    	z.Mul(z, t1)
    	t1.Square(z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/sink_constant.mlir

            // CHECK-NOT:"tf.Const"
            // CHECK: %[[MUL1:.*]] = "tf.Mul"(%arg0, %[[CST2]])
            // CHECK-NEXT: %[[MUL2:.*]] = "tf.Mul"(%[[MUL1]], %[[CST2]])
            // CHECK-NEXT: %[[MUL3:.*]] = "tf.Mul"(%[[MUL2]], %[[CST3]])
            // CHECK-NEXT: = "tf.Mul"(%[[MUL3]], %[[CST4]])
            %3 = "tf.Mul"(%arg0, %0) : (tensor<16xf32>, tensor<f32>) -> tensor<16xf32>
            %4 = "tf.Mul"(%3, %0) : (tensor<16xf32>, tensor<f32>) -> tensor<16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/output_arrays.mlir

      // CHECK: %[[MUL:.*]] = tfl.mul
      %2 = "tfl.mul"(%0, %1) {fused_activation_function = "NONE"} : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32> loc("mul")
      // CHECK: %[[DIV:.*]] = tfl.div
      %3 = "tfl.div"(%2, %1) {fused_activation_function = "NONE"} : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32> loc("div")
      // CHECK: %[[EXP:.*]] = "tfl.exp"
      %4 = "tfl.exp"(%3) : (tensor<4xf32>) -> tensor<4xf32> loc("exp")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:35:24 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p256_invert.go

    	var t1 = new(P256Element)
    
    	z.Square(x)
    	z.Mul(x, z)
    	z.Square(z)
    	z.Mul(x, z)
    	t0.Square(z)
    	for s := 1; s < 3; s++ {
    		t0.Square(t0)
    	}
    	t0.Mul(z, t0)
    	t1.Square(t0)
    	for s := 1; s < 6; s++ {
    		t1.Square(t1)
    	}
    	t0.Mul(t0, t1)
    	for s := 0; s < 3; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	t0.Mul(x, t0)
    	t1.Square(t0)
    	for s := 1; s < 16; s++ {
    		t1.Square(t1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top