Skip to content

Instantly share code, notes, and snippets.

@joeking11829
Forked from jetsonhacks/installcuDNNV2.sh
Created April 10, 2016 07:44
Show Gist options
  • Save joeking11829/1bdd55a3fe2601821f639248cc348dc7 to your computer and use it in GitHub Desktop.
Save joeking11829/1bdd55a3fe2601821f639248cc348dc7 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Install cuDNN V2 on NVIDIA Jetson TK1
# Register as a NVIDIA developer and download the cuDNN package
# Package is named cudnn-6.5-linux-ARMv7-V2.tgz
# This script and the cuDNN package should be in the same directory, usually ~/Downloads
# This script places the library and include files for cudnn in the CUDA 6.5 directories
# Make sure this is executing as root
if [ $(id -u) != 0 ]; then
echo "This script requires root permissions"
echo "$ sudo "$0""
exit
fi
# unzip the archive
tar -zxvf cudnn-6.5-linux-ARMv7-v2.tgz
cd cudnn-6.5-linux-ARMv7-v2
# copy the include file
cp cudnn.h /usr/local/cuda-6.5/include
cp libcudnn* /usr/local/cuda-6.5/lib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment