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
The error given when running import skuda.cublas with CUDA_VISIBLE_DEVICES unset gives the following error. While it's not straightforward to detect all conditions that could cause this to fail, this one would help from a downstream troubleshooting standpoint. I'm not sure where the check for "is the system capable" is appropriate though.
/snipped/miniconda3/envs/scipy_tk/lib/python3.7/site-packages/skcuda/cublas.py:284: UserWarning: creating CUBLAS context to get version number
warnings.warn('creating CUBLAS context to get version number')
Traceback (most recent call last):
File "/snipped/miniconda3/envs/scipy_tk/lib/python3.7/site-packages/skcuda/cublas.py", line 280, in _get_cublas_version
utils.get_soname(cublas_path)).groups()
AttributeError: 'NoneType' object has no attribute 'groups'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/snipped/miniconda3/envs/test_env/lib/python3.7/site-packages/skcuda/cublas.py", line 292, in <module>
_cublas_version = int(_get_cublas_version())
File "/snipped/miniconda3/envs/test_env/lib/python3.7/site-packages/skcuda/cublas.py", line 285, in _get_cublas_version
h = cublasCreate()
File "/snipped/miniconda3/envs/test_env/lib/python3.7/site-packages/skcuda/cublas.py", line 203, in cublasCreate
cublasCheckStatus(status)
File "/snipped/miniconda3/envs/test_env/lib/python3.7/site-packages/skcuda/cublas.py", line 179, in cublasCheckStatus
raise e
skcuda.cublas.cublasNotInitialized
Environment
List the following info:
OS platform: CentOS7
Python version: 3.7.5
CUDA version + how you installed it: 10.1, module installation by our cluster team
PyCUDA version: 2020.1
scikit-cuda version: 0.5.3
The text was updated successfully, but these errors were encountered:
Problem
The error given when running
import skuda.cublas
with CUDA_VISIBLE_DEVICES unset gives the following error. While it's not straightforward to detect all conditions that could cause this to fail, this one would help from a downstream troubleshooting standpoint. I'm not sure where the check for "is the system capable" is appropriate though.Environment
List the following info:
The text was updated successfully, but these errors were encountered: