Commit aeed836
[Global Opt] Fix transpose propagation failure (iree-org#19322)
When applying the "bubbling" patterns in the transpose propagation pass,
the greedy rewriter was failing because it reached 10 iterations before
converging. This PR sets the iteration limit to `kNoLimit` which is the
same config used for the "sinking" patterns that are applied afterwards.
This is needed because these patterns take a bit to converge.
Fixes iree-org#19320
Signed-off-by: Ian Wood <[email protected]>
Signed-off-by: Giacomo Serafini <[email protected]>1 parent aa2da60 commit aeed836
File tree
1 file changed
+5
-2
lines changed- compiler/src/iree/compiler/GlobalOptimization
1 file changed
+5
-2
lines changedLines changed: 5 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1104 | 1104 | | |
1105 | 1105 | | |
1106 | 1106 | | |
1107 | | - | |
1108 | | - | |
| 1107 | + | |
| 1108 | + | |
| 1109 | + | |
| 1110 | + | |
| 1111 | + | |
1109 | 1112 | | |
1110 | 1113 | | |
1111 | 1114 | | |
| |||
0 commit comments