[Mlir-commits] [mlir] [MLIR][SCF] Handle more cases in pipelining transform (PR #74007)
Quinn Dawkins
llvmlistbot at llvm.org
Fri Dec 1 18:00:48 PST 2023
================
@@ -418,9 +446,30 @@ LogicalResult LoopPipelinerInternal::createKernel(
// We create a mapping between original values and the associated loop
// returned values that will be needed by the epilogue.
llvm::SmallVector<Value> yieldOperands;
- for (Value retVal : forOp.getBody()->getTerminator()->getOperands()) {
- yieldOperands.push_back(mapping.lookupOrDefault(retVal));
+ for (OpOperand &yielOperand :
----------------
qedawkins wrote:
typo: yieldOperand
https://github.com/llvm/llvm-project/pull/74007
More information about the Mlir-commits
mailing list