[Mlir-commits] [mlir] [mlir][vector] Allow multi dim vectors in vector.scatter (PR #132217)
Andrzej WarzyĆski
llvmlistbot at llvm.org
Mon Mar 24 01:04:07 PDT 2025
================
@@ -313,13 +313,16 @@ class VectorScatterOpConversion
if (failed(isMemRefTypeSupported(memRefType, *this->getTypeConverter())))
return failure();
+ VectorType vType = scatter.getVectorType();
+ if (vType.getRank() > 1)
+ return failure();
----------------
banach-space wrote:
[nit] notifyMatchFailure, please.
https://github.com/llvm/llvm-project/pull/132217
More information about the Mlir-commits
mailing list