scikit-cuda icon indicating copy to clipboard operation
scikit-cuda copied to clipboard

cusolver.py can't import cusolver64_11.dll

Open Axciton opened this issue 3 years ago • 0 comments

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]

Axciton avatar Sep 29 '21 20:09 Axciton