Reputation: 4954
So here's what I did:
Stack Trace:
Exception in thread "main" java.lang.UnsatisfiedLinkError: Could not load the native library.
Error while loading native library "JCudaRuntime-windows-x86_64" with base name "JCudaRuntime"
...
java.lang.NullPointerException: No resource found with name '/lib/JCudaRuntime-windows-x86_64.dll'
...
java.lang.UnsatisfiedLinkError: no JCudaRuntime-windows-x86_64 in java.library.path
...
I tried adding a bunch of paths to my -Djava.library.path="..." JVM argument, including:
But still getting the same error. What's even more concerning is that there is no such file anywhere on my computer by that name (JCudaRuntime-windows-x86_64.dll). So how do I resolve these linking issues?
Upvotes: 2
Views: 1026