[Mlir-commits] [mlir] [mlir][TilingInterface] Update `PartialReductionOpInterface` to get it more in line with `TilingInterface`. (PR #95460)

Oleksandr Alex Zinenko llvmlistbot at llvm.org
Fri Jun 14 08:00:43 PDT 2024


================
@@ -2525,8 +2525,10 @@ DiagnosedSilenceableFailure transform::TileReductionUsingForOp::applyToOne(
     return emitDefaultSilenceableFailure(target);
   for (Value initValue : result->initialValues)
     results.push_back(initValue.getDefiningOp());
-  results.push_back(result->parallelTiledOp);
-  results.push_back(result->mergeOp);
+  for (auto parallelTiledOp : result->parallelTiledOps)
----------------
ftynse wrote:

Expand `auto`, here and below.

https://github.com/llvm/llvm-project/pull/95460


More information about the Mlir-commits mailing list