Installation under Windows CUDA8.0

Machine configuration:

Windows 10
VS 2013

CUDA 8.0: Download

CUDA Other versions: Download

CUDA 8.0 installation

Double-click to install the downloaded .exe file and select Extract path, as shown below, extract it to where it does not matter, a successful installation will be automatically deleted;

Then, choose to install the module, choose to install only the CUDA, select the installation path; (forget the screenshot)

After a successful installation; Ctrl + R, open cmd:

nvcc -V

Output version information, the installation was successful;

Installation CuDNN

Just download the CUDA 8.0 version of CuDNN: Download Link

(If you install a different version of CUDA, attention CuDNN version)

After the download is complete, extract the files and a folder named cuda; copy the file to the folder in the mounting step on the CUDA; note corresponding to the folder;

./cuda/bin/**.dll 复制到  ./cuda/v8.0/bin/
./cuda/include/**.dll 复制到  ./cuda/v8.0/include/
./cuda/lib/x64/**.dll 复制到  ./cuda/v8.0/lib/x64/

The installation is complete;

test

Using VS2013 open ./cuda/v8.0/Samples_vs2013.sln;

After loading is complete, execute native Windows compiler, the final outcome is successful, see below;


supplement:

After mounting the above-CUDA installed without further configuration;


Guess you like

Origin www.cnblogs.com/chenzhen0530/p/10939319.html