[Mlir-commits] [mlir] [MLIR] VectorEmulateNarrowType to support loading of unaligned vectors (PR #113411)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Fri Oct 25 09:01:17 PDT 2024


================
@@ -67,6 +69,10 @@ static FailureOr<Operation *> getCompressedMaskOp(OpBuilder &rewriter,
   shape.back() = numElements;
   auto newMaskType = VectorType::get(shape, rewriter.getI1Type());
   if (createMaskOp) {
+    if (frontOffset != 0) {
+      assert(false && "unimplemented case for frontOffset != 0");
----------------
lialan wrote:

that is right ... removed.

https://github.com/llvm/llvm-project/pull/113411


More information about the Mlir-commits mailing list