-
Notifications
You must be signed in to change notification settings - Fork 489
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 all ops not supported on Ethos-U55 to support-check #9489
base: main
Are you sure you want to change the base?
Conversation
Note that this includes ops that are not currently implemented. These ops are added for completeness. Signed-off-by: Erik Lundell <erik.lundell@arm.com> Change-Id: I708db83e1af01d52e0a31e4285a1dd5d866e2749
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/9489
Note: Links to docs will display an error until the docs builds have been completed. ❌ 4 New FailuresAs of commit 1b99762 with merge base e22b21a ( NEW FAILURES - The following jobs have failed:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
@@ -208,26 +208,41 @@ def is_node_supported( | |||
class EthosU55NotSupported(OperatorSupportBase): | |||
""" | |||
Certain operators are not supported on U55. These are listed in `unsupported_ops`. | |||
The comment mentions the unsupported TOSA operator that the aten operator maps to where it is not obvious. | |||
For unimplemented operators, this is the anticipated mapping, and it might be incorrect. | |||
""" | |||
|
|||
unsupported_ops = [ |
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.
Curious why does this have to be a white-list? As opposed to all - supported
?
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.
Hm. The current logic is that we have a list of (TOSA-)supported ops, a.k.a. ops that we have implemented. The support on Ethos-U55 is that list minus this list (and some additional constraints, these are just the completely unsupported ops) We don't have an explicit list of ops supported on Ethos-U55. Maybe I am missing your point 😬
Note that this includes ops that are not currently implemented. These ops are added for completeness.