[flang-commits] [flang] [mlir] [mlir][TilingInterface] Use `LoopLikeOpInterface` in tiling using SCF to unify tiling with `scf.for` and `scf.forall`. (PR #77874)
Nicolas Vasilache via flang-commits
flang-commits at lists.llvm.org
Thu Jan 18 00:35:09 PST 2024
================
@@ -135,10 +135,10 @@ def ExecuteRegionOp : SCF_Op<"execute_region", [
def ForOp : SCF_Op<"for",
[AutomaticAllocationScope, DeclareOpInterfaceMethods<LoopLikeOpInterface,
- ["getInitsMutable", "getSingleInductionVar", "getSingleLowerBound",
- "getSingleStep", "getSingleUpperBound", "getYieldedValuesMutable",
- "getLoopResults", "promoteIfSingleIteration",
- "replaceWithAdditionalYields"]>,
+ ["getInitsMutable", "getRegionIterArgs", "getSingleInductionVar",
----------------
nicolasvasilache wrote:
nit: can we make the list 1 per line to improve readability ?
Also, `getLoopResults` is not properly ordered.
https://github.com/llvm/llvm-project/pull/77874
More information about the flang-commits
mailing list