-
Notifications
You must be signed in to change notification settings - Fork 189
Fix nvbugpro 5348750 #725
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
Fix nvbugpro 5348750 #725
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
LGTM, is it still a draft? |
/ok to test |
@leofang I opened it as a draft. Will transition to 'ready-for-review' once CI gree-lights the change. |
This comment has been minimized.
This comment has been minimized.
cf74c40
to
2ddc6f2
Compare
/ok to test |
For drivers in version range [12000, 12040), do not add "paraminfo" to the _loader dictionary. At runtime, raise NotImplementedError if "paraminfo" is not in the dictionary. Only modify _loader["new"] for python version >=12
…lParamInfo Except for one test where we check that NotImplementedError is raised.
2ddc6f2
to
5a2f311
Compare
/ok to test |
Older driver, specifically 535.247.01, returns error code 400 for cluster-size related occupancy queries for devices with compute capability less than (9, 0) It works fine with newer drivers, provided the actual requested cluster size is zero.
/ok to test |
Auto-sync is disabled for ready for review pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
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, thanks Sasha!
|
Description
This build on top of #724 and changes
cuda.core.experimental._module
to set_loader["paraminfo"]
only when driver is>=12.4
. If "paraminfo" is not found in_loader
at run-time, aNotImplementedError
is raised.closes
Checklist