Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for opD (0.24 sec)

  1. src/cmd/asm/internal/arch/arm64.go

    		arm64SpecialOperand = map[string]arm64.SpecialOperand{}
    		for opd := arm64.SPOP_BEGIN; opd < arm64.SPOP_END; opd++ {
    			arm64SpecialOperand[opd.String()] = opd
    		}
    
    		// Handle some special cases.
    		specialMapping := map[string]arm64.SpecialOperand{
    			// The internal representation of CS(CC) and HS(LO) are the same.
    			"CS": arm64.SPOP_HS,
    			"CC": arm64.SPOP_LO,
    		}
    		for s, opd := range specialMapping {
    			arm64SpecialOperand[s] = opd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/executor_island_coarsening.mlir

          tf_executor.yield %3 : tensor<i32>
        }
        %4:2 = tf_executor.island {
          %5 = "tf.opC"(%1#0, %arg1) : (tensor<i32>, tensor<i32>) -> tensor<i32>
          %6 = "tf.opD"(%5, %arg0) : (tensor<i32>, tensor<i32>) -> tensor<i32>
          tf_executor.yield %6 : tensor<i32>
        }
        tf_executor.fetch %4#0 : tensor<i32>
      }
      func.return %0 : tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/executor_canonicalize.mlir

          %5 = "tf.opC"(%4) : (tensor<i1>) -> tensor<i1>
          tf_executor.yield %3, %5, %4 : tensor<i1>, tensor<i1>, tensor<i1>
        }
        %6:3 = tf_executor.island {
          %7 = "tf.opD"(%arg0) : (tensor<i1>) -> tensor<i1>
          %8 = "tf.opE"(%7) : (tensor<i1>) -> tensor<i1>
          tf_executor.yield %8, %7 : tensor<i1>, tensor<i1>
        }
        tf_executor.fetch %1#1, %1#0, %6#0 : tensor<i1>, tensor<i1>, tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top