Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for OpD (0.04 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)
Back to top