cuda - How to verify CuDNN installation? -


i have searched many places how install it, not how verify installed. can verify nvidia driver installed, , cuda installed, don't know how verify cudnn installed. appreciated, thanks!

ps.
caffe implementation. working without cudnn enabled.

installing cudnn involves placing files in cuda directory. if have specified routes , cudnn option correctly while installing caffe compiled cudnn.

you can check using cmake. create directory caffe/build , run cmake .. there. if configuration correct see these lines:

-- found cudnn (include: /usr/local/cuda-7.0/include, library: /usr/local/cuda-7.0/lib64/libcudnn.so)  -- nvidia cuda: --   target gpu(s)     :   auto --   gpu arch(s)       :   sm_30 --   cudnn             :   yes 

if correct run make orders install caffe there.


Comments