一、问题
Cuda Configuration Error: No library found under: /usr/local/cuda-10.1
二、原因
????????So tensorflow is looking for libcublas in /usr/local/cuda-10.1 but it appears that since cuda-10.1 libcublas has been moved outside of /usr/local/cuda and results in a lot of confusions and broken systems. See threads here (so I have no idea why Nvidia did that). From AndyDick's post it is now in /usr/lib/x86_64-linux-gnu.
三、解决办法
????????So maybe just make a symlink
sudo ln -s /usr/lib/x86_64-linux-gnu/libcublas.so.10.1 /usr/local/cuda-10.1/lib64
|