[Mlir-commits] [mlir] [mlir] [dataflow] further optimize dataflow compile time (PR #149804)
donald chen
llvmlistbot at llvm.org
Tue Jul 22 18:53:30 PDT 2025
cxy-1993 wrote:
> Can you expand more on motivation? So far I think custom analyses can achieve the same result by just overriding `processOperation`
We could achieve this by rewriting the processOperation method, but that would require recopying the entire DenseAnalysis. Maintaining a separate copy just for this minor feature would be quite costly. Furthermore, it's common in dense dataflows for most operations to have no relation to dataflow iteration; this isn't a custom requirement.
https://github.com/llvm/llvm-project/pull/149804
More information about the Mlir-commits
mailing list