Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 131 for Predecessors (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/move_tpu_compile_to_front.cc

        while (op && op != func) {
          op->removeAttr("_is_compilation");
          op->removeAttr("_wraps_compilation");
          op = op->getParentOp();
        }
      });
    }
    
    int OutsideCompilationOrdering(Operation* predecessor, Operation* op) {
      // Actual compilations go first.
      if (op->hasAttr("_is_compilation")) return 2;
      // Followed by nested ops that contain compilations.
      if (op->hasAttr("_wraps_compilation")) return 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 00:26:18 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/shortcircuit.go

    //
    //	p   other pred(s)
    //	 \ /
    //	  b
    //	 / \
    //	t   other succ
    //
    // in which b is an If block containing a single phi value with a single use (b's Control),
    // which has a ConstBool arg.
    // p is the predecessor corresponding to the argument slot in which the ConstBool is found.
    // t is the successor corresponding to the value of the ConstBool arg.
    //
    // Rewrite this into
    //
    //	p   other pred(s)
    //	|  /
    //	| b
    //	|/ \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                    // Node must be at the predecessor state before calculating dependencies
                    NodeAtState predecessor = new NodeAtState(getPath(), getTargetState().previous());
                    dependencies.add(graph.nodeAtState(predecessor));
                    // Transition any other nodes that depend on the predecessor state
                    dependencies.add(new TransitionDependents(predecessor));
                    seenPredecessor = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

         */
        public void maybeInheritFinalizerGroups() {
            NodeGroup newGroup = group;
            for (Node predecessor : getDependencyPredecessors()) {
                if (predecessor.getGroup() instanceof HasFinalizers) {
                    newGroup = maybeInheritGroupAsFinalizerDependency((HasFinalizers) predecessor.getGroup(), newGroup);
                }
            }
            if (newGroup != group) {
                setGroup(newGroup);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/check.go

    		for _, c := range b.Preds {
    			if !blockMark[c.b.ID] {
    				f.Fatalf("predecessor block %v for %v is missing", c, b)
    			}
    		}
    		for _, c := range b.Succs {
    			if !blockMark[c.b.ID] {
    				f.Fatalf("successor block %v for %v is missing", c, b)
    			}
    		}
    	}
    
    	if len(f.Entry.Preds) > 0 {
    		f.Fatalf("entry block %s of %s has predecessor(s) %v", f.Entry, f.Name, f.Entry.Preds)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. docs/pt/docs/history-design-future.md

    Como parte disso, eu precisava investigar, testar e usar muitas alternativas.
    
    A história do **FastAPI** é, em grande parte, a história de seus predecessores.
    
    Como dito na seção [Alternativas](alternatives.md){.internal-link target=_blank}:
    
    <blockquote markdown="1">
    
    **FastAPI** não existiria se não pelo trabalho anterior de outros.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/dom_test.go

    	blocs = append(blocs,
    		Bloc("entry",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("p", OpConstBool, types.Types[types.TBOOL], 1, nil),
    			Goto(blockn(0)),
    		),
    	)
    
    	// We want predecessor lists to be long, so 2/3rds of the blocks have a
    	// successor of the first or last block.
    	for i := 0; i < size; i++ {
    		switch i % 3 {
    		case 0:
    			blocs = append(blocs, Bloc(blockn(i),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/replicate_invariant_op_hoisting.cc

          return WalkResult::interrupt();
        return WalkResult::advance();
      });
      return result.wasInterrupted();
    }
    
    // Make invariant the `ShapeOp`s or a `ReadVariableOp` that's the `ShapeOp`'s
    // predecessor.
    void MakeShapeOpInvariant(tf_device::ReplicateOp replicate_op, int num_replicas,
                              Block* replicate_block, TF::ShapeOp shape_op) {
      // Ignore ShapeOps that have virtual devices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/internal/dag/parse.go

    	}
    	for _, r := range rules {
    		if r.op == "!<" {
    			disallowed = append(disallowed, r)
    			continue
    		}
    		for _, def := range r.def {
    			if def == "NONE" {
    				errorf("NONE cannot be a predecessor")
    				continue
    			}
    			if !g.addNode(def) {
    				errorf("multiple definitions for %s", def)
    			}
    			for _, less := range r.less {
    				if less == "NONE" {
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/internal/trace/gc.go

    	}
    }
    
    // An integrator tracks a position in a utilization function and
    // integrates it.
    type integrator struct {
    	u *mmuSeries
    	// pos is the index in u.util of the current time's non-strict
    	// predecessor.
    	pos int
    }
    
    // advance returns the integral of the utilization function from 0 to
    // time. advance must be called on monotonically increasing values of
    // times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top