Fixes a bug in affine fusion pipeline where an incorrect fusion is performed
despite a Call Op that potentially modifies memrefs under consideration
exists between source and target.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/lib/Transforms/LoopFusion.cpp | ||
---|---|---|
796 | Giving this another thought, should we be more conservative and add a node for any operation that uses a memref, even if it's unknown? In other words, we could remove this check and add a check like: else if (llvm::any_of(op.getOperands(), [&](Value v) { return v.getType().isa<MemRefType>(); })) { ... after the MemoryEffectOpInterface check below. It would catch any CallOpInterface op and any other unknown operation using a memref. |
mlir/lib/Transforms/LoopFusion.cpp | ||
---|---|---|
796 | That sounds good. We might not even need checking MemoryEffectOpInterface then? |
mlir/lib/Transforms/LoopFusion.cpp | ||
---|---|---|
796 |
That was my impression when looking at your first patch. Since this is a correctness issue, I think it's important to be overconservative and then add exceptions as we see fit. |
mlir/lib/Transforms/LoopFusion.cpp | ||
---|---|---|
796 | I don't think that would be the right approach. For eg., we can't be assuming that side-effect free ops using memrefs are writing to memrefs! For eg. if you just assumed any op could, you'd run into cases where things like dim op would start blocking fusion. It's not just overconservative but a limitation and not the right thing. If a registered op is really writing to memrefs or memory, it is wrong for the op to not declare the appropriate memory effects. If it doesn't declare those, it's not the transformation's responsibility to still work correctly. You can of course be conservative for unregistered ops perhaps. I believe a number of transformations/utilities make use of the effects interface and they rely on the ops correctly setting those effects. One of the reasons the effects interfaces exist is to not have to whitelist/hardcode a specific set of ops or not be forced to be overconservative. |
mlir/lib/Transforms/LoopFusion.cpp | ||
---|---|---|
796 | Ok, that sounds reasonable. I was more worried about ops with arbitrary side effects. I think unregistered ops would fall into that category, right? Anyways, we could add support for those cases in a separate patch. This patch should be ready to go. Thanks! |
mlir/lib/Transforms/LoopFusion.cpp | ||
---|---|---|
796 | That's right - I think we can check for unregistered ops and assume the most conservative case for it. For registered ops, I think we are fine with memory effects. |
Thanks a lot for the insights @bondhugula and @dcaballe ! No more changes needed for this patch then.
One minor comment.
mlir/lib/Transforms/LoopFusion.cpp | ||
---|---|---|
791 | You could just use getOperandTypes() here. |
mlir/lib/Transforms/LoopFusion.cpp | ||
---|---|---|
791 | Thanks for the tip! I have made the change. |
You could just use getOperandTypes() here.