Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 97 for MULTIPLY (0.16 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppTest.groovy

        SwiftAppTest(SwiftSourceElement tested, GreeterElement greeter, SumElement sum, MultiplyElement multiply) {
            super(tested.projectName)
            greeterTest = new SwiftGreeterTest(greeter).withImport(tested.moduleName)
            sumTest = new SwiftSumTest(sum).withImport(tested.moduleName)
            multiplyTest = new SwiftMultiplyTest(multiply).withTestableImport(tested.moduleName)
        }
    
        final List<XCTestSourceFileElement> getTestSuites() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftLibTest.groovy

        SwiftLibTest(SwiftSourceElement tested, GreeterElement greeter, SumElement sum, MultiplyElement multiply) {
            super(tested.projectName)
            sumTest = new SwiftSumTest(sum).withImport(tested.moduleName)
            greeterTest = new SwiftGreeterTest(greeter).withImport(tested.moduleName)
            multiplyTest = new SwiftMultiplyTest(multiply).withTestableImport(tested.moduleName)
        }
    
        List<XCTestSourceFileElement> getTestSuites() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/math/bits/example_math_test.go

    	// Second number is 0<<32 + 12
    	n2 := []uint32{0, 12}
    	// Multiply them together without producing overflow.
    	hi, lo := bits.Mul32(n1[1], n2[1])
    	nsum := []uint32{hi, lo}
    	fmt.Printf("%v * %v = %v\n", n1[1], n2[1], nsum)
    
    	// First number is 0<<32 + 2147483648
    	n1 = []uint32{0, 0x80000000}
    	// Second number is 0<<32 + 2
    	n2 = []uint32{0, 2}
    	// Multiply them together producing overflow.
    	hi, lo = bits.Mul32(n1[1], n2[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 11 21:27:05 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftApp.groovy

    class SwiftApp extends SwiftSourceElement implements AppElement {
        final greeter = new SwiftGreeter()
        final sum = new SwiftSum()
        final multiply = new SwiftMultiply()
        final main = new SwiftMain(greeter, sum)
        List<SourceFile> files = [main.sourceFile, greeter.sourceFile, sum.sourceFile, multiply.sourceFile]
    
        SwiftApp() {
            super('app')
        }
    
        @Override
        String getExpectedOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization_test.cc

      CreateModule(kNonStaticWithBoundsSuccess);
    
      auto result = Run();
    
      EXPECT_TRUE(result.succeeded());
      EXPECT_EQ(legal_error.Delta("mhlo.multiply"), 0);
      EXPECT_EQ(static_error.Delta("mhlo.multiply"), 0);
    }
    
    TEST_F(VerifyTfxlaLegalizationTest, RecordsMultipleFailures) {
      // Using a string constant here instead of testdata to make this compatible
      // with open source.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/runtime/time_windows_arm.s

    TEXT time·now(SB),NOSPLIT,$0-20
    	MOVW	$_INTERRUPT_TIME, R3
    loop:
    	MOVW	time_hi1(R3), R1
    	DMB	MB_ISH
    	MOVW	time_lo(R3), R0
    	DMB	MB_ISH
    	MOVW	time_hi2(R3), R2
    	CMP	R1, R2
    	BNE	loop
    
    	// wintime = R1:R0, multiply by 100
    	MOVW	$100, R2
    	MULLU	R0, R2, (R4, R3)    // R4:R3 = R1:R0 * R2
    	MULA	R1, R2, R4, R4
    
    	// wintime*100 = R4:R3
    	MOVW	R3, mono+12(FP)
    	MOVW	R4, mono+16(FP)
    
    	MOVW	$_SYSTEM_TIME, R3
    wall:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/tests/shlo_simplify.mlir

      %2 = stablehlo.divide %arg0, %0 : tensor<2xf32>
      return %2 : tensor<2xf32>
    }
    
    // CHECK-LABEL: divideToMulReciprocalSplat
    // CHECK: stablehlo.constant dense<5.000000e-01> : tensor<2xf32>
    // CHECK: stablehlo.multiply
    
    // -----
    
    func.func @divideToMulReciprocal(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      %0 = stablehlo.constant dense<[2.0, 3.0]> : tensor<2xf32>
      %2 = stablehlo.divide %arg0, %0 : tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 03:05:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/initScripts/externalDependency/groovy/init.gradle

    initscript {
        repositories {
            mavenCentral()
        }
        dependencies {
            classpath 'org.apache.commons:commons-math:2.0'
        }
    }
    // end::declare-classpath[]
    
    println Fraction.ONE_FIFTH.multiply(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 318 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/initScripts/externalDependency/kotlin/init.gradle.kts

    initscript {
        repositories {
            mavenCentral()
        }
        dependencies {
            classpath("org.apache.commons:commons-math:2.0")
        }
    }
    // end::declare-classpath[]
    
    println(Fraction.ONE_FIFTH.multiply(2))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 320 bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    	// Compute new scale matrix in current mouse position
    	var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y);
    
    	setCTM(g, g.getCTM().multiply(k));
    
    	if(typeof(stateTf) == "undefined")
    		stateTf = g.getCTM().inverse();
    
    	stateTf = stateTf.multiply(k.inverse());
    }
    
    /**
     * Handle mouse move event.
     */
    function handleMouseMove(evt) {
    	if(evt.preventDefault)
    		evt.preventDefault();
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top