Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 131 for Predecessors (0.31 sec)

  1. src/cmd/compile/internal/ssa/dom.go

    	// dominatorsSimple and dominatorsLT
    	return f.dominatorsLTOrig(f.Entry, preds, succs)
    }
    
    // dominatorsLTOrig runs Lengauer-Tarjan to compute a dominator tree starting at
    // entry and using predFn/succFn to find predecessors/successors to allow
    // computing both dominator and post-dominator trees.
    func (f *Func) dominatorsLTOrig(entry *Block, predFn linkedBlocks, succFn linkedBlocks) []*Block {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control.go

    		return true, nil
    	}
    
    	// If we have a Pod that has been created but is not running and ready we can not make progress.
    	// We must ensure that all for each Pod, when we create it, all of its predecessors, with respect to its
    	// ordinal, are Running and Ready.
    	if !isRunningAndReady(replicas[i]) && monotonic {
    		logger.V(4).Info("StatefulSet is waiting for Pod to be Running and Ready",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/initorder.go

    	//
    	// Note that because we recursively copy predecessors and successors
    	// throughout the function graph, the cost of removing a function at
    	// position X is proportional to cost * (len(funcG)-X). Therefore, we should
    	// remove high-cost functions last.
    	sort.Slice(funcG, func(i, j int) bool {
    		return funcG[i].cost() < funcG[j].cost()
    	})
    	for _, n := range funcG {
    		// connect each predecessor p of n with each successor s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/go/types/initorder.go

    	//
    	// Note that because we recursively copy predecessors and successors
    	// throughout the function graph, the cost of removing a function at
    	// position X is proportional to cost * (len(funcG)-X). Therefore, we should
    	// remove high-cost functions last.
    	sort.Slice(funcG, func(i, j int) bool {
    		return funcG[i].cost() < funcG[j].cost()
    	})
    	for _, n := range funcG {
    		// connect each predecessor p of n with each successor s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        for (Operation* op : ops_to_process) {
          if (predecessors) {
            for (Value operand : op->getOperands()) {
              // Stop at the block boundary.
              if (mlir::isa<BlockArgument>(operand)) continue;
    
              Operation* predecessor = operand.getDefiningOp();
              if (!operations->contains(predecessor) &&
                  !ops_to_avoid.contains(predecessor)) {
                new_ops.insert(operand.getDefiningOp());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/tighten.go

    //     the second step.
    func memState(f *Func, startMem, endMem []*Value) {
    	// This slice contains the set of blocks that have had their startMem set but this
    	// startMem value has not yet been propagated to the endMem of its predecessors
    	changed := make([]*Block, 0)
    	// First step, init the memory state of some blocks.
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			var mem *Value
    			if v.Op == OpPhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CompactLinkedHashMap.java

        Map<K, V> result = super.convertToHashFloodingResistantImplementation();
        links = null;
        return result;
      }
    
      /*
       * For discussion of the safety of the following methods for operating on predecessors and
       * successors, see the comments near the end of CompactHashMap, noting that the methods here call
       * link(), which is defined at the end of this file.
       */
    
      private int getPredecessor(int entry) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/Network.java

      // Element-level accessors
      //
    
      /**
       * Returns a live view of the nodes which have an incident edge in common with {@code node} in
       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the network after this method is called, the {@code Set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/Network.java

      // Element-level accessors
      //
    
      /**
       * Returns a live view of the nodes which have an incident edge in common with {@code node} in
       * this network.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the network after this method is called, the {@code Set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/fuse.go

    			return false
    		}
    	}
    	return true
    }
    
    // fuseBlockPlain handles a run of blocks with length >= 2,
    // whose interior has single predecessors and successors,
    // b must be BlockPlain, allowing it to be any node except the
    // last (multiple successors means not BlockPlain).
    // Cycles are handled and merged into b's successor.
    func fuseBlockPlain(b *Block) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top