[Mlir-commits] [mlir] [mlir][memref.expand_shape] Add verifier check to ensure correct output_shape is provided by user (PR #91245)
Prathamesh Tagore
llvmlistbot at llvm.org
Tue May 7 04:03:55 PDT 2024
https://github.com/meshtag updated https://github.com/llvm/llvm-project/pull/91245
>From 9b6844b6d32b3dbef1a96a8eb3348afeeeaa13e8 Mon Sep 17 00:00:00 2001
From: Prathamesh Tagore <prathamesh+1 at polymagelabs.com>
Date: Mon, 6 May 2024 22:52:00 +0530
Subject: [PATCH] [mlir][memref.expand_shape] Add verifier check to ensure
correct output_shape is provided by user
The verifier was not checking for the case when the user provided shape in output_shape is different than the one inferred from output type. Fix this.
---
mlir/lib/Dialect/MemRef/IR/MemRefOps.cpp | 10 ++++++++++
mlir/test/Dialect/MemRef/invalid.mlir | 11 +++++++++++
2 files changed, 21 insertions(+)
diff --git a/mlir/lib/Dialect/MemRef/IR/MemRefOps.cpp b/mlir/lib/Dialect/MemRef/IR/MemRefOps.cpp
index 393f73dc65cd8..78201ae29cd9b 100644
--- a/mlir/lib/Dialect/MemRef/IR/MemRefOps.cpp
+++ b/mlir/lib/Dialect/MemRef/IR/MemRefOps.cpp
@@ -2353,6 +2353,16 @@ LogicalResult ExpandShapeOp::verify() {
<< " dynamic dims while output_shape has " << getOutputShape().size()
<< " values";
+ // Verify if provided output shapes are in agreement with output type.
+ DenseI64ArrayAttr staticOutputShapes = getStaticOutputShapeAttr();
+ ArrayRef<int64_t> resShape = getResult().getType().getShape();
+ unsigned staticShapeNum = 0;
+
+ for (auto [pos, shape] : llvm::enumerate(resShape))
+ if (!ShapedType::isDynamic(shape) &&
+ shape != staticOutputShapes[staticShapeNum++])
+ emitOpError("invalid output shape provided at pos ") << pos;
+
return success();
}
diff --git a/mlir/test/Dialect/MemRef/invalid.mlir b/mlir/test/Dialect/MemRef/invalid.mlir
index 70c96aad9555e..0f533cb95a0ca 100644
--- a/mlir/test/Dialect/MemRef/invalid.mlir
+++ b/mlir/test/Dialect/MemRef/invalid.mlir
@@ -1103,3 +1103,14 @@ func.func @subview_invalid_strides_rank_reduction(%m: memref<7x22x333x4444xi32>)
: memref<7x22x333x4444xi32> to memref<7x11x4444xi32>
return
}
+
+// -----
+
+func.func @expand_shape_invalid_output_shape(
+ %arg0: memref<30x20xf32, strided<[4000, 2], offset: 100>>) {
+ // expected-error @+1 {{invalid output shape provided at pos 2}}
+ %0 = memref.expand_shape %arg0 [[0, 1], [2]] output_shape [2, 15, 21] :
+ memref<30x20xf32, strided<[4000, 2], offset: 100>>
+ into memref<2x15x20xf32, strided<[60000, 4000, 2], offset: 100>>
+ return
+}
More information about the Mlir-commits
mailing list