win10+cuda9.0+cuDNN 7.0 install steps
阿新 • • 發佈:2018-12-12
Ensure you meet the following requirements before you install cuDNN.
- A GPU of compute capability 3.0 or higher. To understand the compute capability of the GPU on your system, see: CUDA GPUs.
- One of the following supported platforms:
- Windows 7
- Windows 10
- Windows Server 2012
- One of the following supported CUDA versions and NVIDIA graphics driver:
- NVIDIA graphics driver R377 or newer for CUDA 8
- NVIDIA graphics driver R384 or newer for CUDA 9
- NVIDIA graphics driver R390 or newer for CUDA 9.2
Install up-to-date NVIDIA graphics drivers on your Windows system.
- Select the GPU and OS version from the drop down menus.
- Download and install NVIDIA driver as indicated in that webpage. For more information, select the ADDITIONAL INFORMATION tab for step-by-step instructions for installing a driver.
- Restart your system to ensure the graphics driver takes effect.
Refer to the following instructions for installing CUDA on Windows, including the CUDA driver and toolkit: NVIDIA CUDA Installation Guide for Windows.
In order to download cuDNN, ensure you are registered for the NVIDIA Developer Program
- Click Download.
- Complete the short survey and click Submit.
- Accept the Terms and Conditions. A list of available download versions of cuDNN displays.
- Select the cuDNN version to want to install. A list of available resources displays.
- Extract the cuDNN archive to a directory of your choice.
The following steps describe how to build a cuDNN dependent program. In the following sections:
- your CUDA directory path is referred to as C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v9.0
- your cuDNN directory path is referred to as <installpath>
- Navigate to your <installpath> directory containing cuDNN.
- Unzip the cuDNN package.
cudnn-9.0-windows7-x64-v7.zip
orcudnn-9.0-windows10-x64-v7.zip
- Copy the following files into the CUDA Toolkit directory.
- Copy <installpath>\cuda\bin\cudnn64_7.dll to C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v9.0\bin.
- Copy <installpath>\cuda\ include\cudnn.h to C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v9.0\include.
- Copy <installpath>\cuda\lib\x64\cudnn.lib to C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v9.0\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\v9.0
- 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.
cuDNN v7 can coexist with previous versions of cuDNN, such as v5 or v6.
Join the NVIDIA Developer Forum to post questions and follow discussions.