[Mlir-commits] [mlir] [mlir] Don't hoist transfers from potentially zero trip loops (PR #112752)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Oct 18 06:46:22 PDT 2024
================
@@ -41,7 +44,8 @@ namespace linalg {
///
/// WARNING: This hoisting does not model parallelism and is generally incorrect
/// when used on distributed loops with memref semantics!
-void hoistRedundantVectorTransfers(Operation *root);
+void hoistRedundantVectorTransfers(Operation *root,
+ bool verifyNonZeroTrip = false);
----------------
Max191 wrote:
I'm not certain if we can, since I don't have all the context on why that comment was added to begin with. I think we may be able to though. Maybe @nicolasvasilache would know.
https://github.com/llvm/llvm-project/pull/112752
More information about the Mlir-commits
mailing list