Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for OpD (0.02 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/embedding_program_key.mlir

      // CHECK: %[[COMPILE_LAUNCH:[0-9]*]]:2 = "tf_device.launch"
      // CHECK: TPUCompileMlir
      // CHECK: "tf.OpA"(%[[COMPILE_LAUNCH]]#1
      // CHECK: "tf.OpC"
      // CHECK: "tf.OpB"(%[[COMPILE_LAUNCH]]#1
      // CHECK: "tf.OpD"
      "tf_device.launch"() ({
        %cst_0 = "tf.Const"() {value = dense<""> : tensor<1x!tf_type.string>} : () -> tensor<1x!tf_type.string>
        %1= "tf.OpA"(%cst_0) { mini_batch_splits = ""} : (tensor<1x!tf_type.string>) -> (tensor<2xi32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 14:28:22 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

              %c = "tf.opC"() : () -> tensor<f32>
              tf_device.return %c, %b : tensor<f32>, tensor<i32>
            }) {device = "CPU:0"} : () -> (tensor<f32>, tensor<i32>)
            %d = "tf.opD"() : () -> tensor<i1>
            tf_executor.yield %a, %launch#0, %launch#1, %d :
                              tensor<i1>, tensor<f32>, tensor<i32>, tensor<i1>
          }
        ```
    
        Will be transformed into:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

    // CHECK-LABEL: func @variant_input_nested
    func.func @variant_input_nested(%arg0 : tensor<*x!tf_type.resource>) {
      // CHECK:        "tf.EmptyTensorList"
      // CHECK-SAME:   _xla_outside_compilation
      // CHECK:        "tf.opD"
      // CHECK-NOT:    _xla_outside_compilation
      // CHECK:        "tf.Yield"
      "tf_device.cluster"() ({
        %0 = "tf.Const"() {value = dense<true> : tensor<i1>} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

        // CHECK:   "tf.OpC"(%[[VAL_0]]) : (tensor<i64>) -> ()
        // CHECK:   "tf.OpD"() : () -> ()
        // CHECK:   tf_device.return
        // CHECK: }) : () -> ()
        %island2 = tf_executor.island {
          "tf_device.launch"() <{device = "/job:worker/replica:0/task:0/device:CPU:0"}> ({
            "tf.OpC"(%island1#0) : (tensor<i64>) -> ()
            "tf.OpD"() : () -> ()
            tf_device.return
          }) : () -> ()
          tf_executor.yield
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/parse.go

    	if tok.ScanToken == scanner.Ident && !p.atStartOfRegister(name) {
    		switch p.arch.Family {
    		case sys.ARM64:
    			// arm64 special operands.
    			if opd := arch.GetARM64SpecialOperand(name); opd != arm64.SPOP_END {
    				a.Type = obj.TYPE_SPECIAL
    				a.Offset = int64(opd)
    				break
    			}
    			fallthrough
    		default:
    			// We have a symbol. Parse $sym±offset(symkind)
    			p.symbolReference(a, p.qualifySymbol(name), prefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    are replicated each from the regions terminator.
    
    For example:
    ```
    %0 = "tf.opA"() : () -> tensor<i32>
    %1 = "tf.opB"() : () -> tensor<i32>
    %2 = "tf.opC"() : () -> tensor<f32>
    %3 = "tf.opD"() : () -> tensor<f32>
    %4 = "tf.opE"() : () -> tensor<!tf_type.resource>
    %5 = "tf.opF"() : () -> tensor<!tf_type.resource>
    %6 = "tf.opG"() : () -> tensor<!tf_type.string>
    %7 = "tf.opH"() : () -> tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

      %0, %ctl0 = tf_executor.opA %feed#0, %feed#1 : tensor<*xf32>
      %1, %ctl1 = tf_executor.opB : tensor<*xf32>
      %2, %ctl2 = tf_executor.opC %1, %ctl0 : tensor<*xf32>
      %3, %ctl3 = tf_executor.opD %2 : tensor<*xf32>
      tf_executor.fetch %3 : tensor<*xf32>
    } // end of the “tf_executor.graph" operation/region
    ```
    
    ### ‘tf_executor.island’ Operation
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    		}
    		if isaddcon2(cf) {
    			return C_AACON2
    		}
    
    		return C_LACON
    
    	case obj.TYPE_BRANCH:
    		return C_SBRA
    
    	case obj.TYPE_SPECIAL:
    		opd := SpecialOperand(a.Offset)
    		if SPOP_EQ <= opd && opd <= SPOP_NV {
    			return C_COND
    		}
    		return C_SPOP
    	}
    	return C_GOK
    }
    
    func (c *ctxt7) oplook(p *obj.Prog) *Optab {
    	a1 := int(p.Optab)
    	if a1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

              ^bb0(%arg2, %arg3):
                %1 = "tf.ReadVariableOp"(%var)
                %2 = "tf.OpB"(%1) {is_stateless = true}
                %3 = "tf.OpC"(%arg2, %2) {is_stateless = true}
                %4 = "tf.OpD"(%arg3, %2) {is_stateless = true}
                "tf.Yield"(%3, %4)
              }) {is_stateless = true}
              return %results#0, %results#1
            }
          ```
          would be transformed to
          ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

           }, {
           ^bb0(%arg2, %arg3):
      %1 = "tf.ReadVariableOp"(%var)
             %2 = "tf.OpB"(%1) {is_stateless = true}
             %3 = "tf.OpC"(%arg2, %2) {is_stateless = true}
             %4 = "tf.OpD"(%arg3, %2) {is_stateless = true}
             "tf.Yield"(%3, %4)
           }) {is_stateless = true}
           return %results#0, %results#1
         }
       ```
       would be transformed to
       ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top