-
Notifications
You must be signed in to change notification settings - Fork 342
[Reland][CPU] Add ops for float8 linear #3100
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
base: main
Are you sure you want to change the base?
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/ao/3100
Note: Links to docs will display an error until the docs builds have been completed. ✅ No FailuresAs of commit 479111c with merge base 5cbbd73 ( This comment was automatically generated by Dr. CI and updates every 15 minutes. |
Hi @jcaip @jerryzh168 Could you please import this patch to check if the error is gone in your internal checks? Thanks. |
Hi @jerryzh168 Thanks for approving. Do you still need to import it? |
Thanks for fixing this @Xia-Weiwen! This is still failing some tests, I'm seeing:
@jerryzh168 Long term I think we need to update our C++ linting to be as strict as whatever upstream dependencies we have, so we can find these issues earlier. |
Hi @jcaip Thanks for the feedback. I could not see the errors you saw, even not as warnings. I use the following environment to build Torchao:
I can only see the following warnings:
And these warnings are not from the files this PR adds. |
Reland #3052 which is reverted by 5cbbd73
Revert reason: compiler is complaining about
switch...case
of bool values.This PR fixes the issue by converting
switch...case
toif...else