-
Notifications
You must be signed in to change notification settings - Fork 712
patch qnn silu lowering #8494
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
patch qnn silu lowering #8494
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/8494
Note: Links to docs will display an error until the docs builds have been completed. ✅ You can merge normally! (1 Unrelated Failure)As of commit 3a97268 with merge base 7964bca ( BROKEN TRUNK - The following job failed but were present on the merge base:👉 Rebase onto the `viable/strict` branch to avoid these failures
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
|
This pull request was exported from Phabricator. Differential Revision: D69636086 |
| silu_node = src_partition.nodes[0] | ||
| with graph_module.graph.inserting_after(inputs[0]): | ||
| for node in graph.nodes: | ||
| if node.op == "call_function" and node.target in [ |
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.
Maybe we can use set here {.
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.
oh actually it's just one op and we can just compare...
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.
Thank you!
Summary: There are some edge lowering case missing. Change the logic to look for the op first because it's not decomposed Differential Revision: D69636086
3c1a572 to
011cc87
Compare
|
This pull request was exported from Phabricator. Differential Revision: D69636086 |
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.
LGTM. Thanks.
Seems like there are lint issues.
Summary: There are some edge lowering case missing. Change the logic to look for the op first because it's not decomposed Reviewed By: billmguo Differential Revision: D69636086
011cc87 to
3a97268
Compare
|
This pull request was exported from Phabricator. Differential Revision: D69636086 |
Summary: There are some edge lowering case missing. Change the logic to look for the op first because it's not decomposed
Differential Revision: D69636086