Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for OpA (0.01 sec)

  1. 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)
  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/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)
  6. 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)
  7. internal/config/policy/plugin/config.go

    	if err != nil {
    		return false, err
    	}
    
    	// Handle large OPA responses when OPA URL is of
    	// form http://localhost:8181/v1/data/httpapi/authz
    	type opaResultAllow struct {
    		Result struct {
    			Allow bool `json:"allow"`
    		} `json:"result"`
    	}
    
    	// Handle simpler OPA responses when OPA URL is of
    	// form http://localhost:8181/v1/data/httpapi/authz/allow
    	type opaResult struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops.mlir

      // CHECK-SAME: n = 2
      // CHECK:   tf_device.return
    }
    
    // -----
    
    // CHECK-LABEL: func @replicate_with_multiple_operands
    func.func @replicate_with_multiple_operands() {
      %0 = "tf.opA"() : () -> tensor<*xi1>
      %1 = "tf.opB"() : () -> tensor<*xi1>
      %2 = "tf.opC"() : () -> tensor<*xi1>
      %3 = "tf.opD"() : () -> tensor<*xi32>
      %4 = "tf.opE"() : () -> tensor<*xi32>
      %5 = "tf.opF"() : () -> tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. cmd/config-migrate.go

    		cfg.Compression.MimeTypes = strings.Split(compress.DefaultMimeTypes, config.ValueSeparator)
    	case "30":
    		// V30 -> V31
    		cfg.OpenID = openid.Config{}
    		cfg.Policy.OPA = opa.Args{
    			URL:       &xnet.URL{},
    			AuthToken: "",
    		}
    	case "31":
    		// V31 -> V32
    		cfg.Notify.NSQ = make(map[string]target.NSQArgs)
    		cfg.Notify.NSQ["1"] = target.NSQArgs{}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. 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)
Back to top