Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for MULTIPLY (0.17 sec)

  1. src/crypto/internal/edwards25519/field/fe.go

    	uv3 := new(Element).Multiply(u, t0.Multiply(v2, v))
    	uv7 := new(Element).Multiply(uv3, t0.Square(v2))
    	rr := new(Element).Multiply(uv3, t0.Pow22523(uv7))
    
    	check := new(Element).Multiply(v, t0.Square(rr)) // check = v * r^2
    
    	uNeg := new(Element).Negate(u)
    	correctSignSqrt := check.Equal(u)
    	flippedSignSqrt := check.Equal(uNeg)
    	flippedSignSqrtI := check.Equal(t0.Multiply(uNeg, sqrtM1))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Map.of("_default", List.of("QUERY1")), //
                    Set.of("QUERY1"), //
                    buildQuery("QUERY1^10"));
    
            assertQueryContext(
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 37.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/unfuse_mhlo_batch_norm.mlir

      // CHECK-DAG: %[[VARIANCE_EPS_RSQRT:.+]] = mhlo.rsqrt %[[VARIANCE_EPS]] : tensor<256xf32>
      // CHECK-DAG: %[[MULTIPLIER:.+]] = mhlo.multiply %[[VARIANCE_EPS_RSQRT]], %[[SCALE]] : tensor<256xf32>
      // CHECK-DAG: %[[MUL_MEAN:.+]] = mhlo.multiply %[[MULTIPLIER]], %[[MEAN]] : tensor<256xf32>
      // CHECK-DAG: %[[RHS:.+]] = mhlo.subtract %[[OFFSET]], %[[MUL_MEAN]] : tensor<256xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/fold_broadcast.mlir

      %0 = "mhlo.broadcast_in_dim"(%cst0) <{broadcast_dimensions = dense<3> : tensor<1xi64>}> : (tensor<4xi32>) -> tensor<1x1x2x4xi32>
      // CHECK: %[[MUL:.*]] = mhlo.multiply %[[BROADCAST]], %[[ARG]] : tensor<1x1x2x4xi32>
      %1 = mhlo.multiply %0, %arg0 : tensor<1x1x2x4xi32>
      // CHECK:      return %[[MUL]] : tensor<1x1x2x4xi32>
      func.return %1 : tensor<1x1x2x4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/BigIntegerMath.java

          case 2:
            return nums.get(start).multiply(nums.get(start + 1));
          case 3:
            return nums.get(start).multiply(nums.get(start + 1)).multiply(nums.get(start + 2));
          default:
            // Otherwise, split the list in half and recursively do this.
            int m = (end + start) >>> 1;
            return listProduct(nums, start, m).multiply(listProduct(nums, m, end));
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/BigIntegerMath.java

          case 2:
            return nums.get(start).multiply(nums.get(start + 1));
          case 3:
            return nums.get(start).multiply(nums.get(start + 1)).multiply(nums.get(start + 2));
          default:
            // Otherwise, split the list in half and recursively do this.
            int m = (end + start) >>> 1;
            return listProduct(nums, start, m).multiply(listProduct(nums, m, end));
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.pprof.node_map

    example.com/pgo/devirtualize/mult%2epkg.MultFn
    48 91
    example.com/pgo/devirtualize.ExerciseIface
    example.com/pgo/devirtualize.Add.Add
    49 55
    example.com/pgo/devirtualize.ExerciseIface
    example.com/pgo/devirtualize/mult%2epkg.Mult.Multiply
    49 40
    example.com/pgo/devirtualize.ExerciseFuncClosure
    example.com/pgo/devirtualize.Sub.Add
    18 14
    example.com/pgo/devirtualize.ExerciseFuncField
    example.com/pgo/devirtualize.SubFn
    23 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/fuse_mhlo_convolution.mlir

      // CHECK-DAG: %[[CST_BCAST:.+]] = "mhlo.broadcast_in_dim"(%[[CST]]) <{broadcast_dimensions = dense<3> : tensor<1xi64>}> : (tensor<2xf32>) -> tensor<1x1x3x2xf32>
      // CHECK-DAG: %[[NEW_FILTER:.+]] =  mhlo.multiply %[[CST_BCAST]], %[[FILTER]] : tensor<1x1x3x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    	op_VME    uint32 = 0xE7A6 // 	VRR-c	VECTOR MULTIPLY EVEN
    	op_VMH    uint32 = 0xE7A3 // 	VRR-c	VECTOR MULTIPLY HIGH
    	op_VMLE   uint32 = 0xE7A4 // 	VRR-c	VECTOR MULTIPLY EVEN LOGICAL
    	op_VMLH   uint32 = 0xE7A1 // 	VRR-c	VECTOR MULTIPLY HIGH LOGICAL
    	op_VMLO   uint32 = 0xE7A5 // 	VRR-c	VECTOR MULTIPLY ODD LOGICAL
    	op_VML    uint32 = 0xE7A2 // 	VRR-c	VECTOR MULTIPLY LOW
    	op_VMO    uint32 = 0xE7A7 // 	VRR-c	VECTOR MULTIPLY ODD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalar.go

    func NewScalar() *Scalar {
    	return &Scalar{}
    }
    
    // MultiplyAdd sets s = x * y + z mod l, and returns s. It is equivalent to
    // using Multiply and then Add.
    func (s *Scalar) MultiplyAdd(x, y, z *Scalar) *Scalar {
    	// Make a copy of z in case it aliases s.
    	zCopy := new(Scalar).Set(z)
    	return s.Multiply(x, y).Add(s, zCopy)
    }
    
    // Add sets s = x + y mod l, and returns s.
    func (s *Scalar) Add(x, y *Scalar) *Scalar {
    	// s = 1 * x + y mod l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top