[Mlir-commits] [mlir] f6e0fc2 - [mlir] Fix tile-and-distribute.mlir
Stella Stamenova
llvmlistbot at llvm.org
Wed Mar 24 13:42:42 PDT 2021
Author: Stella Stamenova
Date: 2021-03-24T13:42:34-07:00
New Revision: f6e0fc2ddd8e9286e52a9931c833a64366a1ba41
URL: https://github.com/llvm/llvm-project/commit/f6e0fc2ddd8e9286e52a9931c833a64366a1ba41
DIFF: https://github.com/llvm/llvm-project/commit/f6e0fc2ddd8e9286e52a9931c833a64366a1ba41.diff
LOG: [mlir] Fix tile-and-distribute.mlir
A recent filecheck change resulted in better reporting of invalid variables and this test had a couple. This is the second occurence that the first fix missed.
Added:
Modified:
mlir/test/Dialect/Linalg/tile-and-distribute.mlir
Removed:
################################################################################
diff --git a/mlir/test/Dialect/Linalg/tile-and-distribute.mlir b/mlir/test/Dialect/Linalg/tile-and-distribute.mlir
index 387afba54cef..a6756306cff8 100644
--- a/mlir/test/Dialect/Linalg/tile-and-distribute.mlir
+++ b/mlir/test/Dialect/Linalg/tile-and-distribute.mlir
@@ -164,7 +164,7 @@ func @gemm6(%a : memref<?x?xf32>, %b : memref<?x?xf32>, %c : memref<?x?xf32>)
// CHECK: %[[BIDX:.*]] = "gpu.block_id"() {dimension = "x"}
// CHECK: %[[LBY:.*]] = affine.apply #[[MAP0]]()[%[[BIDY]]]
// CHECK: %[[STEPY:.*]] = affine.apply #[[MAP0]]()[%[[NBLOCKSY]]]
-// CHECK: scf.parallel (%[[ARG3.*]]) = (%[[LBY]]) to (%{{.*}}) step (%[[STEPY]])
+// CHECK: scf.parallel (%[[ARG3:.*]]) = (%[[LBY]]) to (%{{.*}}) step (%[[STEPY]])
// CHECK: scf.for %[[ARG4:.*]] =
// CHECK: %[[SV1:.*]] = memref.subview %[[ARG0]][%[[ARG3]], %[[ARG4]]]
// CHECK: %[[OFFSETX:.*]] = affine.apply #[[MAP0]]()[%[[BIDX]]]
More information about the Mlir-commits
mailing list