8

I study the use of cuDNN library in my project. But my nvidia graphic card is little bit old.

I search on the net if cuDNN works with all graphic cards. I didn,t find even in their principal page.

Which nvidia graphic cards are compatible with cuDNN?

ProEns08
  • 1,856
  • 2
  • 22
  • 38

2 Answers2

13

Kepler and newer, ie compute capability 3.0 and above.

https://developer.nvidia.com/cudnn

Supported on Windows, Linux and MacOS systems with Pascal, Kepler, Maxwell, Tegra K1 or Tegra X1 GPUs.

Robert Crovella
  • 143,785
  • 11
  • 213
  • 257
6

The deep learning SDK documentation also(1) contains relevant information on the requirements to run cuDNN.

There you will find a link to the list of current GPUs and their compute capabilities, from which you can select the graphic card having the required compute capability >=3.0 (2):

https://developer.nvidia.com/cuda-gpus

Here is an excerpt for GeForce cards: enter image description here

Wikipedia has this even more convenient CUDA supported GPU table listing most (if not all) NVDIA graphic cards with their compute capabilities (the most up-to-date information is however likely to be found from the NVDIA link on cuda-gpus above).

(1) in reference to Robert Crovella's answer

(2) as of May 2018

calocedrus
  • 2,430
  • 20
  • 25