[Mlir-commits] [mlir] [MLIR] support dynamic indexing in `VectorEmulateNarrowTypes` (PR #114169)
Andrzej WarzyĆski
llvmlistbot at llvm.org
Fri Nov 1 02:53:33 PDT 2024
================
@@ -380,25 +434,27 @@ struct ConvertVectorLoad final : OpConversionPattern<vector::LoadOp> {
? getConstantIntValue(linearizedInfo.intraDataOffset)
: 0;
- if (!foldedIntraVectorOffset) {
- // unimplemented case for dynamic intra vector offset
- return failure();
- }
-
+ // always load enough elements which can cover the original elements
+ auto maxintraDataOffset =
----------------
banach-space wrote:
Spell out `auto`, pls.
https://github.com/llvm/llvm-project/pull/114169
More information about the Mlir-commits
mailing list