Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for Predecessors (0.54 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    				}
    				if m.Op == ssa.OpPhi {
    					break
    				}
    			}
    			// Find the two predecessor blocks (write barrier on and write barrier off)
    			if len(m.Args) != 2 {
    				lv.f.Fatalf("phi before write barrier end mark has %d args, want 2", len(m.Args))
    			}
    			c := b.Preds[0].Block()
    			d := b.Preds[1].Block()
    
    			// Find their common predecessor block (the one that branches based on wb on/off).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    			// cannot determine the real line number.
    			if f.begin > expand {
    				f.begin -= expand
    			} else if f.begin > 1 {
    				f.begin = 1
    			}
    		} else {
    			// Find gap from predecessor and divide between predecessor and f.
    			halfGap := (f.begin - funcs[i-1].end) / 2
    			if halfGap > expand {
    				halfGap = expand
    			}
    			funcs[i-1].end += halfGap
    			f.begin -= halfGap
    		}
    		funcs[i] = f
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass that propagates TPU devices to users.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTPUDevicePropagationPass();
    
    // Create a pass that colocates each `Split` with its predecessor.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTPUColocateSplitsPass();
    
    // Creates a pass that replicates the tf._TPUCompileMlir op on each host that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "FMA", argLength: 3}, // compute (a*b)+c without intermediate rounding
    
    	// Data movement. Max argument length for Phi is indefinite.
    	{name: "Phi", argLength: -1, zeroWidth: true}, // select an argument based on which predecessor block we came from
    	{name: "Copy", argLength: 1},                  // output = arg0
    	// Convert converts between pointers and integers.
    	// We have a special op for this so as to not confuse GC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. CREDITS

    transaction who receives a copy of the work also receives whatever
    licenses to the work the party's predecessor in interest had or could
    give under the previous paragraph, plus a right to possession of the
    Corresponding Source of the work from the predecessor in interest, if
    the predecessor has it or can get it with reasonable efforts.
    
      You may not impose any further restrictions on the exercise of the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  8. 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