We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seen after #3587
Take a very simple program:
arg0 = @param:arg0 -> float_type, {2, 1, 4}, {4, 4, 1} @1 = multibroadcast[out_lens={1, 2, 3, 4},out_dyn_dims={}](arg0) -> float_type, {1, 2, 3, 4}, {0, 4, 0, 1} @2 = @return(@1)
This will fail compile at the find_inner_broadcast pass after the layout_convolution pass adds a layout op:
find_inner_broadcast
layout_convolution
arg0 = @param:arg0 -> float_type, {2, 1, 4}, {4, 4, 1} @1 = multibroadcast[out_lens={1, 2, 3, 4},out_dyn_dims={}](arg0) -> float_type, {1, 2, 3, 4}, {0, 4, 0, 1} @2 = layout[permutation={1, 3, 2, 0}](@1) -> float_type, {1, 2, 3, 4}, {1, 12, 1, 3} @3 = @return(@2)
The text was updated successfully, but these errors were encountered:
pfultz2
No branches or pull requests
Seen after #3587
Take a very simple program:
This will fail compile at the
find_inner_broadcast
pass after thelayout_convolution
pass adds a layout op:The text was updated successfully, but these errors were encountered: