Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for OpA (0.02 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/xla_broadcast.mlir

      // CHECK-NEXT:     "tf.OpA"(%[[REDUCED]]) : (tensor<f32>) -> ()
      tf_device.replicate {n = 4 : i32} {
        "tf_device.cluster"() ({
          "tf.OpA"(%arg0) : (tensor<f32>) -> ()
          tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. internal/config/policy/opa/legacy.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package opa
    
    import (
    	"github.com/minio/minio/internal/config"
    )
    
    // Legacy OPA envs
    const (
    	EnvIamOpaURL       = "MINIO_IAM_OPA_URL"
    	EnvIamOpaAuthToken = "MINIO_IAM_OPA_AUTHTOKEN"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/check_control_dependencies.mlir

        tf_executor.graph {
          // expected-error@+1 {{functions must be of a single Graph with single op Islands: tf_executor.island must perfectly wrap a single op}}
          %island = tf_executor.island {
            "tf.OpA"() : () -> ()
            "tf.OpB"() : () -> ()
            tf_executor.yield
          }
          tf_executor.fetch
        }
        func.return
      }
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 16:14:07 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.td

        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: Thu Mar 28 23:42:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/while_op.mlir

    // that contains ops with the same attribute.
    // CHECK-LABEL: func @control_input
    func.func @control_input(%arg0 : tensor<i1>) -> tensor<i32> {
      %0:6 = tf_executor.graph {
        %1:2 = tf_executor.island wraps "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: Fri Mar 25 11:03:04 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    // guaranteed to dominate all live-in values. On the other hand, it is still
    // possible that live-out values don't dominate the region. For example:
    //
    // ```
    // %0 = "tf.OpA"()
    // %1 = "tf.OpB"(%0)
    // %2 = "tf.OpC"(%0)
    // ```
    //
    // Assuming `tf.OpA` and `tf.OpC` are clustered together, the region will be
    // inserted right after `tf.OpC`. The live-out `%0`, however, is used by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    //
    // tf_executor.island wraps "tf.OpA"
    // tf_executor.island {
    //  "tf_device.replicate" {n = 2} {
    //    "tf.OpB"
    //    "tf_device.parallel_execute"() ({
    //      "tf.OpC"
    //    }, {
    //      "tf.OpD"
    //    })
    //  }
    //
    // The above IR will be flattened after `ReplicateToIslandPass` and
    // `ParallelExecuteToIslandsPass` as follows:
    //
    // tf_executor.island wraps "tf.OpA"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

        For example, the following:
    
        ```mlir
        func @single_op_launch() {
          %a = "tf.opA"() {device = "CPU:0"} : () -> tensor<i1>
          return %a
        }
        ```
    
        will be transformed into:
    
        ```mlir
        func @single_op_launch() {
          %1 = tf_device.launch() ( {
            %a = "tf.opA"() : () -> tensor<i1>
            tf_device.return %a
          }) {device = "CPU:0"} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning.mlir

    // CHECK: tf_executor.island
    // CHECK-NOT: tf_executor.island
      %0 = tf_executor.graph {
        %1:2 = tf_executor.island {
          %a = "tf.opA"(%arg0) : (i32) -> i32
          %b = "tf.opB"(%a) : (i32) -> i32
          tf_executor.yield %b : i32
        }
        %2:2 = tf_executor.island {
          %a = "tf.opA"(%1#0) : (i32) -> i32
          tf_executor.yield %a : i32
        }
        tf_executor.fetch %1#0 : i32
      }
      func.return %0 : i32
    }
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/cluster_ops_by_policy.mlir

    // CHECK-LABEL: func @propagate_constraints
    func.func @propagate_constraints(%arg0 : tensor<?x?xf32>)
        -> (tensor<?x?xf32> { tf.constraint = "value"  }) {
      // expected-remark@below {{operand #0 constrained to: rank}}
      %0 = "test.OpA"(%arg0) : (tensor<?x?xf32>) -> tensor<?x?xf32>
      // expected-remark@below {{operand #0 constrained to: shape}}
      %1 = "test.OpB"(%0) : (tensor<?x?xf32>) -> tensor<?x?xf32>
      // expected-remark@below {{operand #0 constrained to: value}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top