Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 93 for MULTIPLY (0.23 sec)

  1. android/guava-tests/test/com/google/common/math/StatsTesting.java

      static final double LARGE_INTEGER_VALUES_MEAN =
          BigInteger.valueOf(Integer.MAX_VALUE)
              .multiply(BigInteger.valueOf(3L))
              .divide(BigInteger.valueOf(4L))
              .doubleValue();
      static final double LARGE_INTEGER_VALUES_POPULATION_VARIANCE =
          BigInteger.valueOf(Integer.MAX_VALUE)
              .multiply(BigInteger.valueOf(Integer.MAX_VALUE))
              .divide(BigInteger.valueOf(16L))
              .doubleValue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  2. 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)
  3. test/chan/powser1.go

    }
    
    // Subtract
    
    func Sub(U, V PS) PS {
    	return Add(U, Cmul(neg(one), V))
    }
    
    // Multiply a power series by the monomial x^n
    
    func Monmul(U PS, n int) PS {
    	Z := mkPS()
    	go func() {
    		for ; n > 0; n-- {
    			put(zero, Z)
    		}
    		copy(U, Z)
    	}()
    	return Z
    }
    
    // Multiply by x
    
    func Xmul(U PS) PS {
    	return Monmul(U, 1)
    }
    
    func Rep(c rat) PS {
    	Z := mkPS()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  4. 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)
  5. test/chan/powser2.go

    // Subtract
    
    func Sub(U, V PS) PS {
    	return Add(U, Cmul(neg(one), V))
    }
    
    // Multiply a power series by the monomial x^n
    
    func Monmul(U PS, n int) PS {
    	Z := mkPS()
    	go func(n int, U PS, Z PS) {
    		for ; n > 0; n-- {
    			put(zero, Z)
    		}
    		copy(U, Z)
    	}(n, U, Z)
    	return Z
    }
    
    // Multiply by x
    
    func Xmul(U PS) PS {
    	return Monmul(U, 1)
    }
    
    func Rep(c *rat) PS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

        18: 0000000000403dc0     0 OBJECT  LOCAL  DEFAULT   20 __frame_dummy_in[...]
        19: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS sum.cpp
        20: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS multiply.cpp
        21: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS crtstuff.c
        22: 00000000004021e0     0 OBJECT  LOCAL  DEFAULT   19 __FRAME_END__
        23: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    				sz = listSize.Multiply(elemSize)
    			}
    
    			if len(args) > 0 {
    				sepSize := l.sizeEstimate(args[0])
    				minSeparators := uint64(0)
    				maxSeparators := uint64(0)
    				if listSize.Min > 0 {
    					minSeparators = listSize.Min - 1
    				}
    				if listSize.Max > 0 {
    					maxSeparators = listSize.Max - 1
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            expect:
            succeeds "assemble"
            result.assertTasksExecuted(assembleAppTasks)
            result.assertTasksNotSkipped(assembleAppTasks)
    
            outputs.deletedClasses("multiply", "sum")
    
            // See https://github.com/gradle/gradle-native/issues/1004
            if (toolchainUnderTest.version.major == 5) {
                outputs.recompiledClasses('renamed-sum')
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/math_ops.cc

    using tensorflow::tracing::MaybeSetOpName;
    
    namespace tensorflow {
    namespace ops {
    
    // Op: Mul()
    // Summary: Returns x * y element-wise.
    //
    // Description:
    //   *NOTE*: `Multiply` supports broadcasting. More about broadcasting
    //   [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
    Status Mul(AbstractContext* ctx, AbstractTensorHandle* const x,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  10. src/math/big/natdiv.go

    We can ensure that v has a large top digit by multiplying both u and v by the
    right amount. Continuing the example, if we multiply both 172 and 19 by 3, we
    now have ⌊516/57⌋, the leading digit of v is now ≥ 5, and sure enough
    ⌊51/5⌋ = 10 is much closer to the correct answer 9. It would be easier here
    to multiply by 4, because that can be done with a shift. Specifically, we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top