[Mlir-commits] [mlir] [MLIR] Implement emulation of static indexing subbyte type vector stores (PR #115922)
Han-Chung Wang
llvmlistbot at llvm.org
Wed Nov 20 10:59:42 PST 2024
================
@@ -75,7 +76,8 @@ static FailureOr<Operation *> getCompressedMaskOp(OpBuilder &rewriter,
int numSrcElemsPerDest,
int numFrontPadElems = 0) {
- assert(numFrontPadElems < numSrcElemsPerDest && "intraDataOffset must be less than scale");
+ assert(numFrontPadElems < numSrcElemsPerDest &&
+ "intraDataOffset must be less than scale");
----------------
hanhanW wrote:
nit: update the assertion message: it should be numFrontPadElems
https://github.com/llvm/llvm-project/pull/115922
More information about the Mlir-commits
mailing list