Created
September 9, 2021 03:14
-
-
Save WesleyCh3n/57a0c006a177e5274be8bcd00210b83d to your computer and use it in GitHub Desktop.
cuDNN 8.1.0 installation in Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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