Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for ARG1 (1.05 sec)

  1. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %0 = tfl.mul %arg0, %arg1 {fused_activation_function = "NONE"}: tensor<? x complex<f32>>
      func.return %0#0 : tensor<? x complex<f32>>
    }
    
    // CHECK-LABEL: testAddWithI64Broadcasting
    func.func @testAddWithI64Broadcasting(tensor< 2x3xi64>, tensor<3xi64>) -> tensor<2x3xi64> {
    ^bb0(%arg0: tensor<2x3xi64>, %arg1: tensor<3xi64>):
      // CHECK: tfl.add(%arg0, %arg1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %3 = "tf.AddV2"(%arg1, %0) : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32>
      %4 = "tf.AddV2"(%0, %arg1) : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32>
    
      // CHECK: %[[CONST:.*]] = "tf.Const"()
      // CHECK-DAG: %[[ADD1:.*]] = "tf.AddV2"(%arg0, %[[CONST]])
      // CHECK-DAG: %[[ADD2:.*]] = "tf.AddV2"(%arg0, %[[CONST]])
      // CHECK: return %[[ADD1]], %[[ADD2]], %arg1, %arg1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    ^bb0(%arg0: tensor<8x16xi16>, %arg1: tensor<8x16xi16>):
      %0 = "tf.FloorDiv"(%arg0, %arg1) : (tensor<8x16xi16>, tensor<8x16xi16>) -> tensor<8x16xi16>
      func.return %0 : tensor<8x16xi16>
    
    // CHECK-LABEL: floor_div_i16
    // CHECK:  tfl.floor_div %arg0, %arg1 : tensor<8x16xi16>
    // CHECK:  return
    }
    
    func.func @not_equal(%arg0: tensor<8x16xf32>, %arg1: tensor<8x16xf32>) -> tensor<8x16xi1> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @testValidIfRegionOpWithMultipleResults(%arg0: tensor<i1>, %arg1: tensor<2xf32>) -> tensor<2xf32> {
      %0, %1, %2 = "tf.IfRegion"(%arg0) ({
         %t0 = "tf.Abs"(%arg1) : (tensor<2xf32>) -> tensor<2xf32>
         %t1 = "tf.Acos"(%arg1) : (tensor<2xf32>) -> tensor<2xf32>
         %t2 = "tf.Acosh"(%arg1) : (tensor<2xf32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// unsigned arg0 >> arg2, shifting in bits from arg1 (==(arg1<<64+arg0)>>arg2, keeping low 64 bits), shift amount is mod 64
    		{name: "SHRDQ", argLength: 3, reg: gp31shift, asm: "SHRQ", resultInArg0: true, clobberFlags: true},
    		// unsigned arg0 << arg2, shifting in bits from arg1 (==(arg0<<64+arg1)<<arg2, keeping high 64 bits), shift amount is mod 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  6. src/crypto/internal/nistec/fiat/p521_fiat64.go

    	x13 := (uint64(arg1[53]) << 40)
    	x14 := (uint64(arg1[52]) << 32)
    	x15 := (uint64(arg1[51]) << 24)
    	x16 := (uint64(arg1[50]) << 16)
    	x17 := (uint64(arg1[49]) << 8)
    	x18 := arg1[48]
    	x19 := (uint64(arg1[47]) << 56)
    	x20 := (uint64(arg1[46]) << 48)
    	x21 := (uint64(arg1[45]) << 40)
    	x22 := (uint64(arg1[44]) << 32)
    	x23 := (uint64(arg1[43]) << 24)
    	x24 := (uint64(arg1[42]) << 16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

      // CHECK: TensorListReserve
      // CHECK-SAME: -> tensor<!tf_type.variant<tensor<!tf_type.variant>>>
        %0 = "tf.TensorListReserve"(%arg1, %arg1) {device = ""} : (tensor<i32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<*x!tf_type.variant>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

    // Here:
    //   id0 = arg0
    //   while-inputs = (id0/arg0, arg1, arg1)
    //   while body pass through first and second arg, not last one
    //   while-results = (arg0, arg1, Unknown)
    //   #ID 2: read(arg0)      -> succ{5}
    //   #ID 3: read(arg1)      -> succ{6}
    //   #ID 4: read(unknown)   -> succ{5,6}
    //   #ID 5 : write(arg0)
    //   #ID 6 : write(arg1)
    
    
    // CHECK-LABEL: func @output_of_while_op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    module{
    func.func @embedding(%arg0: tensor<*xf32>, %arg1: tensor<*xi32>) -> tensor<*xf32> attributes  {tf._implements = "embedding_matmul", tf._reference = "mlir"} {
      %0 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      %1 = "tf.ExpandDims"(%arg1, %0) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
      %2 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```mlir
            func.func @dangling_print(%arg0: tensor<*xi32>, %arg1: tensor<i32>) -> (tensor<*xi32>, tensor<*xi32>) {
              %graph:2 = tf_executor.graph {
                %island1:3 = tf_executor.island {
                  %add1 = "tf.Add"(%arg0, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
                  %add2 = "tf.Add"(%add1, %arg1) : (tensor<*xi32>, tensor<i32>) -> tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top