Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _arg0 (0.04 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %0:2 = "tf.IdentityN"(%arg0, %arg1) : (tensor<1xi32>, tensor<1xf32>) -> (tensor<1xi32>, tensor<1xf32>)
      func.return %0#0, %0#1: tensor<1xi32>, tensor<1xf32>
    }
    
    // -----
    
    // CHECK-LABEL: func @stopgradient
    func.func @stopgradient(%arg0: tensor<1xi32>) -> tensor<1xi32> {
      // CHECK-NEXT:  return %arg0 : tensor<1xi32>
      %0 = "tf.StopGradient"(%arg0) : (tensor<1xi32>) -> tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           return %[[VAL_3]] : tensor<2xf32>
    // CHECK:         }
    func.func @floordiv_f32(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      %0 = mhlo.divide %arg0, %arg0 : tensor<2xf32>
      %1 = mhlo.divide %arg0, %arg0 : tensor<2xf32>
      %2 = "mhlo.floor"(%1) : (tensor<2xf32>) -> tensor<2xf32>
      func.return %2 : tensor<2xf32>
    }
    
    // CHECK-LABEL:   func @floordiv_f16_broadcast(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      "tf.Assert"(%arg0, %0, %1, %2, %arg1, %3, %arg2) {device = "", summarize = 3 : i64} : (tensor<i1>, tensor<!tf_type.string>, tensor<!tf_type.string>, tensor<!tf_type.string>, tensor<i64>, tensor<!tf_type.string>, tensor<i64>) -> ()
      %4 = "tf.Identity"(%arg0) {device = ""} : (tensor<i1>) -> tensor<i1>
      %5 = "tf.Identity"(%4) {device = ""} : (tensor<i1>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) newValue2(op ssa.Op, t *types.Type, arg0, arg1 *ssa.Value) *ssa.Value {
    	return s.curBlock.NewValue2(s.peekPos(), op, t, arg0, arg1)
    }
    
    // newValue2A adds a new value with two arguments and an aux value to the current block.
    func (s *state) newValue2A(op ssa.Op, t *types.Type, aux ssa.Aux, arg0, arg1 *ssa.Value) *ssa.Value {
    	return s.curBlock.NewValue2A(s.peekPos(), op, t, aux, arg0, arg1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top