Xtra-Computing / thundersvm

ThunderSVM: A Fast SVM Library on GPUs and CPUs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FileNotFoundError: ... thundersvm.dll' (or one of its dependencies)

MLPeter1989 opened this issue · comments

Hi there thank you for offering to help. Made my first account on Github today! :)

After building using Visual Studio and installing using the "cd python && python setup.py install" command. Python still cannot find the thundersvm.dll file. Please help! I've been stuck on this for two days now...

Really appreciate any help at all!!

Capture

Python 3.8 has changed which DLLs get loaded. Now only system (C:\Windows\System32) DLLs, and those included with os.add_dll_directory are loaded. In my case (CUDA 10.2) cusparse64_10.dll wasn't installed into a system directory so either:

  • Copy cusparse64_10.dll into a system directory
  • Call os.add_dll_directory before importing thundersvm
commented

I am facing the same issue!!!!!!!!!!!!

@296348304 Eric, can you try the solution suggest by @zacps and see if it works?

I had the same issue. I tried @zacps suggestion. Copied cusparse64_10.dll into a system directory. Now working fine... Thank you