Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Predecessors (0.42 sec)

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

    	Hotness Hotness
    
    	// Subsequent blocks, if any. The number and order depend on the block kind.
    	Succs []Edge
    
    	// Inverse of successors.
    	// The order is significant to Phi nodes in the block.
    	// TODO: predecessors is a pain to maintain. Can we somehow order phi
    	// arguments by block id and have this field computed explicitly when needed?
    	Preds []Edge
    
    	// A list of values that determine how the block is exited. The number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

        AnalyzeRegion(region);
      }
    
      SideEffectAnalysisInfo(SideEffectAnalysisInfo&&) = default;
    
      // Returns a vector of ops that are direct control predecessors of `op`,
      // sorted in program order. If `filter` is provided, only predecessors that
      // pass the filter (returning true) will be included.
      const llvm::SmallVector<Operation*, 4>& DirectControlPredecessors(
          Operation* op) const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      for (auto& entry : control_predecessors_) {
        auto op = entry.getFirst();
        auto& predecessors = entry.getSecond();
        auto& sorted_predecessors = sorted_control_predecessors_[op];
        for (Operation* predecessor : predecessors) {
          sorted_predecessors.push_back(predecessor);
          sorted_control_successors_[predecessor].push_back(op);
        }
      }
      control_predecessors_.clear();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

        }
      }
      return successors;
    }
    // Gets the predecessors of an op wrapped in tf_executor.island.
    llvm::SmallVector<Operation*> GetPredecessors(Operation* op) {
      llvm::SmallVector<Operation*> predecessors;
      for (auto operand : op->getOperands()) {
        if (Operation* pred = operand.getDefiningOp()) {
          pred->walk([&](mlir::Operation* opinexecutor) {
            predecessors.push_back(opinexecutor);
          });
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.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
    - 39.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

        auto predecessors = analysis.DirectControlPredecessors(&cluster_op);
        if (!predecessors.empty() && !IsEmbeddingOp(&cluster_op)) {
          bool skip = false;
          for (Operation* predecessor : llvm::reverse(predecessors)) {
            if (IsEmbeddingOp(predecessor)) continue;
            skip = !head_outside_compiled_ops.contains(predecessor);
            break;
          }
          if (skip) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/modfetch/codehost/codehost.go

    	ReadZip(ctx context.Context, rev, subdir string, maxSize int64) (zip io.ReadCloser, err error)
    
    	// RecentTag returns the most recent tag on rev or one of its predecessors
    	// with the given prefix. allowed may be used to filter out unwanted versions.
    	RecentTag(ctx context.Context, rev, prefix string, allowed func(tag string) bool) (tag string, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

            // (parent) block, we need to check that it's before (the
            // (parent of) the preprocess_op.
            if (o->isBeforeInBlock(it->second)) {
              break;  // valid compile predecessor
            } else {
              return WalkResult::advance();
            }
          }
          o = o->getParentOp();
        }
        // Check that the the compile op actually passes its results to its parents.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. 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)
Back to top