[Mlir-commits] [mlir] [mlir][vector] Document `ConvertVectorStore` + unify var names (nfc) (PR #126422)
Alan Li
llvmlistbot at llvm.org
Thu Feb 13 06:55:33 PST 2025
================
@@ -480,7 +559,8 @@ struct ConvertVectorStore final : OpConversionPattern<vector::StoreOp> {
// vector<4xi8>
auto origElements = valueToStore.getType().getNumElements();
- bool isAlignedEmulation = origElements % numSrcElemsPerDest == 0;
+ // Note, per-element-alignment was already verified above.
----------------
lialan wrote:
I think so far we cannot support non-aligned cases for per element? i.e. we cannot support 7bit emulation?
https://github.com/llvm/llvm-project/pull/126422
More information about the Mlir-commits
mailing list