Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 151 for assign_id (0.16 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

      // TensorValue in inputs are backed by tensors which in turn depend on
      // expressions. So, pre-allocate them to the required size. Subtle note:
      // Since these are assigned to params_, these have to live past the kernel
      // compilation.
      std::vector<tensorflow::XlaExpression> expressions;
      std::vector<tensorflow::Tensor> tensors;
      std::vector<tensorflow::TensorValue> inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/stackalloc.go

    			if names[v.ID] == empty {
    				if f.pass.debug > stackDebug {
    					fmt.Printf("stackalloc value %s to name %s\n", v, *name)
    				}
    				names[v.ID] = *name
    			}
    		}
    	}
    
    	// Allocate args to their assigned locations.
    	for _, v := range f.Entry.Values {
    		if !hasAnyArgOp(v) {
    			continue
    		}
    		if v.Aux == nil {
    			f.Fatalf("%s has nil Aux\n", v.LongString())
    		}
    		if v.Op == OpArg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net.go

    	var addedIPSnapshot []netip.Addr
    
    	for _, pod := range ambientPods {
    		podIPs := util.GetPodIPsIfPresent(pod)
    		if len(podIPs) == 0 {
    			log.Warnf("pod %s does not appear to have any assigned IPs, not syncing with ipset", pod.Name)
    		} else {
    			addedIps, err := addPodToHostNSIpset(pod, podIPs, &s.hostsideProbeIPSet)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/internal/reflectlite/value.go

    // stored in the interface i. ValueOf(nil) returns the zero Value.
    func ValueOf(i any) Value {
    	if i == nil {
    		return Value{}
    	}
    	return unpackEface(i)
    }
    
    // assignTo returns a value v that can be assigned directly to typ.
    // It panics if v is not assignable to typ.
    // For a conversion to an interface type, target is a suggested scratch space to use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	if _, err := c.Kube().CoreV1().Services(ns).Create(context.TODO(), dummySvc, metav1.CreateOptions{}); err != nil && !kerrors.IsAlreadyExists(err) {
    		return nil, err
    	}
    
    	// Wait until a ClusterIP has been assigned.
    	dummySvc = nil
    	err = retry.UntilSuccess(func() error {
    		var err error
    		dummySvc, err = c.Kube().CoreV1().Services(echos.Namespace.Name()).Get(context.TODO(), dummySvcName, metav1.GetOptions{})
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    // used to indicate that an IngressClass should be considered default. When a
    // single IngressClass resource has this annotation set to true, new Ingress
    // resources without a class specified will be assigned this default class.
    message IngressClass {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar.go

    	mu sync.Mutex
    
    	// entries is a set of entries, keyed by their eTLD+1 and subkeyed by
    	// their name/domain/path.
    	entries map[string]map[string]entry
    
    	// nextSeqNum is the next sequence number assigned to a new cookie
    	// created SetCookies.
    	nextSeqNum uint64
    }
    
    // New returns a new cookie jar. A nil [*Options] is equivalent to a zero
    // Options.
    func New(o *Options) (*Jar, error) {
    	jar := &Jar{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/loader.cc

      return end_microseconds - start_microseconds;
    }
    
    // Ensure that constant tensors loaded from the saved model have valid shape.
    // Also ensure that constant nodes have a value assigned to them.
    // TODO(b/154763635): this is temporary and will be replaced with a better audit
    static Status ValidateNode(const NodeDef& node) {
      const auto node_iterator = node.attr().find("value");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

        if (var_handle_op.getSharedName() == ANONYMOUS_NAME) {
          return std::make_optional(LocalVarOp(var_handle_op));
        }
      }
      return {};
    }
    
    // Eliminate local variables that are only assigned to but never read, and thus
    // are dead.
    void RemoveDeadLocalVariables(Block &block) {
      llvm::SmallVector<LocalVarOp, 8> local_vars;
      for (Operation &op : block) {
        if (auto local_var = IsLocalVarOp(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

      }];
    
      let constructor = "tensorflow::tf2xla::internal::CreateVerifyClusteringPass()";
    }
    
    def TPUClusterFormationPass : Pass<"tf-tpu-cluster-formation", "ModuleOp"> {
      let summary = "Forms clusters from operations assigned to the same TPU computation";
    
      let description = [{
        TPU computations from the frontend are composed of a `tf.TPUReplicateMetadata`
        op, a subgraph of ops (TensorFlow Dialect) each with a matching
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top