-
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Symlink libcuda.so.1
to libcuda.so
stubs?
#27
Comments
Can you please share the build? |
It's here But I've just been informed of cuda-compat, is that what the purpose of that is? |
This allows using an older NVIDIA driver with a newer CUDA Toolkit, with several caveats. |
Ah ok. This isn't the use case I've got, though. So should the |
Is libcuda.so.1 needed for linking or loading? |
linking (compilation fails without the symlink in the host environment during build) |
Comment:
In the system
/usr/lib
folder we have e.g.meaning that an application can access the real so through those three different points.
It seems unlikely that an application will use
libcuda.so.550.54.14
, but we've found one (llama.cpp) which looks forlibcuda.so.1
(while building against cuda 12.3) so we had to create the symlink as part of that feedstock. Should it be here?The text was updated successfully, but these errors were encountered: