lebedov / scikit-cuda

Python interface to GPU-powered libraries
http://scikit-cuda.readthedocs.org/
Other
986 stars 179 forks source link

cusolver.py can't import cusolver64_11.dll #324

Open Axciton opened 3 years ago

Axciton commented 3 years ago

Probably caused by a misprint in cusolver.py, "11" is missed in _win32_version_list.

in line 26 two "10":

_win32_version_list = [110, 10, 10, 100, 92, 91, 90, 80, 75, 70]

I think it should be

_win32_version_list = [110, 11, 10, 100, 92, 91, 90, 80, 75, 70]