I'm sorry if I'm asking a silly question. I'm new to CUDA. Installed CUDA 10.1 using Runfile method and did the following export according to Nvidia instructions:
export LD_LIBRARY_PATH=/usr/local/cuda-10.1/lib64:$LD_LIBRARY_PATH
export PATH=$PATH:/usr/local/cuda-10.1/bin
Then I try to add cuDNN libraries. However I found two CUDA folders under /use/local
:
cuda
cuda-10.1
I run nvcc -V
in both folders and they are both version 10.1. So now I have two questions:
Should I copy cuDNN libraries to
cuda/include
orcuda-10.1/include
or both?Why did I get two folders? Seems they contain the exact same files. Should I remove one of them to make things clean?