Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 480 for MUL (0.02 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

        %0 = "tf.Mul"(%arg1, %arg0) : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
        func.return %0 : tensor<1xf32>
      }
    // CHECK: func private @mul1(%arg0: tensor<1xf32>, %arg1: tensor<1xf32>) -> tensor<1xf32> attributes {tf.entry_function = {inputs = "mul1_y:0,mul1_x:0", outputs = "PartitionedCall:0"}}
    // CHECK:   %[[MUL_0:.*]] = "tf.Mul"(%arg1, %arg0) : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. src/crypto/internal/bigmod/nat_arm64.s

    loop:
    	CBZ	R0, done
    
    	LDP.P	16(R2), (R5, R6)
    	LDP.P	16(R2), (R7, R8)
    
    	LDP	(R1), (R9, R10)
    	ADDS	R4, R9
    	MUL	R6, R3, R14
    	ADCS	R14, R10
    	MUL	R7, R3, R15
    	LDP	16(R1), (R11, R12)
    	ADCS	R15, R11
    	MUL	R8, R3, R16
    	ADCS	R16, R12
    	UMULH	R8, R3, R20
    	ADC	$0, R20
    
    	MUL	R5, R3, R13
    	ADDS	R13, R9
    	UMULH	R5, R3, R17
    	ADCS	R17, R10
    	UMULH	R6, R3, R21
    	STP.P	(R9, R10), 16(R1)
    	ADCS	R21, R11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/tf-data-pipeline.pbtxt

                tensor_shape {
                }
                int_val: 2
              }
            }
          }
        }
        node_def {
          name: "mul"
          op: "Mul"
          input: "args_0"
          input: "mul/y:output:0"
          attr {
            key: "T"
            value {
              type: DT_INT32
            }
          }
        }
        node_def {
          name: "Identity"
          op: "Identity"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. test/chan/powser2.go

    			u := get(U)
    			if end(u) != 0 {
    				done = true
    			}
    			Z.dat <- mul(i2tor(1, int64(i)), u)
    		}
    		Z.dat <- finis
    	}(c, U, Z)
    	return Z
    }
    
    // Binomial theorem (1+x)^c
    
    func Binom(c *rat) PS {
    	Z := mkPS()
    	go func(c *rat, Z PS) {
    		n := 1
    		t := itor(1)
    		for c.num != 0 {
    			put(t, Z)
    			t = mul(mul(t, c), i2tor(1, int64(n)))
    			c = sub(c, one)
    			n++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/raise-custom-ops.mlir

      func.return %2 : tensor<4xf32>
    
    // CHECK-NEXT: %[[CST:.*]] = arith.constant dense<1.000000e+00> : tensor<4xf32>
    // CHECK-NEXT: %[[MUL:.*]] = tfl.mul %arg0, %[[CST]] {fused_activation_function = "NONE"} : tensor<4xf32>
    // CHECK-NEXT: %[[CUSTOM_1:.*]] = "tfl.custom_tf"(%[[MUL]], %[[CST]]) ({
    // CHECK-NEXT: ^bb0(%arg1: tensor<4xf32>, %arg2: tensor<4xf32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/generate.go

    	t1.Mul(t4, y3)                            // t1 := t4 * Y3
    	t2.Mul(t0, y3)                            // t2 := t0 * Y3
    	y3.Mul(x3, z3)                            // Y3 := X3 * Z3
    	y3.Add(y3, t2)                            // Y3 := Y3 + t2
    	x3.Mul(t3, x3)                            // X3 := t3 * X3
    	x3.Sub(x3, t1)                            // X3 := X3 - t1
    	z3.Mul(t4, z3)                            // Z3 := t4 * Z3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. src/math/big/hilbert_test.go

    			x4 := new(Rat).SetInt(new(Int).Binomial(int64(i+j), int64(i)))
    
    			x1.Mul(x1, x2)
    			x1.Mul(x1, x3)
    			x1.Mul(x1, x4)
    			x1.Mul(x1, x4)
    
    			if (i+j)&1 != 0 {
    				x1.Neg(x1)
    			}
    
    			a.set(i, j, x1)
    		}
    	}
    	return a
    }
    
    func (a *matrix) mul(b *matrix) *matrix {
    	if a.m != b.n {
    		panic("illegal matrix multiply")
    	}
    	c := newMatrix(a.n, b.m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.9K bytes
    - Viewed (0)
  8. src/runtime/internal/math/math_test.go

    }
    
    func TestMulUintptr(t *testing.T) {
    	for _, test := range mulUintptrTests {
    		a, b := test.a, test.b
    		for i := 0; i < 2; i++ {
    			mul, overflow := MulUintptr(a, b)
    			if mul != a*b || overflow != test.overflow {
    				t.Errorf("MulUintptr(%v, %v) = %v, %v want %v, %v",
    					a, b, mul, overflow, a*b, test.overflow)
    			}
    			a, b = b, a
    		}
    	}
    }
    
    var SinkUintptr uintptr
    var SinkBool bool
    
    var x, y uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 15 19:04:09 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/legalize-tf-no-runtime-verification.mlir

    // CHECK-LABEL: broadcast_to_bf16
    // CHECK:  [[CST:%.*]] = arith.constant dense<1.000000e+00> : tensor<3x3xbf16>
    // CHECK:  [[MUL:%.*]] = tfl.mul(%arg0, [[CST]]) <{fused_activation_function = "NONE"}> : (tensor<3xbf16>, tensor<3x3xbf16>) -> tensor<3x3xbf16>
    // CHECK:  return [[MUL]] : tensor<3x3xbf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 648 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_xla_weight_only.mlir

    module {
    
      func.func private @internal_dequantize_f32(
                               %input : tensor<*xf32>, %weight_scale : tensor<*xf32>) -> tensor<*xf32> {
        %mul = "tf.Mul"(%input, %weight_scale) : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
        func.return %mul : tensor<*xf32>
      }
    
      func.func private @internal_conv3d_fn(
                             %input : tensor<*xf32>, %filter : tensor<*xi8>) -> tensor<*xf32> {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 15:43:38 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top