-
Notifications
You must be signed in to change notification settings - Fork 198
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
Fetch runtime version with cuda-python instead of numba. #948
Comments
This issue has been labeled |
This issue has been labeled |
Just to note, this will likely be possible with cuda 12.3, so we should revisit then. |
An API for getting the local CUDA runtime version was added in cuda-python 12.3, as 12.3.0 release notes: https://nvidia.github.io/cuda-python/release/12.3.0-notes.html It was also backported to cuda-python 11.8.3: https://nvidia.github.io/cuda-python/release/11.8.3-notes.html To resolve this issue, we should switch to using that API and update the minimum version requirements. However, we may not be able to update to cuda-python 12.3 yet. I'm not sure, it depends on how the conda-forge |
PR #946 introduces a workaround for an issue in cuda-python that fetches a hardcoded CUDA runtime version. NVIDIA/cuda-python#16
Once that upstream issue is resolved, we should update the implementation in RMM to use
cuda.cudart.cudaRuntimeGetVersion()
instead ofnumba.cuda.runtime.get_version()
.Originally posted by @jakirkham in #946 (comment)
The text was updated successfully, but these errors were encountered: