[GPU] Decompose Im2col failed for padding + rank-reduce weight backward convs · Issue #20729 · iree-org/iree · GitHub
More Web Proxy on the site http://driver.im/
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
With the implementation in #20633, it reduced the rank of extract_slice to 1 for this case, however this doesn't work when there's a leading padding op, because the extract_slice and pad ops get swapped.
The text was updated successfully, but these errors were encountered:
yzhang93
changed the title
[GPU] Decompose Im2col failed with multiple k_pos
[GPU] Decompose Im2col failed for padding + rank-reduce weight backward convs
May 6, 2025
This error happened because the upstream ExtractSliceOfPadTensorSwapPattern failed to handle rank-reducing tensor.extract_slice. This should be fixed by llvm/llvm-project#138921.
Uh oh!
There was an error while loading. Please reload this page.
What happened?
The input IR for weight backward convolution with
y = 1 and x = 3
as belowFailed at
DecomposeIm2colPass
withThe error happened as the im2col is now rank-reduced as
With the implementation in #20633, it reduced the rank of
extract_slice
to 1 for this case, however this doesn't work when there's a leading padding op, because the extract_slice and pad ops get swapped.The text was updated successfully, but these errors were encountered: