You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Triton] Fix LoopAwareCSE by removing the equivalence cache (#6894)
I made a classic blunder trying to cache context-sensitive DFS. The DFS
cache persisting from one context to another was causing miscompiles
because operations that were equal in one context are not equal in
another.
I just removed the cache for now because properly caching the DFS here
is very tricky. If compile time of this pass becomes a problem, we can
revisit it.
0 commit comments