You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A clear and concise description of what the bug is.
Even though I installed everything with cu11 when I try to import cuml I am getting an error:
line 137, in _setup_numba from pynvjitlink.patch import patch_numba_linker ModuleNotFoundError: No module named 'pynvjitlink'
This is caused because of cudf/utils/_numba.py, line 137 where driver/cuda version is checked and I am not sure why but it indicates to 12. Solution is ofc to install the package but it does not have cu11 implementation. I just commented out line 136-139 but it is not good solution for non-local deployment.
error in cudf/utils/_numba.py, line 137, in _setup_numba from pynvjitlink.patch import patch_numba_linker ModuleNotFoundError: No module named 'pynvjitlink'
Expected behavior
A clear and concise description of what you expected to happen.
pynvjitlink is indeed a cuda 12 specific requirement. However cuDF shouldn't attempt to find it unless it detects that it is in a cuda 12 environment. The question is why you are getting ((12, 0), (12, 1) from safe_get_versions in what is apparently a cuda 11 environment. Ultimately the information is obtained from cuDriverGetVersion, so it's finding cuda 12 somewhere.
@maxiuw can you provide some details on how you constructed the environment and installed things?
Thanks @maxiuw . Starting from the base environment (no conda env yet) can you provide the output of nvidia-smi? Then, would you be able to share the steps you used to create the environment you are using that contains cuML? For instance did you install using command line instructions from https://docs.rapids.ai/install or are you creating your conda environment by some other means?
Describe the bug
A clear and concise description of what the bug is.
Even though I installed everything with cu11 when I try to import
cuml
I am getting an error:line 137, in _setup_numba from pynvjitlink.patch import patch_numba_linker ModuleNotFoundError: No module named 'pynvjitlink'
This is caused because of
cudf/utils/_numba.py
, line 137 where driver/cuda version is checked and I am not sure why but it indicates to 12. Solution is ofc to install the package but it does not have cu11 implementation. I just commented out line 136-139 but it is not good solution for non-local deployment.Steps/Code to reproduce bug
Follow this guide http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports to craft a minimal bug report. This helps us reproduce the issue you're having and resolve the issue more quickly.
import cuml
error in
cudf/utils/_numba.py
, line 137, in _setup_numba from pynvjitlink.patch import patch_numba_linker ModuleNotFoundError: No module named 'pynvjitlink'Expected behavior
A clear and concise description of what you expected to happen.
The text was updated successfully, but these errors were encountered: