-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues with installing/running CUDA back-end #53
Comments
Hi there! Try |
Hi Anders, Thanks for getting back to me so quickly. |
Maybe you could try to inject som Are you running |
I'm not using I've tried replacing
I found out that I need to register with NVIDIA to download the missing library and put it there manually. Found it here: BVLC/caffe#1325 I did that and the error I'm getting now is this
|
Great job getting it working, though I'm still uncertain why setting Anyway, your last problem is probably caused by a mismatching version of cuDNN. I think you have installed cuDNN v5 RC. If so, you should checkout the cudnn5 branch of CUDArray. When v5 is no longer a release candidate, the cudnn5 branch will be merged to master. |
Ok, I've done that. It seems to have installed ok. But the Neural Artistic Style still won't run on my GPU. Still says |
My pleasure :) For the last problem, make sure your |
Hello,have you solved this problem? @jacobjelen |
Hi, I've been stuck on this for a while [noob]
I have installed CUDA from Nvidia website. I'm trying to use CUDArray to run your neural_artistic_style algorithm using my GPU. On the CPU it works fine (super slow, but works)
At the CUDArray installation I set the environment variables, but when I do
make
i get this messagenvcc -gencode arch=compute_20,code=sm_20 -gencode arch=compute_20,code=compute_20 -gencode arch=compute_30,code=sm_30 -gencode arch=compute_30,code=compute_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_35,code=compute_35 -O3 --compiler-options '-DCUDNN_ENABLED -O3 -fPIC -Wall -Wfatal-errors' --ftz=true --prec-div=false -prec-sqrt=false --fmad=true -I./include -I/usr/local/cuda/include -c -o src/nnet/pool_b01.o src/nnet/pool_b01.cu make: nvcc: No such file or directory make: *** [src/nnet/pool_b01.o] Error 1
I have found the nvcc file at usr/local/cuda/bin/. I've also tried
LD_LIBRARY_PATH='/usr/local/cuda/bin/'
before doingmake
but that didn't help either.Any tips? What am I doing wrong?
Thanks a lot!
The text was updated successfully, but these errors were encountered: