Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Predecessors (0.15 sec)

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

    		state.currentState.reset(ourStartState)
    	}
    
    	// Zero predecessors
    	if len(preds) == 0 {
    		if previousBlock != nil {
    			state.f.Fatalf("Function %v, block %s with no predecessors is not first block, has previous %s", state.f, b.String(), previousBlock.String())
    		}
    		// startState is empty
    		reset(abt.T{})
    		return abt.T{}, blockChanged
    	}
    
    	// One predecessor
    	l0 := blockLocs[preds[0].ID]
    	p0 := l0.endState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      best_pred_for_node[from] = -1;
    
      int rpo_index = 0, current_rpo_node;
      do {
        current_rpo_node = rpo[rpo_index++];
        std::optional<int> some_pred, preferred_pred;
        for (int pred : cycles_graph_.Predecessors(current_rpo_node)) {
          if (!best_pred_for_node.contains(pred)) {
            continue;
          }
    
          // Ignore the from->to edge since we're trying to find an alternate path.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	var args []*Value
    	for _, a := range target.Args {
    		if a != load && a.Block.ID == target.Block.ID {
    			args = append(args, a)
    		}
    	}
    
    	// memPreds contains memory states known to be predecessors of load's
    	// memory state. It is lazily initialized.
    	var memPreds map[*Value]bool
    	for i := 0; len(args) > 0; i++ {
    		const limit = 100
    		if i >= limit {
    			// Give up if we have done a lot of iterations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    		// If p and p.Succs[0] are dominators it means that every path
    		// from entry to b passes through p and p.Succs[0]. We care that
    		// no path from entry to b passes through p.Succs[1]. If p.Succs[0]
    		// has one predecessor then (apart from the degenerate case),
    		// there is no path from entry that can reach b through p.Succs[1].
    		// TODO: how about p->yes->b->yes, i.e. a loop in yes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

            succ = curr.next;
            if (curr.thread != null) { // we aren't unlinking this node, update pred.
              pred = curr;
            } else if (pred != null) { // We are unlinking this node and it has a predecessor.
              pred.next = succ;
              if (pred.thread == null) { // We raced with another node that unlinked pred. Restart.
                continue restart;
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

            succ = curr.next;
            if (curr.thread != null) { // we aren't unlinking this node, update pred.
              pred = curr;
            } else if (pred != null) { // We are unlinking this node and it has a predecessor.
              pred.next = succ;
              if (pred.thread == null) { // We raced with another node that unlinked pred. Restart.
                continue restart;
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    
    [[using_junit5]]
    == Using JUnit 5
    
    http://junit.org/junit5[JUnit 5] is the latest version of the well-known JUnit test framework.
    Unlike its predecessor, JUnit 5 is modularized and composed of several modules:
    
        JUnit 5 = JUnit Platform + JUnit Jupiter + JUnit Vintage
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	}
    	unlock(&span.speciallock)
    	releasem(mp)
    	return result
    }
    
    // Find a splice point in the sorted list and check for an already existing
    // record. Returns a pointer to the next-reference in the list predecessor.
    // Returns true, if the referenced item is an exact match.
    func (span *mspan) specialFindSplicePoint(offset uintptr, kind byte) (**special, bool) {
    	// Find splice point, check for existing record.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top