-
-
Notifications
You must be signed in to change notification settings - Fork 751
Closed
Labels
Description
I'm using cuda-platform-redist
to avoid being dependent on as system-installed cuda, which was working great using the 1.5.9-SNAPHSOT
versions and cuda 11.8-8.6
. Now after upgrading to 1.5.9
stable in conjuction with the cuda update to 12.1-8.9
, something seems to be missing:
[W interface.cpp:47] Warning: Loading nvfuser library failed with: Error in dlopen: libcusolver.so.11: cannot open shared object file: No such file or directory (function LoadingNvfuserLibrary)
...
pytorch-2.0.1-1.5.9-linux-x86_64-gpu.jar/org/bytedeco/pytorch/linux-x86_64-gpu/libjnitorch.so: libcusolver.so.11: cannot open shared object file: No such file or directory
I've tried going back to cuda 11.8-8.6-1.5.8
(only the native libs via classifier to avoid javacpp-1.5.8 being pulled in), but I got other linking errors due to missing cuda 12 libs, which suggests libtorch is now built against cuda 12:
pytorch-2.0.1-1.5.9-linux-x86_64-gpu.jar/org/bytedeco/pytorch/linux-x86_64-gpu/libjnitorch.so: libcudart.so.12: cannot open shared object file: No such file or directory
Any ideas?