[Mlir-commits] [mlir] [mlir][vector] Fix parser of vector.transfer_read (PR #133721)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Mar 31 20:53:24 PDT 2025
================
@@ -4260,6 +4264,10 @@ ParseResult TransferReadOp::parse(OpAsmParser &parser, OperationState &result) {
AffineMap permMap;
if (!permMapAttr) {
permMap = getTransferMinorIdentityMap(shapedType, vectorType);
+ if (!permMap) {
+ return parser.emitError(
+ typesLoc, "failed to create minor identity permutation map");
----------------
douyixuan wrote:
Thank you for the suggestion; I’ll take it into consideration.
https://github.com/llvm/llvm-project/pull/133721
More information about the Mlir-commits
mailing list