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
There have been two (somewhat) recent changes in the upstream rewrite drivers:
The simpler Walk Pattern Rewrite Driver has been added for situations where the fixed point iteration of the greedy rewriter is not necessary
The usual way to use the Greed Rewriter, applyPatternsAndFoldGreedily has been changed to applyPatternsGreedily with the decision on whether or not to also fold now configurable via the GreedyRewriteConfig parameter. Currently this defaults to still folding.
The TODO here is to investigate which of our passes that use the greedy rewrite driver can be dropped to a simple walk, and which applications of the greedy rewriter can have the folding dropped (and, e.g., moved to a later step in a pipeline).
The text was updated successfully, but these errors were encountered:
There have been two (somewhat) recent changes in the upstream rewrite drivers:
applyPatternsAndFoldGreedily
has been changed toapplyPatternsGreedily
with the decision on whether or not to also fold now configurable via theGreedyRewriteConfig
parameter. Currently this defaults to still folding.The TODO here is to investigate which of our passes that use the greedy rewrite driver can be dropped to a simple walk, and which applications of the greedy rewriter can have the folding dropped (and, e.g., moved to a later step in a pipeline).
The text was updated successfully, but these errors were encountered: