-
Notifications
You must be signed in to change notification settings - Fork 363
Add per tensor fp8 quantization support for conv3d #3215
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,6 +32,7 @@ | |
| "is_MI300", | ||
| "is_sm_at_least_89", | ||
| "is_sm_at_least_90", | ||
| "is_sm_at_least_100", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not super related to this PR but I wonder if we should stop exposing these, we don't expect users to call these themselves
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh, what should user call?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh should we use
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh I mean should users even call these helper functions? They know what GPUs they're running on. If they really want to check then maybe they should just check
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh I see, makes sense, yeah this should just be dev only, not user facing |
||
| "is_package_at_least", | ||
| "DummyModule", | ||
| # Deprecated | ||
|
|
||
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.
do we also need to check kernel preference? Like if it's "torch" maybe we should throw an exception since we don't support that yet?