3

I'm trying to install CUDA (to use it for TensorFlow). It's recommended to use cuDNN v.4 and CUDA 7.5. But at https://developer.nvidia.com/rdp/cudnn-download

There are only cuDNN v.4 for CUDA 7.0 and cuDNN v.5 (release candidate) for CUDA 7.5. Where I can get cuDNN v.4 for CUDA 7.5? Thank you.

3 Answers3

3

As @fabrizioM pointed out, you can use cuDNN v.4 for CUDA 7.0. I also spent a lot of time to install CUDA/cuDNN.

For the reference, https://no2147483647.wordpress.com/2016/01/16/setup-amazon-aws-gpu-instance-with-mxnet/ has great instructions:

tar -zxf cudnn-7.0-linux-x64-v4.0-rc.tgz 
cd cuda
sudo cp lib64/* /usr/local/cuda/lib64/
sudo cp include/cudnn.h /usr/local/cuda/include/
Sung Kim
  • 8,417
  • 9
  • 34
  • 42
2

No problem In that. I've installed cuda 7.5 and using cuDNN v4 on ubuntu 16.04. There is no problem in that.

mrphoenix13
  • 679
  • 6
  • 10
0

Installing CuDNN from scratch is painful.

As of October 2016, AWS is offering pre-built AMI's with NVIDIA CUDA 7.5 Pre-installed. Yipieee!

Plese see -

AWS Blog post

AWS AMI GPU Image

NVIDIA Digits4

Srikar Appalaraju
  • 71,928
  • 54
  • 216
  • 264
  • Not sure about why the downvote. I really think AWS AMI is removing lot of painful steps to setup CUDA and this answer would help future users. – Srikar Appalaraju Oct 05 '16 at 20:24