[Mlir-commits] [mlir] [mlir] Add Memref Normalization support for reinterpret_cast op (PR #133417)
Uday Bondhugula
llvmlistbot at llvm.org
Fri Apr 4 07:59:10 PDT 2025
================
@@ -1338,13 +1262,26 @@ LogicalResult mlir::affine::replaceAllMemRefUsesWith(
state.operands.push_back(newMemRef);
// Insert the new memref map operands.
- state.operands.append(newMapOperands.begin(), newMapOperands.end());
+ if (affMapAccInterface) {
+ state.operands.append(newMapOperands.begin(), newMapOperands.end());
+ } else {
+ // In the case of dereferencing ops not implementing
+ // AffineMapAccessInterface, we need to apply the values of `newMapOperands`
+ // to the `newMap` to get the correct indices.
+ for (unsigned i = 0; i < newMemRefRank; i++)
+ state.operands.push_back(builder.create<AffineApplyOp>(
+ op->getLoc(),
+ AffineMap::get(newMap.getNumDims(), newMap.getNumSymbols(),
+ newMap.getResult(i)),
+ newMapOperands));
+ }
// Insert the remaining operands unmodified.
+ unsigned oldMapNumInputs = oldMapOperands.size();
+
----------------
bondhugula wrote:
Drop blank line.
https://github.com/llvm/llvm-project/pull/133417
More information about the Mlir-commits
mailing list