Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for OpA (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

    // `tf_device.parallel_execute`.
    //
    // For example, the following:
    //
    //  %0 = tf_executor.island {
    //    tf_executor.yield
    //  }
    //  %1:2 = tf_executor.island {
    //    %2 = "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
    //      tf_executor.yield %2 : tensor<i1>
    //  }
    //  %3:2 = tf_executor.island(%0) {
    //    %4 = "tf_device.parallel_execute"() ({
    //      %5 = "tf.opB"() : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K 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/executor_tpuv1_island_coarsening/executor_tpuv1_island_coarsening.mlir

      %0 = tf_executor.graph {
        %1:2 = tf_executor.island {
          %3 = "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
          tf_executor.yield %3 : tensor<i1>
        }
        %2:2 = tf_executor.island(%1#1) {
          %4 = "tf.opB"() : () -> tensor<f32>
          tf_executor.yield %4 : tensor<f32>
        }
    
    // CHECK: "tf.opA"
    // CHECK: tf_executor.island
    // CHECK: "tf.opB"
    
        tf_executor.fetch %2#0 : tensor<f32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 02 03:15:59 UTC 2022
    - 36.2K 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/tensorflow/tests/mark_ops_for_outside_compilation.mlir

    }
    
    // CHECK-LABEL: func @variant_input_output_already_marked
    func.func @variant_input_output_already_marked() {
      // CHECK: "tf.opA"
      // CHECK-SAME: _xla_outside_compilation = "0"
      // CHECK: "tf.opB"
      // CHECK-SAME: _xla_outside_compilation = "0"
      "tf_device.cluster"() ({
        %1= "tf.opA"() {_xla_outside_compilation = "0"} : () -> tensor<!tf_type.variant<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    replicas and is mapped to a single region argument.
    
    Operands not replicated can be implicitly captured by ops in the region. Results
    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>
    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/tests/split_into_island_per_op.mlir

          tf_executor.yield
        }
        // CHECK: tf_executor.fetch
        tf_executor.fetch
      }
      func.return
    }
    
    func.func @then_function() {
      tf_executor.graph {
        tf_executor.island {
          "tf.OpA"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    func.func @else_function() {
      tf_executor.graph {
        tf_executor.island {
          "tf.OpB"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top