@105437 I could swear that you need to copy some files from the cuDNN subdirectories into the CUDA directory structure but I can't remember where I saw that. I'll look in my office later, I think I printed out the directions and that will have a URL on it.
I had made a note of these instruction from somewhere (can't recall where, maybe from another post here).
Deepstack GPU Installation
You must install.
Nvidia driver of your video card.
The CUDA Toolkit 10.1
The CUDA Toolkit 10.1 update 1
The CUDA Toolkit 10.1 update 2
Extract the cuDNN NVIDIA lib into your CUDA Toolkit folder.
Don't forget to read the windows instruction to how extract cudnn in cuda.
You have to set a environment variable also.
Before issuing the following commands, you'll need to replace x.x and 8.x.x.x with your specific CUDA and cuDNN versions and package date.
Where:
The CUDA directory path is referred to as C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\vx.x
The cuDNN directory path is referred to as <installpath>
Procedure
Navigate to your <installpath> directory containing cuDNN.
Unzip the cuDNN package.
cudnn-x.x-windows-x64-v8.x.x.x.zip
or
cudnn-x.x-windows10-x64-v8.x.x.x.zip
Copy the following files into the CUDA Toolkit directory.
Copy <installpath>\cuda\bin\cudnn*.dll to C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\vx.x\bin.
Copy <installpath>\cuda\include\cudnn*.h to C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\vx.x\include.
Copy <installpath>\cuda\lib\x64\cudnn*.lib to C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\vx.x\lib\x64.
Set the following environment variables to point to where cuDNN is located. To access the value of the $(CUDA_PATH) environment variable, perform the following steps:
Open a command prompt from the Start menu.
Type Run and hit Enter.
Issue the control sysdm.cpl command.
Select the Advanced tab at the top of the window.
Click Environment Variables at the bottom of the window.
Ensure the following values are set:
Variable Name: CUDA_PATH
Variable Value: C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\vx.x
Include cudnn.lib in your Visual Studio project.
Open the Visual Studio project and right-click on the project name.
Click Linker > Input > Additional Dependencies.
Add cudnn.lib and click OK.