Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

On windows, how do you verify the version number of CuDNN installed?

Tags:

windows

cudnn

On windows, how do you verify the version number of CuDNN installed?

I'm finding a lot of results when I search for the answer for Linux machines. It doesn't seem like there's a clear way to find out what version is installed for Windows.

like image 270
Axoren Avatar asked Aug 11 '17 17:08

Axoren


People also ask

How do I know what version of cuDNN I have?

Install CuDNN You might need nvcc --version to get your cuda version. Step 2: Check where your cuda installation is. For most people, it will be /usr/local/cuda/ . You can check it with which nvcc .

How do I find cuda version in Windows?

You can verify that you have a CUDA-capable GPU through the Display Adapters section in the Windows Device Manager. Here you will find the vendor name and model of your graphics card(s). If you have an NVIDIA card that is listed in http://developer.nvidia.com/cuda-gpus, that GPU is CUDA-capable.


2 Answers

#cudnn version check (win10)

in my case its cuda 11.3v // u need to replace with ur verisons

more "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.3\include\cudnn_version.h"

output: enter image description here

like image 42
Bharath Kumar Avatar answered Oct 09 '22 17:10

Bharath Kumar


Go to C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\include\

open cudnn.h

define CUDNN_MAJOR 5

define CUDNN_MINOR 1

define CUDNN_PATCHLEVEL 10

in my case its 5.1.10

like image 59
Yeghia Avatar answered Oct 09 '22 17:10

Yeghia