Hi all,
I just updated the packages on the Lambda Labs Quad (Ubuntu 18.04) via the recommended
sudo apt-get update && sudo apt-get upgrade
The update included the recent cuDNN library etc. However, I run into the following issue now:
user@lambda-quad:~$ python3
Python 3.6.7 (default, Oct 22 2018, 11:32:17)
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import torch
>>> torch.backends.cudnn.version()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python3/dist-packages/torch/backends/cudnn/__init__.py", line 65, in version
if _libcudnn() is None:
File "/usr/lib/python3/dist-packages/torch/backends/cudnn/__init__.py", line 58, in _libcudnn
'but linked against {}'.format(compile_version, __cudnn_version))
RuntimeError: cuDNN version mismatch: PyTorch was compiled against 7201 but linked against 7301
Any tips for resolving this?