Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for OpA (0.03 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_resource_partitioning.mlir

      %1 = "tf.ReadVariableOp"(%0) : (tensor<!tf_type.resource<tensor<i32>>>) -> tensor<i32>
      // CHECK:      [[COMPUTATION:%.+]] = "tf_device.parallel_execute"()
      // CHECK:      "tf.OpA"([[READ0]])
      %2 = "tf_device.parallel_execute"() ({
        "tf_device.launch"() ({
          "tf.OpA"(%1) : (tensor<i32>) -> ()
          tf_device.return
        }) {device = "TPU_REPLICATED_HOST_0"} : () -> ()
        tf_device.return
      }, {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops_invalid.mlir

      "tf_device.parallel_execute"() ({
    // expected-error@-1 {{'tf_device.parallel_execute' op number of output types (3) must match the total number of outputs from all regions (2).}}
        %0 = "tf.opA"() : () -> (tensor<*xi1>)
        %1 = "tf.opB"() : () -> (tensor<*xi32>)
        tf_device.return %0, %1 : tensor<*xi1>, tensor<*xi32>
      },
      {
        %2 = "tf.opC"() : () -> (tensor<*xi1>)
        tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. cmd/config-current.go

    	case config.PolicyOPASubSys:
    		// In case legacy OPA config is being set, we treat it as if the
    		// AuthZPlugin is being set.
    		subSys = config.PolicyPluginSubSys
    		fallthrough
    	case config.PolicyPluginSubSys:
    		if ppargs, err := polplugin.LookupConfig(s, GetDefaultConnSettings(), xhttp.DrainBody); err != nil {
    			return err
    		} else if ppargs.URL == nil {
    			// Check if legacy opa is configured.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

          "tf.OpA"(%0) : (tensor<f32>) -> ()
        }
        ```
    
        will be transformed into:
    
        ``mlir
        %0 = "tf.ReadVariableOp"(%arg0) : (tensor<*x!tf_type.resource<tensor<f32>>>) -> tensor<f32>
        tf_device.replicate {n = 2 : i32} {
          "tf.OpA"(%0) : (tensor<f32>) -> ()
        }
        ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

    //               devices = {DEVICE_ALIAS_0 = ["/DEVICE:0", "/DEVICE:1"],
    //                          DEVICE_ALIAS_1 = ["/DEVICE:2", "/DEVICE:3"]}} {
    //     %a = "tf_device.launch"() ({
    //       %2 = "tf.opA"(%ri) : (tensor<i1>) -> tensor<i1>
    //       tf_device.return %2 : tensor<i1>
    //     }) {device = "DEVICE_ALIAS_0"} : () -> tensor<i1>
    //     %b = "tf_device.launch"() ({
    //       %3 = "tf.opB"(%a) : (tensor<i1>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    func.func @simple_independent_chains(%arg0: !tf_res, %arg1: !tf_res, %arg2: tensor<f32>) {
      // CHECK: tf_executor.graph {
      tf_executor.graph {
        // CHECK: %[[A_CONTROL:.*]] = tf_executor.island wraps "tf.OpA"() : () -> ()
        %control_A = tf_executor.island wraps "tf.OpA"() : () -> ()
        // CHECK: %[[CHAIN_CONSTANT:.*]], %{{.*}} = tf_executor.island wraps "tf.Const"() <{value = dense<1> : tensor<i32>}> : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

    func.func @island_not_direct_parent_of_user() -> () {
      tf_executor.graph {
        %island1:2 = tf_executor.island {
          // CHECK: %[[VAL_0:.*]], %[[VAL_1:.*]] = tf_executor.island wraps "tf.OpA"() : () -> tensor<i64>
          %0 = "tf.OpA"() : () -> (tensor<i64>)
          // CHECK: %[[VAL_2:.*]] = tf_executor.island(%[[VAL_1]]) wraps "tf.OpB"() : () -> ()
          "tf.OpB"() : () -> ()
          tf_executor.yield %0 : tensor<i64>
        }
    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. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

     during TPURewritePass.
    
     For example, the tf.OpA with the `mini_batch_splits` attribute will be
     moved after _TPUCompileMlir and the first input will use the
     _TPUCompileMlir program output:
    
     ```mlir
     "tf_device.launch"() ({
      %cst_0 = "tf.Const"() {value = dense<""> : tensor<1x!tf_type.string>} : () -> tensor<1x!tf_type.string>
      "tf.OpA"(%cst_0) { mini_batch_splits = ""} : (tensor<1x!tf_type.string>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        // CHECK-SAME:        _xla_has_host_transfer = true
        // CHECK:         }, {
        // CHECK:           "tf_device.cluster"
        // CHECK:             %[[A:.+]] = "tf.OpA"
        // CHECK:             %[[A_SHARD:.+]] = "tf.XlaSpmdFullToShardShape"(%[[A]]) <{dim = -1 : i64, manual_sharding = "\08\03\1A\02\02\01\22\02\00\01", unspecified_dims = []}> : (tensor<2x2xi64>) -> tensor<1x2xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

              %0 = "tf.opA"(%arg0) : (tensor<f32>) -> tensor<f32>
              return %0 : tensor<f32>
            }
          }
        }
        ```
    
        will be transformed into:
    
        ```mlir
        module  {
          func @foo(%arg0: tensor<f32>) -> tensor<f32> {
            %0 = tf_executor.graph {
              %outputs, %control = tf_executor.island {
                %1 = "tf.opA"(%arg0) : (tensor<f32>) -> tensor<f32>
    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