I am trying to install CUDNN to use tensorflow with GPU support on my Macbook Pro. After downloading cudnn from NVDIA website, these are all the instructions i could find:
OS X
cd <installpath>
export DYLD_LIBRARY_PATH=`pwd`:$DYLD_LIBRARY_PATH
Add <installpath> to your build and link process by adding -I<installpath> to your compile
line and -L<installpath> -lcudnn to your link line.
While, the first step is really straightforward, what is the meaning of second statement and how do I finish the second step? Please advise. Thanks.