Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for OpA (0.02 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      //
      // Two ops with the same groups and different branches are considered
      // parallel so are not made dependent. For example if `OpA` has parallel_ids
      //   `{group0:branch0, group1:branch0}`
      // and `OpB` has parallel_ids
      //   `{group0:branch1, graph1:branch0}`
      // then `OpA` and `OpB` are executed in parallel because `group0` is common
      // with a different branch.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/while_op.mlir

          %outputs:4, %control = tf_executor.island {
           "tf.TPUReplicateMetadata"() {_xla_compile_device_type = "TPU", _replication_info = "cluster", device = "device", num_replicas = 1, topology = "topology"} : () -> ()
            %1 = "tf.opA"(%arg0) {_xla_compile_device_type = "TPU", _replication_info = "cluster"} : (tensor<i1>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 04 03:54:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/case_op.mlir

          %output, %control = tf_executor.island {
           "tf.TPUReplicateMetadata"() {_xla_compile_device_type = "TPU", _replication_info = "cluster", device = "device", num_replicas = 1, topology = "topology"} : () -> ()
            %index = "tf.opA"(%arg0) {_xla_compile_device_type = "TPU", _replication_info = "cluster"} : (tensor<i1>) -> tensor<i32>
            %input = "tf.opB"(%arg0) {_xla_compile_device_type = "TPU", _replication_info = "cluster"} : (tensor<i1>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 16:14:17 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_inlining/while_op.mlir

          "tf.TPUReplicateMetadata"() {_xla_compile_device_type = "TPU", _replication_info = "cluster", device = "device", num_replicas = 1 : i64, topology = "topology"} : () -> ()
          %0 = "tf.opA"(%arg0) {_xla_compile_device_type = "TPU", _replication_info = "cluster"} : (tensor<i1>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 04 03:54:58 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top