Commit 337cd988 authored by Paul's avatar Paul
Browse files

Increase iterations to 4

parent 7489c75d
...@@ -138,7 +138,7 @@ struct find_double_add_lit_broadcast ...@@ -138,7 +138,7 @@ struct find_double_add_lit_broadcast
void simplify_algebra::apply(program& p) const void simplify_algebra::apply(program& p) const
{ {
// Run simplifications multiple times // Run simplifications multiple times
for(int i = 0; i < 2; i++) for(int i = 0; i < 4; i++)
match::find_matches(p, match::find_matches(p,
match::skip_matches(match::is_unused(), match::is_constant()), match::skip_matches(match::is_unused(), match::is_constant()),
find_double_add_lit_broadcast{}, find_double_add_lit_broadcast{},
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment