[Mlir-commits] [mlir] [mlir][TilingInterface] Use `LoopLikeOpInterface` in tiling using SCF to unify tiling with `scf.for` and `scf.forall`. (PR #77874)
lorenzo chelini
llvmlistbot at llvm.org
Fri Jan 12 07:42:19 PST 2024
================
@@ -464,50 +564,73 @@ mlir::scf::tileReductionUsingScf(RewriterBase &b,
if (failed(identityTensor))
return b.notifyMatchFailure(op,
"cannot create a tensor of identity value.");
- // 3. Create the nested loops.
- SmallVector<OpFoldResult> offsets, sizes;
- SmallVector<scf::ForOp> loops =
- generateTileLoopNest(b, loc, iterationDomain, tileSizesVector, offsets,
- sizes, identityTensor.value()->getResults());
-
- // 4. Generate the tiled implementation within the inner most loop.
- // 4a. Clone the operation within the loop body.
- SmallVector<Value> clonedOpDestination =
+
+ // 3. Define the callback to use for generating the inner most tile loop body.
+ auto innerTileLoopBodyFn =
+ [&](RewriterBase &rewriter, Location loc, ValueRange ivs,
+ ValueRange regionIterArgs,
+ SmallVector<SmallVector<OpFoldResult>> &resultOffsets,
+ SmallVector<SmallVector<OpFoldResult>> &resultSizes)
+ -> FailureOr<TilingResult> {
+ SmallVector<OpFoldResult> offsets, sizes;
+ {
+ int materializedLoopNum = 0;
+ for (auto [tileSize, loopRange] :
+ llvm::zip(tileSizesVector, iterationDomain)) {
+ if (isConstantIntValue(tileSize, 0)) {
+ offsets.push_back(loopRange.offset);
+ sizes.push_back(loopRange.size);
+ continue;
+ }
+ Value iv = ivs[materializedLoopNum++];
+ offsets.push_back(iv);
+ sizes.push_back(
+ getBoundedTileSize(rewriter, loc, loopRange, iv, tileSize));
+ }
+ }
+
+ // 4a. Clone the operation.
+ auto clonedOp = cast<PartialReductionOpInterface>(
+ cloneOpAndUpdateDestinationArgs(b, op, regionIterArgs));
+
+ // 4b. Tile the cloned operation.
+ Operation *parallelOp = clonedOp.tileToPartialReduction(
+ b, loc, regionIterArgs, offsets, sizes, reductionDims);
+ // 4c. Delete the cloned operation.
+ b.eraseOp(clonedOp);
+
+ // 4d. Compute the offsets and sizes needed to insert the result of the
+ // tiled
----------------
chelini wrote:
wired comment layout.
https://github.com/llvm/llvm-project/pull/77874
More information about the Mlir-commits
mailing list