[PATCH] D80017: [mlir] Fix incorrect indexing of subview in DimOp folding.
Nicolas Vasilache via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri May 15 10:51:48 PDT 2020
nicolasvasilache updated this revision to Diff 264282.
nicolasvasilache marked an inline comment as done.
nicolasvasilache added a comment.
Cleanups.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D80017/new/
https://reviews.llvm.org/D80017
Files:
mlir/lib/Dialect/StandardOps/IR/Ops.cpp
mlir/test/Transforms/canonicalize.mlir
Index: mlir/test/Transforms/canonicalize.mlir
===================================================================
--- mlir/test/Transforms/canonicalize.mlir
+++ mlir/test/Transforms/canonicalize.mlir
@@ -429,8 +429,13 @@
#map1 = affine_map<(d0, d1)[s0, s1, s2] -> (d0 * s1 + s0 + d1 * s2)>
#map2 = affine_map<(d0, d1, d2)[s0, s1, s2] -> (d0 * s2 + d1 * s1 + d2 + s0)>
+#map3 = affine_map<(d0, d1)[s0, s1] -> (d0 * s1 + s0 + d1)>
-// CHECK-LABEL: func @dim_op_fold(%arg0: index, %arg1: index, %arg2: index,
+// CHECK-LABEL: func @dim_op_fold(
+// CHECK-SAME: %[[ARG0:[a-z0-9]*]]: index
+// CHECK-SAME: %[[ARG1:[a-z0-9]*]]: index
+// CHECK-SAME: %[[ARG2:[a-z0-9]*]]: index
+// CHECK-SAME: %[[BUF:[a-z0-9]*]]: memref<?xi8>
func @dim_op_fold(%arg0: index, %arg1: index, %arg2: index, %BUF: memref<?xi8>, %M : index, %N : index, %K : index) {
// CHECK-SAME: [[M:arg[0-9]+]]: index
// CHECK-SAME: [[N:arg[0-9]+]]: index
@@ -452,11 +457,20 @@
affine.for %arg5 = %l to %u {
"foo"() : () -> ()
}
+ %sv2 = subview %0[0, 0][17, %arg4][1, 1] : memref<?x?xf32> to memref<17x?xf32, #map3>
+ %l2 = dim %v, 1 : memref<?x?xf32>
+ %u2 = dim %sv2, 1 : memref<17x?xf32, #map3>
+ scf.for %arg5 = %l2 to %u2 step %c1 {
+ "foo"() : () -> ()
+ }
}
}
- // CHECK-NEXT: affine.for %arg7 = 0 to %arg2 {
- // CHECK-NEXT: affine.for %arg8 = 0 to %arg0 {
- // CHECK-NEXT: affine.for %arg9 = %arg0 to %arg0 {
+ // CHECK: affine.for %[[I:.*]] = 0 to %[[ARG2]] {
+ // CHECK-NEXT: affine.for %[[J:.*]] = 0 to %[[ARG0]] {
+ // CHECK-NEXT: affine.for %[[K:.*]] = %[[ARG0]] to %[[ARG0]] {
+ // CHECK-NEXT: "foo"() : () -> ()
+ // CHECK-NEXT: }
+ // CHECK-NEXT: scf.for %[[KK:.*]] = %[[ARG0]] to %[[J]] step %{{.*}} {
// CHECK-NEXT: "foo"() : () -> ()
// CHECK-NEXT: }
// CHECK-NEXT: }
Index: mlir/lib/Dialect/StandardOps/IR/Ops.cpp
===================================================================
--- mlir/lib/Dialect/StandardOps/IR/Ops.cpp
+++ mlir/lib/Dialect/StandardOps/IR/Ops.cpp
@@ -1315,21 +1315,17 @@
OpFoldResult DimOp::fold(ArrayRef<Attribute> operands) {
// Constant fold dim when the size along the index referred to is a constant.
auto opType = memrefOrTensor().getType();
- int64_t dimSize = ShapedType::kDynamicSize;
- if (auto tensorType = opType.dyn_cast<RankedTensorType>())
- dimSize = tensorType.getShape()[getIndex()];
- else if (auto memrefType = opType.dyn_cast<MemRefType>())
- dimSize = memrefType.getShape()[getIndex()];
-
- if (!ShapedType::isDynamic(dimSize))
- return IntegerAttr::get(IndexType::get(getContext()), dimSize);
+ if (auto shapedType = opType.dyn_cast<ShapedType>())
+ if (!shapedType.isDynamicDim(getIndex()))
+ return IntegerAttr::get(IndexType::get(getContext()),
+ shapedType.getShape()[getIndex()]);
// Fold dim to the size argument for an AllocOp/ViewOp/SubViewOp.
auto memrefType = opType.dyn_cast<MemRefType>();
if (!memrefType)
return {};
- // The size at getIndex() is now a dynamic size of a memref.
+ // The size at getIndex() is now known to be a dynamic size of a memref.
auto memref = memrefOrTensor().getDefiningOp();
if (auto alloc = dyn_cast_or_null<AllocOp>(memref))
return *(alloc.getDynamicSizes().begin() +
@@ -1339,11 +1335,10 @@
return *(view.getDynamicSizes().begin() +
memrefType.getDynamicDimIndex(getIndex()));
- // The subview op here is expected to have rank dynamic sizes now.
if (auto subview = dyn_cast_or_null<SubViewOp>(memref)) {
- auto sizes = subview.sizes();
- if (!sizes.empty())
- return *(sizes.begin() + getIndex());
+ assert(subview.isDynamicSize(getIndex()) &&
+ "Expected dynamic subview size");
+ return subview.getDynamicSize(getIndex());
}
/// dim(memrefcast) -> dim
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D80017.264282.patch
Type: text/x-patch
Size: 3905 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200515/c92612ef/attachment-0001.bin>
More information about the llvm-commits
mailing list