Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for OpA (0.02 sec)

  1. docs/iam/opa.md

    # OPA Quickstart Guide [![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io)
    
    OPA is a lightweight general-purpose policy engine that can be co-located with MinIO server, in this document we talk about how to use OPA HTTP API to authorize requests. It can be used with any type of credentials (STS based like OpenID or LDAP, regular IAM users or service accounts).
    
    OPA is enabled through MinIO's Access Management Plugin feature.
    
    ## Get started
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island.mlir

        }
        tf_executor.fetch
      }
      func.return
    }
    // CHECK: "tf.opA"
    // device = "/TPU:0"
    // CHECK: _parallel_execution_ids = "r0:0"
    // CHECK: "tf.opA"
    // device = "/TPU:0"
    // CHECK: _parallel_execution_ids = "r0:1"
    // CHECK: "tf.opA"
    // device = "/TPU:1"
    // CHECK: _parallel_execution_ids = "r1:0"
    // CHECK: "tf.opA"
    // device = "/TPU:1"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/embedding_program_key.mlir

    func.func @reorder_single_op_program_key() {
      // CHECK: %[[COMPILE_LAUNCH:[0-9]*]]:2 = "tf_device.launch"
      // CHECK: TPUCompileMlir
      // CHECK: "tf.OpA"(%[[COMPILE_LAUNCH]]#1
      "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>) -> ()
        tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 14:28:22 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands_legacy.mlir

    // CHECK-LABEL: func @testDataOperandsAndResults
    // CHECK-SAME: ([[ARG_0:%.+]]: tensor<i1>)
    func.func @testDataOperandsAndResults(%arg0 : tensor<i1>) {
      %0:2 = tf_executor.graph {
        %1:2 = tf_executor.island {
          %2 = "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
          tf_executor.yield %2 : tensor<i1>
        }
        %3:3 = tf_executor.island() {
          %4:2 = "tf_device.parallel_execute"() ({
            %5 = "tf.opB"(%1#0) : (tensor<i1>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/executor_canonicalize.mlir

      tf_executor.graph {
        %1:2 = tf_executor.island {
          %3 = "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
          %4 = "tf.opB"(%3) : (tensor<i1>) -> tensor<i1>
          tf_executor.yield %3 : tensor<i1>
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK-NEXT: %[[OP_A:[0-9]*]] = "tf.opA"(%[[ARG_0]])
    // CHECK-NEXT: "tf.opB"(%[[OP_A]])
    // CHECK-NEXT: return
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 04 14:07:37 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/launch_to_device_attribute.mlir

    // by parent `tf_device.launch`.
    // CHECK-LABEL: func @single_op_launch
    func.func @single_op_launch() {
      tf_executor.graph {
        %0:5 = tf_executor.island {
          %a = "tf.opA"() : () -> tensor<i1>
          %launch:2 = "tf_device.launch"() ({
            %b:2 = "tf.opB"(%a) : (tensor<i1>) -> (tensor<i32>, tensor<f32>)
            tf_device.return %b#1, %b#0 : tensor<f32>, tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 17:10:32 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands.mlir

    // CHECK-LABEL: func @testDataOperandsAndResults
    // CHECK-SAME: ([[ARG_0:%.+]]: tensor<i1>)
    func.func @testDataOperandsAndResults(%arg0 : tensor<i1>) {
      %0:2 = tf_executor.graph {
        %1:2 = tf_executor.island {
          %2 = "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
          tf_executor.yield %2 : tensor<i1>
        }
        %3:3 = tf_executor.island() {
          %4:2 = "tf_device.parallel_execute"() ({
            %5 = "tf.opB"(%1#0) : (tensor<i1>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/launch_to_device_attribute_legacy.mlir

            %a:2 = "tf.opA"() {device = ""} : () -> (tensor<i32>, tensor<f32>)
            tf_device.return %a#1, %a#0 : tensor<f32>, tensor<i32>
          }) {device = "CPU:0"} : () -> (tensor<f32>, tensor<i32>)
          tf_executor.yield %launch#0, %launch#1: tensor<f32>, tensor<i32>
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK:      [[A:%.+]]:2 = "tf.opA"
    // CHECK-SAME: device = "CPU:0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 21 20:14:51 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/executor_island_coarsening.mlir

        %1:2 = tf_executor.island wraps "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
        %2:2 = tf_executor.island(%1#1) wraps "tf.opB"(%arg1) : (tensor<i1>) -> tensor<i1>
        tf_executor.fetch %1#0, %2#0 : tensor<i1>, tensor<i1>
      }
      func.return %0#0, %0#1 : tensor<i1>, tensor<i1>
    }
    
    // CHECK:        %[[ISLAND:.*]]:2, %{{.*}} = tf_executor.island {
    // CHECK-NEXT:     %[[OP_A:[0-9]*]] = "tf.opA"(%[[ARG_0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/hoist_broadcast_read.mlir

      // CHECK:      %[[READ:.*]] = "tf.ReadVariableOp"
      // CHECK-NEXT: tf_device.replicate
      // CHECK-NEXT:   "tf.OpA"(%[[READ]])
      tf_device.replicate {n = 2 : i32} {
        %0 = "tf.ReadVariableOp"(%arg0) : (tensor<*x!tf_type.resource<tensor<f32>>>) -> tensor<f32>
        "tf.OpA"(%0) : (tensor<f32>) -> ()
      }
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 21:10:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top