-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
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
Fix conversion for aten.expand
#146
base: main
Are you sure you want to change the base?
Conversation
@jdh8 what is the status of this PR? |
I was trying to break down tenstorrent/tt-metal#12853 into subproblems per op. Should they be PRs here or tickets at tenstorrent/tt-metal? |
The four FAIL asserts in the first message are the same problem as issue tenstorrent/tt-metal#12853, so focusing on the problem specific to @jdh8 incompatible function arguments error is not actually for |
@jdh8 looking at the assert issue, it is actually of different root cause than for For this OP (
Next assert will not work with simple update to look for wrapper repeat ( Last assert is already passing. |
aten.expand
aten.expand
Ticket
Subproblem of tenstorrent/tt-metal#12853
Problem description
Try fixing
aten.expand
→ttnn.repeat
to unblockaten.repeat
What's changed
aten.expand
Error messages
As
target_wrappers.repeat
is already registered for data movement, I wonder why there is still an argument mismatch.pytorch2.0_ttnn/torch_ttnn/passes/lowering/add_data_move_pass.py
Line 123 in 0a839f4