Skip to content

Instantly share code, notes, and snippets.

@WesleyCh3n
Created September 9, 2021 03:14
Show Gist options
  • Save WesleyCh3n/57a0c006a177e5274be8bcd00210b83d to your computer and use it in GitHub Desktop.
Save WesleyCh3n/57a0c006a177e5274be8bcd00210b83d to your computer and use it in GitHub Desktop.
cuDNN 8.1.0 installation in Ubuntu
# Download package from https://developer.nvidia.com/rdp/cudnn-archive.
# Extract and move to right place
tar -xzvf cudnn-x.x-linux-x64-v8.x.x.x.tgz
sudo cp cuda/include/cudnn*.h /usr/local/cuda/include
sudo cp -P cuda/lib64/libcudnn* /usr/local/cuda/lib64
sudo chmod a+r /usr/local/cuda/include/cudnn*.h /usr/local/cuda/lib64/libcudnn*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment