Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for Predecessors (0.16 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. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    func ValidateAllObjectFunc(ctx context.Context, obj runtime.Object) error {
    	return nil
    }
    
    // ValidateObjectUpdateFunc is a function to act on a given object and its predecessor.
    // An error may be returned if the hook cannot be completed. An UpdateObjectFunc
    // may NOT transform the provided object.
    type ValidateObjectUpdateFunc func(ctx context.Context, obj, old runtime.Object) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
Back to top