[Mlir-commits] [mlir] [mlir][vector] Allow multi dim vectors in vector.scatter (PR #132217)
Kunwar Grover
llvmlistbot at llvm.org
Mon Mar 24 05:15:37 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();
----------------
Groverkss wrote:
Updated gather/scatter lowering failures to notifyMatchFailure
https://github.com/llvm/llvm-project/pull/132217
More information about the Mlir-commits
mailing list