-
Notifications
You must be signed in to change notification settings - Fork 608
Arm backend: Add select operator #6389
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
Arm backend: Add select operator #6389
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/6389
Note: Links to docs will display an error until the docs builds have been completed. ✅ No FailuresAs of commit 1bcb626 with merge base cbfdf78 ( This comment was automatically generated by Dr. CI and updates every 15 minutes. |
@pytorchbot label ciflow/trunk |
@pytorchbot label 'partner: arm' |
|
||
@register_node_visitor | ||
class SelectVisitor(NodeVisitor): | ||
target = "aten.select_copy.int" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess we can't replace this with slice easily in a pass?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi,
Thanks for review!
We could use a pass for this, but there is some work that is on-going that should enable this going forward.
I hope this helps!
Thanks,
Saoirse
@digantdesai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Ci failures? |
|
@digantdesai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Adds Select operator to the Arm backend including unit tests