Last active
April 21, 2020 21:03
-
-
Save TeddybearCrisis/40e15ba9b59cfe95928ec6d38ca6b8ca to your computer and use it in GitHub Desktop.
Symlinks for CUDA 10.2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ATTENTION: this only helped me at building projects but not when installing | |
# libcublas | |
sudo cp /usr/lib/x86_64-linux-gnu/libcublas.so.10.2.2.89 /usr/local/cuda-10.2/lib64/ | |
sudo ln -s /usr/local/cuda-10.2/lib64/libcublas.so.10.2.2.89 /usr/local/cuda-10.2/lib64/libcublas.so.10.2 | |
sudo ln -s /usr/local/cuda-10.2/lib64/libcublas.so.10.2 /usr/local/cuda-10.2/lib64/libcublas.so | |
# libcusolver, libcurand, libcufft | |
sudo ln -s /usr/local/cuda-10.2/targets/x86_64-linux/lib/libcusolver.so.10 /usr/local/cuda-10.2/lib64/libcusolver.so.10.2 | |
sudo ln -s /usr/local/cuda-10.2/targets/x86_64-linux/lib/libcurand.so.10 /usr/local/cuda-10.2/lib64/libcurand.so.10.2 | |
sudo ln -s /usr/local/cuda-10.2/targets/x86_64-linux/lib/libcufft.so.10 /usr/local/cuda-10.2/lib64/libcufft.so.10.2 |
unfortunately this resolved my linking issues during build but not during install
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you might want to check which version instead of 10.2.2.89 is installed in your machine and update the both occurances accordingly