I have recently installed CUDA-9.2, CuDnn and GPU version of tensorflow on CentOS 7. While importing it is showing
ImportError: libcublas.so.9.0: cannot open shared object file: No such file or directory
But As I have previously mentioned I have CUDA 9.2 installed instead of CUDA 9.0. I have libcublas.so.9.2 file in both usr/local/cuda/lib64
and usr/local/cuda-9.2/lib64
.
Also in my .bashrc file I have added the following lines:
export PATH=/usr/local/cuda-9.2/bin:$PATH
export LD_LIBRARY_PATH=/usr/local/cuda-9.2/lib64:$LD_LIBRARY_PATH
What should I do to resolve this?