[Mlir-commits] [mlir] [mlir][vector] Fix emulation of "narrow" type `vector.store` (PR #133231)
Alan Li
llvmlistbot at llvm.org
Wed Apr 23 06:25:38 PDT 2025
================
@@ -593,10 +593,20 @@ struct ConvertVectorStore final : OpConversionPattern<vector::StoreOp> {
auto origElements = valueToStore.getType().getNumElements();
// Note, per-element-alignment was already verified above.
bool isDivisibleInSize = origElements % emulatedPerContainerElem == 0;
+ // Do the trailing dim for source and destination match? If yes, then the
----------------
lialan wrote:
Thanks for the explanation, this answers my question.
https://github.com/llvm/llvm-project/pull/133231
More information about the Mlir-commits
mailing list