Now you’ve get your new toy from the delivery man. Unbox your Jetson TX1 and attach a monitor and a keyboard. You will see that your TX1 comes with Ubuntu 14.04. Default Username and Passwd are: ubuntu and ubuntu.
Download and install cudnn for TX1 cudnn-7.0-linux-armv7-v3.0-prod.tgz
1
tar -xvf cudnn-7.0-linux-armv7-v3.0-prod.tgz
The files are in ./cuda now. Then copy the cudnn files into cuda path.
1
2
3
4
5
6
cd cuda
sudo cp include/cudnn.h /usr/local/cuda/include/
sudo cp lib/* /usr/local/cuda/lib/
cd /usr/local/cuda/lib/
ln -fs libcudnn.so.7.0.64 libcudnn.so.7.0
ln -fs libcudnn.so.7.0 libcudnn.so
Install caffe dependencies
This part is mostly the same with Caffe official installation guide for Ubuntu 14.04, except the opencv. You should be safe with the following guide, if not, please refer to Caffe official installation guide
you may run into error: libcudart.so.7.0: cannot open shared object file: No such file or directory, to solve this, execute sudo ldconfig /usr/local/cuda/lib