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
When tiling IR like: (+ x 5), the basic tiler tiles left and right, then adds the instructions for x and 5. We then have an optimization that inlines constants, so the end result is something like:
mov _t7, 5
add x, 5
The text was updated successfully, but these errors were encountered:
When tiling IR like:
(+ x 5)
, the basic tiler tiles left and right, then adds the instructions forx
and5
. We then have an optimization that inlines constants, so the end result is something like:The text was updated successfully, but these errors were encountered: