Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 480 for MUL (0.04 sec)

  1. src/go/types/token_test.go

    package types
    
    import (
    	"go/token"
    	"testing"
    )
    
    var assignOps = map[token.Token]token.Token{
    	token.ADD_ASSIGN:     token.ADD,
    	token.SUB_ASSIGN:     token.SUB,
    	token.MUL_ASSIGN:     token.MUL,
    	token.QUO_ASSIGN:     token.QUO,
    	token.REM_ASSIGN:     token.REM,
    	token.AND_ASSIGN:     token.AND,
    	token.OR_ASSIGN:      token.OR,
    	token.XOR_ASSIGN:     token.XOR,
    	token.SHL_ASSIGN:     token.SHL,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 08 03:40:04 UTC 2015
    - 1.2K bytes
    - Viewed (0)
  2. src/runtime/softfloat64_test.go

    		bx := math.Float64bits(x)
    		by := math.Float64bits(y)
    		return math.Float64frombits(f(bx, by))
    	}
    }
    
    func add(x, y float64) float64 { return x + y }
    func sub(x, y float64) float64 { return x - y }
    func mul(x, y float64) float64 { return x * y }
    func div(x, y float64) float64 { return x / y }
    
    func TestFloat64(t *testing.T) {
    	base := []float64{
    		0,
    		math.Copysign(0, -1),
    		-1,
    		1,
    		math.NaN(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4K bytes
    - Viewed (0)
  3. test/codegen/comparisons.go

    // var + var*var
    func CmpToZero_ex3(a, b, c, d int64, e, f, g, h int32) int {
    	// arm64:`CMN`,-`MADD`,`MUL`,`(BMI|BPL)`
    	if a+b*c < 0 {
    		return 1
    	}
    
    	// arm64:`CMN`,-`MADD`,`MUL`,`(BMI|BPL)`
    	if b+c*d >= 0 {
    		return 2
    	}
    
    	// arm64:`CMNW`,-`MADDW`,`MULW`,`BEQ`,`(BMI|BPL)`
    	// arm:`CMN`,-`MULA`,`MUL`,`BEQ`,`(BMI|BPL)`
    	if e+f*g > 0 {
    		return 5
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. src/internal/trace/batchcursor.go

    	}
    	// Initialize lastTs if it hasn't been yet.
    	if b.lastTs == 0 {
    		b.lastTs = freq.mul(batches[b.idx].time)
    	}
    	// Read an event out.
    	n, tsdiff, err := readTimedBaseEvent(batches[b.idx].data[b.dataOff:], &b.ev)
    	if err != nil {
    		return false, err
    	}
    	// Complete the timestamp from the cursor's last timestamp.
    	b.ev.time = freq.mul(tsdiff) + b.lastTs
    
    	// Move the cursor's timestamp forward.
    	b.lastTs = b.ev.time
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/c/c_test_util.h

    TF_Operation* Min(TF_Operation* l, TF_Operation* r, TF_Graph* graph,
                      TF_Status* s, const char* name = "min");
    
    TF_Operation* Mul(TF_Operation* l, TF_Operation* r, TF_Graph* graph,
                      TF_Status* s, const char* name = "mul");
    
    // If `op_device` is non-empty, set the created op on that device.
    TF_Operation* MinWithDevice(TF_Operation* l, TF_Operation* r, TF_Graph* graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 09 01:06:53 UTC 2018
    - 6K bytes
    - Viewed (0)
  6. src/math/big/float_test.go

    		{0, 1, 2, -1, '-', (*Float).Sub},
    		{1, 2, 0, 2, '-', (*Float).Sub},
    		{2, 0, 1, -1, '-', (*Float).Sub},
    
    		{0, 0, 0, 0, '*', (*Float).Mul},
    		{0, 1, 2, 2, '*', (*Float).Mul},
    		{1, 2, 0, 0, '*', (*Float).Mul},
    		{2, 0, 1, 0, '*', (*Float).Mul},
    
    		// {0, 0, 0, 0, '/', (*Float).Quo}, // panics
    		{0, 2, 1, 2, '/', (*Float).Quo},
    		{1, 2, 0, 0, '/', (*Float).Quo}, // = +Inf
    		{2, 0, 1, 0, '/', (*Float).Quo},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  7. test/64bit.go

    	"}\n" +
    	"\n" +
    	"func testInt64Binary(a, b, add, sub, mul, div, mod, and, or, xor, andnot int64, dodiv bool) {\n" +
    	"	if n, op, want := a + b, `+`, add; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
    	"	if n, op, want := a - b, `-`, sub; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 24.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tests/e2e/simple-graph.mlir

      %0 = "tfl.add"(%arg0, %arg1) {fused_activation_function = "RELU6"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
      %1 = "tfl.mul"(%0, %arg2) {fused_activation_function = "RELU6"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
      %2 = "tfl.add"(%arg0, %arg3) {fused_activation_function = "RELU6"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/update_cpp_ops.sh

      --source_dir=third_party/tensorflow"
    
    ${generate} \
      --category=array \
      Identity \
      IdentityN \
      ZerosLike \
      Shape \
      ExpandDims \
      OnesLike
    
    ${generate} \
      --category=math \
      Mul \
      Conj \
      AddV2 \
      MatMul \
      Neg \
      Sum \
      Sub \
      Div \
      DivNoNan \
      Exp \
      Sqrt \
      SqrtGrad \
      Log1p
    
    ${generate} \
      --category=nn \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 17:54:34 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

      %mul = tf.Mul %input, %three : (tensor<*xf32>, tensor<f32>) -> tensor<*xf32>
    
      // Only control flow v2 is supported in TF dialect.
      // The tf.If operation takes three functions that accept the same
      // arguments: the condition returns a bool and the two branches must return
      // the same type, which is also the return of the tf.If.
      %value = "tf.If”(%added, %mul)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
Back to top