Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 439 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/transforms/optimize.td

    // Checks if the value has only one user.
    def HasOneUse : Constraint<CPred<"$0.hasOneUse()">>;
    
    // If we see a Conv2D op followed by Mul, then multiply the filter
    // with the value in Mul.
    def FuseMulAndConv2D :
      Pat<(TF_MulOp:$mul (TF_Conv2DOp:$conv $input,
                              (Arith_ConstantOp:$filter F32ElementsAttr:$filter_value),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 22 07:31:23 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256.go

    	z.Square(x)
    	z.Mul(x, z)
    	t0.Square(z)
    	for s := 1; s < 2; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	for s := 1; s < 4; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	for s := 1; s < 8; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	for s := 1; s < 16; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	for s := 0; s < 32; s++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top