Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 211 for MULTIPLY (0.32 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/call_xla_module_to_stablehlo.mlir

    // CHECK-NEXT:    %0 = stablehlo.custom_call @Sharding(%arg0) {mhlo.sharding = ""} : (tensor<2x3xi32>) -> tensor<2x3xi32>
    // CHECK-NEXT:    %1 = stablehlo.multiply %0, %0 : tensor<2x3xi32>
    // CHECK-NEXT:    return %1 : tensor<2x3xi32>
    // CHECK-NEXT:  }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 21:25:51 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.h

    #include "mlir/Transforms/DialectConversion.h"  // from @llvm-project
    
    namespace mlir {
    namespace odml {
    // Converts mhlo.dot_general to tfl.BatchMatMul. Reshape and Transpose ops will
    // be inserted to convert to well-formed matrix multiply; i.e., mhlo.dot_general
    // -> tfl.batch_matmul(mhlo.transpose(mhlo.reshape(operand)), ...).
    // Note:
    // 1) Reshape/transpose are inserted because tfl.BatchMatMul requires
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 19:00:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

        def "adds source dependencies Swift module of test component to Xcode indexer search path"() {
            def library = new SwiftLib()
            def test = new SwiftLibTest(library, library.greeter, library.sum, library.multiply)
    
            given:
            buildTestFixture.withBuildInSubDir()
            singleProjectBuild("greeter") {
                buildFile << """
                    apply plugin: 'swift-library'
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/optimize_functional_ops.mlir

      // CHECK: %[[INPUT1:.*]] = "tf.Placeholder.input"
      %1 = "tf.Placeholder.input"(%arg1) : (tensor<f32>) -> tensor<f32>
      %2 = arith.constant dense<true> : tensor<i1>
    
      // CHECK: "tf.Multiply"(%[[INPUT1]], %[[INPUT0]])
      %3 = "tf.If"(%2, %0, %1) {else_branch = @sub, then_branch = @addormul, is_stateless = true} : (tensor<i1>, tensor<f32>, tensor<f32>) -> tensor<f32>
      func.return %3 : tensor<f32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 10:34:48 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/verify-tfxla-legalization.mlir

      // expected-error @+1 {{Node `mhlo.dynamic_iota` must have compile-time constant}}
      %3 = "mhlo.dynamic_iota"(%2) <{iota_dimension = 0 : i64}> : (tensor<1xi64>) -> tensor<?xi32>
      %4 = mhlo.multiply %3, %3 : tensor<?xi32>
      return %4 : tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestRuntimesGenerator.java

            if (flakinessRate == null || baseDuration == null) {
                return baseDuration;
            }
            return baseDuration + flakinessRate.multiply(BigDecimal.valueOf(baseDuration)).longValue();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/CompositeTestResults.java

            BigDecimal runTests = BigDecimal.valueOf(getRunTestCount());
            BigDecimal successful = BigDecimal.valueOf(getRunTestCount() - getFailureCount());
    
            return successful.divide(runTests, 2, RoundingMode.DOWN).multiply(BigDecimal.valueOf(100)).intValue();
        }
    
        protected void failed(TestResult failedTest) {
            failures.add(failedTest);
            if (parent != null) {
                parent.failed(failedTest);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.mlir

      // CHECK: %[[CONSTANT2:.*]] = stablehlo.constant dense<1.000000e+03> : tensor<1024x3xf32>
      // CHECK: %[[ADD:.*]] = stablehlo.add %[[INPUT1]], %[[CONSTANT2]] : tensor<1024x3xf32>
      // CHECK: %[[MUL:.*]] = stablehlo.multiply %[[INPUT1]], %[[INPUT2]] : tensor<1024x3xf32>
      // CHECK: return %[[ADD]], %[[MUL]]
      // CHECK: }
    
      // CHECK: @serving_default
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalarmult.go

    	// and do four doublings to multiply by 16.
    	digits := x.signedRadix16()
    
    	multiple := &affineCached{}
    	tmp1 := &projP1xP1{}
    	tmp2 := &projP2{}
    
    	// Accumulate the odd components first
    	v.Set(NewIdentityPoint())
    	for i := 1; i < 64; i += 2 {
    		basepointTable[i/2].SelectInto(multiple, digits[i])
    		tmp1.AddAffine(v, multiple)
    		v.fromP1xP1(tmp1)
    	}
    
    	// Multiply by 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/collect/MinMaxPriorityQueueBenchmark.java

          // Math.sin is very slow for values outside 4*pi
          // Need to take absolute value to avoid inverting the value.
          for (double i = 0; i < 100; i += 20) {
            v =
                v.add(
                    v.multiply(
                        BigInteger.valueOf(((Double) Math.abs(Math.sin(i) * 10.0)).longValue())));
          }
          return v;
        }
      }
    
      public enum ComparatorType {
        CHEAP {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top