Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for MULTIPLY (0.23 sec)

  1. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                            Multiplier multiplier = new Multiplier();
                            Assert.assertEquals(1, multiplier.multiply(1, 1));
                            Assert.assertEquals(4, multiplier.multiply(2, 2));
                            Assert.assertEquals(2, multiplier.multiply(1, 2));
                        }
                    }
                """
                file("transitive/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	// add 2¹²⁸ to each message block value
    	VLEIB $4, $1, M_4
    	VLEIB $12, $1, M_4
    
    multiply:
    	// accumulate the incoming message
    	VAG H_0, M_0, M_0
    	VAG H_3, M_3, M_3
    	VAG H_1, M_1, M_1
    	VAG H_4, M_4, M_4
    	VAG H_2, M_2, M_2
    
    	// multiply the accumulator by the key coefficient
    	MULTIPLY(M_0, M_1, M_2, M_3, M_4, R_0, R_1, R_2, R_3, R_4, R5_1, R5_2, R5_3, R5_4, H_0, H_1, H_2, H_3, H_4)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. internal/grid/benchmark_test.go

    					}
    					atomic.AddInt64(&ops, int64(n))
    					atomic.AddInt64(&lat, latency)
    				})
    				spent := time.Since(t)
    				if spent > 0 && n > 0 {
    					// Since we are benchmarking n parallel servers we need to multiply by n.
    					// This will give an estimate of the total ops/s.
    					latency := float64(atomic.LoadInt64(&lat)) / float64(time.Millisecond)
    					b.ReportMetric(float64(n)*float64(ops)/spent.Seconds(), "vops/s")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/magic.go

    //   ⎡x / c⎤ = ⎣x * m / 2^(n+s)⎦ + 1
    // (TODO: derivation?)
    //
    // The multiply is a bit odd, as it is a signed n-bit value
    // times an unsigned n-bit value.  For n smaller than the
    // word size, we can extend x and m appropriately and use the
    // signed multiply instruction.  For n == word size,
    // we must use the signed multiply high and correct
    // the result by adding x*2^n.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        %16 = stablehlo.subtract %10, %15 : tensor<1x3x3x4xf32>
        %17 = stablehlo.broadcast_in_dim %4, dims = [0, 1, 2, 3] : (tensor<1x1x1x4xf32>) -> tensor<1x3x3x4xf32>
        %18 = stablehlo.multiply %16, %17 : tensor<1x3x3x4xf32>
        %19 = call @uniform_quantize_1(%18, %5, %6) : (tensor<1x3x3x4xf32>, tensor<1x1x1x1xf32>, tensor<1x1x1x1xi8>) -> tensor<1x3x3x4xi8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasAVX512IFMA       bool // Advanced vector extension 512 Integer Fused Multiply Add
    	HasAVX512VBMI       bool // Advanced vector extension 512 Vector Byte Manipulation Instructions
    	HasAVX5124VNNIW     bool // Advanced vector extension 512 Vector Neural Network Instructions Word variable precision
    	HasAVX5124FMAPS     bool // Advanced vector extension 512 Fused Multiply Accumulation Packed Single precision
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                            Multiplier multiplier = new Multiplier();
                            Assert.assertEquals(1, multiplier.multiply(1, 1));
                            Assert.assertEquals(4, multiplier.multiply(2, 2));
                            Assert.assertEquals(2, multiplier.multiply(1, 2));
                        }
                    }
                """
                file("transitive/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/nn_grad.cc

        auto subtraction_result = Subtract(scope, grad_grad, squeeze_result);
        auto multiply_result = Multiply(scope, subtraction_result, logits_softmax);
        grad = Add(scope, grad, multiply_result);
      }
      auto minus_log_softmax = Multiply(scope, LogSoftmax(scope, logits), -1.0f);
      grad_outputs->push_back(grad);
      grad_outputs->push_back(BroadcastMul(scope, grad_loss, minus_log_softmax));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      %10 = mhlo.add %arg0, %5 : tensor<2xf32>
      %11 = mhlo.clamp %7, %10, %3 : tensor<2xf32>
      %12 = mhlo.clamp %9, %11, %1 : tensor<2xf32>
      %13 = mhlo.multiply %arg0, %12 : tensor<2xf32>
      %14 = mhlo.divide %13, %1 : tensor<2xf32>
      return %14 : tensor<2xf32>
    }
    
    // CHECK-LABEL:   func.func @hardswish(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteCond_test.go

    	}
    
    	if y32+v32_n < 0 {
    		t.Errorf("'%#x + %#x < 0' failed", y32, v32_n)
    	}
    
    	if y32+v32_n <= 0 {
    		t.Errorf("'%#x + %#x <= 0' failed", y32, v32_n)
    	}
    }
    
    // multiply-add
    func testMAddVar64(t *testing.T) {
    	if x64+v64*one64 < 0 {
    	} else {
    		t.Errorf("'%#x + %#x*1 < 0' failed", x64, v64)
    	}
    
    	if x64+v64*one64 <= 0 {
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 01:19:09 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top