System information
Describe the problem
Installed cuda 11.2 and cudnn 8.1.0.77. Faced the following problem when I run train.py
Could not load dynamic library 'libcusolver.so.10'; dlerror: libcusolver.so.10: cannot open shared object file
Solved the problem
https://github.com/tensorflow/tensorflow/issues/43947#issuecomment-722019317
$ ln -s /usr/local/cuda/lib64/libcusolver.so.11 ~.virtualenvs/(env name)/lib/python3.6/site-packages/tensorflow/python/libcusolver.so.10
This fixed the problem for me