Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for stateful (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // This preserves the order of the ops that was in the original parent
      // function. This is critical for preserving correctness in the presence of
      // resource variables and stateful functions.
      std::vector<Operation*> topological_order;
      for (Operation& op : parent_func.getOps())
        if (ops.contains(&op)) topological_order.push_back(&op);
    
      // Create the partitioned call
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    		leg.AddUint32(target.Arch, uint32(ldr.SymDynid(s)))
    		if target.IsPIE() && target.IsInternal() {
    			// Mach-O relocations are a royal pain to lay out.
    			// They use a compact stateful bytecode representation.
    			// Here we record what are needed and encode them later.
    			MachoAddBind(int64(ldr.SymGot(s)), s)
    		}
    	} else {
    		ldr.Errorf(s, "addgotsym: unsupported binary format")
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    		return false, state, nodeInfo, nil
    	}
    	nodeInfoOut := nodeInfo.Snapshot()
    	stateOut := state.Clone()
    	podsAdded := false
    	for _, pi := range nominatedPodInfos {
    		if corev1.PodPriority(pi.Pod) >= corev1.PodPriority(pod) && pi.Pod.UID != pod.UID {
    			nodeInfoOut.AddPodInfo(pi)
    			status := fh.RunPreFilterExtensionAddPod(ctx, stateOut, pod, pi, nodeInfoOut)
    			if !status.IsSuccess() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top