Created
July 14, 2021 06:33
-
-
Save peters/74de0f04f7e7f7161ef137bea92492a6 to your computer and use it in GitHub Desktop.
cudnn 8.2.2
This file contains 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
cd ~/Downloads | |
rm -rf cudnn_tmp | |
mkdir -p cudnn_tmp | |
cd cudnn_tmp | |
wget https://developer.download.nvidia.com/compute/redist/cudnn/v8.2.2/cudnn-11.4-linux-x64-v8.2.2.26.tgz | |
tar xf cudnn-11.4-linux-x64-v8.2.2.26.tgz | |
sudo cp -a cuda/include/* /usr/local/cuda/include/ | |
sudo cp -a cuda/lib64/* /usr/local/cuda/lib64/ | |
cd .. | |
rm -rf cudnn_tmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment