Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 739 for identity1 (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/embedding_pipelining.mlir

        // CHECK: "tf.Identity"([[input]])
        // CHECK: "tf.Identity"([[input]])
        // CHECK: "tf.Identity"([[input]])
        // CHECK: "tf.Identity"([[input]])
        // backward_ops
        %res_b1 = "tf.Identity"(%res_t) {_embedding_pipelining = "backward", _replication_info = "repl_info"} : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

      auto consumer0_a = ops::Identity(scope.WithOpName("consumer0_a"), out0);
      auto consumer0_b = ops::Identity(scope.WithOpName("consumer0_b"), out0);
      auto consumer0_c = ops::Identity(scope.WithOpName("consumer0_c"), out0);
      auto consumer1 = ops::Identity(scope.WithOpName("consumer1"), out1);
      auto consumer2 = ops::Identity(scope.WithOpName("consumer2"), out2);
      auto consumer3 = ops::Identity(scope.WithOpName("consumer3"), out3);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/embedding_sequencing.mlir

        // core_tpu ops:
        %res_t = "tf.Identity"(%res_f) {_replication_info = "repl_info"} : (tensor<i32>) -> tensor<i32>
    
        // backward_ops
        %res_b = "tf.Identity"(%res_t) {_embedding_pipelining = "backward", _replication_info = "repl_info"} : (tensor<i32>) -> tensor<i32>
    
        // non_tpu_ops
        %res_n = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
    
        return %res_n : tensor<i32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 01 21:27:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/graph_builder.go

    					logger.V(2).Info("item references an owner with coordinates that do not match the observed identity", "item", n.identity, "owner", ownerNode.identity)
    				}
    				hasPotentiallyInvalidOwnerReference = true
    			} else if !ownerIsNamespaced && ownerNode.identity.Namespace != n.identity.Namespace && !ownerNode.isObserved() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/sds_test.go

    		VerifiedIdentity: &spiffe.Identity{Namespace: "istio-system"},
    		Type:             model.Router,
    		ConfigNamespace:  "istio-system",
    	}
    	otherNamespace := &model.Proxy{
    		Metadata:         &model.NodeMetadata{ClusterID: constants.DefaultClusterName},
    		VerifiedIdentity: &spiffe.Identity{Namespace: "other-namespace"},
    		Type:             model.Router,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. pkg/spiffe/spiffe.go

    )
    
    type Identity struct {
    	TrustDomain    string
    	Namespace      string
    	ServiceAccount string
    }
    
    func ParseIdentity(s string) (Identity, error) {
    	if !strings.HasPrefix(s, URIPrefix) {
    		return Identity{}, fmt.Errorf("identity is not a spiffe format")
    	}
    	split := strings.Split(s[URIPrefixLen:], "/")
    	if len(split) != 5 {
    		return Identity{}, fmt.Errorf("identity is not a spiffe format")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/shape_inference_test.cc

        auto identity = ops::Identity(scope.WithOpName("while/Identity"),
                                      switch_node.output_true);
        auto identity_shape =
            ops::Const<int32>(scope.WithOpName("while/Identity/shape"), {});
        auto identity_reshaped = ops::Reshape(
            scope.WithOpName("while/Identity/reshaped"), identity, identity_shape);
    
        auto one = ops::Const<int32>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/server.go

    )
    
    const (
    	// IdentityLeaseComponentLabelKey is used to apply a component label to identity lease objects, indicating:
    	//   1. the lease is an identity lease (different from leader election leases)
    	//   2. which component owns this lease
    	IdentityLeaseComponentLabelKey = "apiserver.kubernetes.io/identity"
    )
    
    // Server is a struct that contains a generic control plane apiserver instance
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_tf_drq.mlir

        %1 = "tf.Sub"(%0, %input_zp) : (tensor<*xi32>, tensor<*xi32>) -> tensor<*xi32>
    
        // Use identity op to avoid the weight being constant-folded.
        %identity = "tf.Identity"(%filter) : (tensor<*xi8>) -> tensor<*xi8>
        %2 = "tf.Cast"(%identity) {Truncate = false} : (tensor<*xi8>) -> tensor<*xi32>
        %3 = "tf.Sub"(%2, %weight_zp) : (tensor<*xi32>, tensor<*xi32>) -> tensor<*xi32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 15:43:38 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_coarsening/executor_tpuv1_island_coarsening.mlir

    // CHECK-NEXT: = "tf.AddV2"
    // CHECK-NEXT: = "tf.TPUReplicatedOutput"
    // CHECK-NEXT: = "tf.TPUPartitionedOutput"
    // CHECK: tf_executor.island wraps "tf.Identity"
    // CHECK: tf_executor.island wraps "tf.Identity"
    // CHECK: tf_executor.island wraps "tf.Identity"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 02 03:15:59 UTC 2022
    - 36.2K bytes
    - Viewed (0)
Back to top