Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for OpA (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_while_results.mlir

    // CHECK:       tf.OpA
    // CHECK:       ^bb0
    // CHECK:         (%[[BARG:[a-zA-Z0-9_]+]]: tensor<*xf32>)
    // CHECK-NOT:   tf.OpB
    // CHECK:       tf.OpC
    // CHECK-SAME:    %[[BARG]]
    func.func @remove_first_result(%arg0: tensor<*xf32>, %arg1: tensor<*xf32>) -> tensor<*xf32> {
      %0:2 = "tf.WhileRegion"(%arg0, %arg1) ({
      ^bb0(%arg2: tensor<*xf32>, %arg3: tensor<*xf32>):
        %1 = "tf.OpA"() {is_stateless = true} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 20:25:31 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  2. internal/config/policy/opa/config.go

    		*a = oa
    		return nil
    	}
    
    	*a = oa
    	return nil
    }
    
    // Opa - implements opa policy agent calls.
    type Opa struct {
    	args   Args
    	client *http.Client
    }
    
    // Enabled returns if opa is enabled.
    func Enabled(kvs config.KVS) bool {
    	return kvs.Get(URL) != ""
    }
    
    // LookupConfig lookup Opa from config, override with any ENVs.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. cmd/config-versions.go

    	Compression compress.Config `json:"compress"`
    
    	// OpenID configuration
    	OpenID openid.Config `json:"openid"`
    
    	// External policy enforcements.
    	Policy struct {
    		// OPA configuration.
    		OPA opa.Args `json:"opa"`
    
    		// Add new external policy enforcements here.
    	} `json:"policy"`
    
    	LDAPServerConfig xldap.LegacyConfig `json:"ldapserverconfig"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/device_attribute_to_launch.mlir

      // CHECK-NOT: "tf_device.launch"
      // CHECK: "tf.opA"
      "tf.opA"() : () -> tensor<i1>
      func.return
    }
    
    // Tests that single TensorFlow op with empty device attribute is not wrapped in `tf_device.launch`.
    // CHECK-LABEL: func @empty_device_attribute
    func.func @empty_device_attribute() {
      // CHECK-NOT: "tf_device.launch"
      // CHECK: "tf.opA"
      "tf.opA"() {device = ""} : () -> tensor<i1>
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_inlining/executor_tpuv1_inline_tpu_island.mlir

          %0 = "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
          func.return %0 : tensor<i1>
        }
        func.func nested @_tpu_v1_compat_outlined_func1(%arg0: tensor<i1>, %arg1: tensor<f32>) -> (tensor<i1>, tensor<i32>) {
          %0 = "tf.opA"(%arg0) : (tensor<i1>) -> tensor<i1>
          %1 = "tf.opA"(%0) : (tensor<i1>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      func.return
    }
    
    // CHECK: [[CLUSTER:%.*]] = "tf_device.cluster"() ({
    // CHECK:    [[OPA:%.*]] = "tf.opA"() {is_stateless = true} : () -> tensor<i32>
    // CHECK:    "tf.opB"() ({
    // CHECK:      "tf.opC"([[OPA]])
    // CHECK:    tf_device.return [[OPA]]
    // CHECK:    "tf.opD"([[CLUSTER]])
    
    // Preceding user is using resource updated by a nested op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/hoist_replicate_invariant_resource_writes.mlir

    func.func @hoist_tail_assign(%arg0: !tf_res_f32) {
      // CHECK: [[REPLICATE:%.*]]:4 = tf_device.replicate {n = 2 : i32}
      %replicate:2 = tf_device.replicate {n = 2 : i32} {
        // CHECK: [[OP_A:%.*]] = "tf.OpA"
        %op_a = "tf.OpA"() : () -> tensor<f32>
        // CHECK: [[OP_B:%.*]] = "tf.OpB"
        %op_b = "tf.OpB"() : () -> tensor<i32>
        // CHECK-NOT: tf.AssignVariableOp
        "tf.AssignVariableOp"(%arg0, %op_a) : (!tf_res_f32, tensor<f32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/replica_id_to_device_ordinal.mlir

            "tf_device.launch"() ({
              %1 = "tf.opA"() : () -> tensor<!tf_type.string>
              "tf.EnqueueTPUEmbeddingArbitraryTensorBatch"(%1){_xla_replica_id = 0 : i64, device_ordinal = -1 : i64} : (tensor<!tf_type.string>) -> ()
              tf_device.return
            }) {device = "/job:worker/replica:0/task:0/device:CPU:0"} : () -> ()
            "tf_device.launch"() ({
              %1 = "tf.opA"() : () -> tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island_legacy.mlir

            "tf_device.launch"() ({
              "tf.opA"() : () -> ()
              tf_device.return
            }) {device = "CORE_0"} : () -> ()
            tf_device.return
          }
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK: "tf_device.launch"
    // CHECK: device = "CORE_0"
    // CHECK: "tf.opA"
    // CHECK: "tf_device.launch"
    // CHECK: device = "CORE_0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/move_tpu_compile_to_front.mlir

    // CHECK-LABEL: does_basic_reordering
    func.func @does_basic_reordering() -> () {
       // CHECK: _TPUCompileMlir
       // CHECK-SAME: X
       // CHECK: _TPUCompileMlir
       // CHECK-SAME: Y
       // CHECK: OpA
       // CHECK: OpB
       // CHECK: OpC
       "tf.OpA"() : () -> ()
       %status_x, %program_x = "tf._TPUCompileMlir"() { metadata = "X", mlir_module = "..." } : () -> (tensor<!tf_type.string>, tensor<!tf_type.string>)
       "tf.OpB"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 00:26:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top