-
Notifications
You must be signed in to change notification settings - Fork 713
Add per_tensor overload for quantized_layer_norm #6554
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
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/6554
Note: Links to docs will display an error until the docs builds have been completed. ✅ No FailuresAs of commit 25d848b with merge base c4b4e98 ( This comment was automatically generated by Dr. CI and updates every 15 minutes. |
|
This pull request was exported from Phabricator. Differential Revision: D65151427 |
Summary: This will improve performance by removing some `full` ops Differential Revision: D65151427
ede0541 to
2502123
Compare
|
This pull request was exported from Phabricator. Differential Revision: D65151427 |
| ET_CHECK_MSG( | ||
| false, | ||
| "Unhandled input dtype %hhd", | ||
| static_cast<int8_t>(input.scalar_type())); |
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.
Use ET_KERNEL_CHECK instead for better error messages
| ET_CHECK_MSG( | |
| false, | |
| "Unhandled input dtype %hhd", | |
| static_cast<int8_t>(input.scalar_type())); | |
| ET_KERNEL_CHECK( | |
| context, | |
| false, | |
| InvalidArgument, | |
| out); |
Summary: This will improve performance by removing some `full` ops Reviewed By: dulinriley Differential Revision: D65151427
2502123 to
1a93922
Compare
|
This pull request was exported from Phabricator. Differential Revision: D65151427 |
Summary: This will improve performance by removing some `full` ops Reviewed By: dulinriley Differential Revision: D65151427
1a93922 to
0b160bc
Compare
|
This pull request was exported from Phabricator. Differential Revision: D65151427 |
Summary: This will improve performance by removing some `full` ops Reviewed By: dulinriley Differential Revision: D65151427
0b160bc to
25d848b
Compare
|
This pull request was exported from Phabricator. Differential Revision: D65151427 |
Summary: This will improve performance by removing some
fullopsDifferential Revision: D65151427