-
Notifications
You must be signed in to change notification settings - Fork 193
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
Remove take_along_axis and take #1366
Comments
Could I have a stab at this? |
Yeah! To be clear, take can be replaced by gather (look at how EXLA does it) at the Nx level. take_along_axis also can be, but as an optional callback (again look at EXLA). Torchx has a simpler operation for take_along_axis |
Thanks! I understood that from José's original wording as well. |
Quick question: for which backend(s) do you want to implement the |
Torchx should have the specific implementation. EXLA and BinaryBackend can use the default that delegates to gather |
take
can directly call gather, no need for optional callbacks.take_along_axis
should have an optional callback.The text was updated successfully, but these errors were encountered: