-
Notifications
You must be signed in to change notification settings - Fork 54
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
use default 128 cores per sm instead of report error #3884
Conversation
!build |
Review updated until commit 4eb748c Description
Changes walkthrough 📝
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
!build |
@@ -2845,7 +2845,8 @@ int getCoresPerSM(int major, int minor) { | |||
if (it != cores_per_sm_map.end()) { | |||
return it->second; | |||
} | |||
NVF_THROW("Unknown GPU architecture: ", major, ".", minor); | |||
// Use the default value of 128 for any architecture not listed, |
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.
Could you also add a {0xc0, 128}}; line for Blackwell?
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.
added
!test |
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
use default 128 cores per sm instead of report error