-
Notifications
You must be signed in to change notification settings - Fork 607
Arm: Support bitwise and, xor, and or ops #8518
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
Conversation
Ops are very similar and thus clumped together. No quantization since that doesn't make sense for bitwise ops. Add a factory for creating simple two input NodeVisitors. This can be extended for future such ops. Signed-off-by: Erik Lundell <[email protected]> Change-Id: Ic3615067cd03b8775f4b028f601b6b2366487c9d
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/8518
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 a90f1aa with merge base a70c6a3 ( 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. |
MacOS fails unrelated |
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
# pyre-unsafe |
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.
drop this in the future?
Summary: D69765254 (pytorch#8518) adds a file named `ops_binary.py` which doesn't match the current pattern of `op_*.py` files in this directory. Update the glob so that this new file will be picked up by the buck2 build, silencing a type-checking issue. Differential Revision: D69878804
Summary: D69765254 (pytorch#8518) adds a file named `ops_binary.py` which doesn't match the current pattern of `op_*.py` files in this directory. Update the glob so that this new file will be picked up by the buck2 build, silencing a type-checking issue. Differential Revision: D69878804
Summary: D69765254 (pytorch#8518) adds a file named `ops_binary.py` which doesn't match the current pattern of `op_*.py` files in this directory. Update the glob so that this new file will be picked up by the buck2 build, silencing a type-checking issue. Differential Revision: D69878804
Ops are very similar and thus clumped together.
No quantization since that doesn't make sense for
bitwise ops.
Add a factory for creating simple two input NodeVisitors. This can be extended for future such ops.
cc @digantdesai @freddan80 @per @zingo @oscarandersson8218