[PATCH] D108126: [MLIR] Add loop coalesce utility for affine.for
Uday Bondhugula via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 8 05:22:06 PDT 2021
bondhugula added a comment.
Herald added a subscriber: wenzhicui.
@arnab-oss Your revision adds five whitespace errors. You can check these with a `$ git diff HEAD~`. I'll fix these before committing this time.
$ git diff --check HEAD~
mlir/test/Transforms/loop-coalescing.mlir:230: trailing whitespace.
+// Check coalescing of affine.for loops when all the loops have non constant upper bounds.
mlir/test/Transforms/loop-coalescing.mlir:349: trailing whitespace.
+func @test_loops_do_not_get_coalesced() {
mlir/test/Transforms/loop-coalescing.mlir:350: trailing whitespace.
+ affine.for %i = 0 to 7 {
mlir/test/Transforms/loop-coalescing.mlir:351: trailing whitespace.
+ affine.for %j = #map0(%i) to min #map1(%i) {
mlir/test/Transforms/loop-coalescing.mlir:353: trailing whitespace.
+ }
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D108126/new/
https://reviews.llvm.org/D108126
More information about the llvm-commits
mailing list