[Mlir-commits] [mlir] Enable custom alloc-like ops in `promoteBufferResultsToOutParams` (PR #120288)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Dec 20 08:16:33 PST 2024
================
@@ -224,7 +232,13 @@ LogicalResult mlir::bufferization::promoteBufferResultsToOutParams(
return failure();
}
}
- if (failed(updateCalls(module, options)))
+ auto defaultAllocationFn = [](OpBuilder &builder, Location loc,
----------------
srcarroll wrote:
i went ahead and just included `MemRef.h` for now. `Passes.h` was already included. Naively, I think this is ok since the default use of this would have to link the memref dialect anyway if I'm not mistaken. But let me know if this is no good
https://github.com/llvm/llvm-project/pull/120288
More information about the Mlir-commits
mailing list