Open s-bl opened 7 years ago
You need newer CUDA, no? Or an older GCC...
#error -- unsupported GNU version! gcc versions later than 4.9 are not supported!
@lenck Thanks for the suggestion.
>> !which gcc
/usr/bin/gcc
$ /usr/bin/gcc --version
gcc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4
I have an older gcc version anyway, but also not much control over the environment.
Sry, my last comment was not entirely correct and maybe a little bit confusing (maybe I was a little bit confused). My local machine has gcc/g++-4.8 installed while on the cluster (with the gpus) gcc/g++-5.4 is installed which causes the compile error. I was able to compile matconvnet locally and with gpu support but execute it on the cluster.
Just many random suggestion, not sure if any will be useful:
Hey,
i can't get matconvnet compiled with gpu support. Maybe someone can point me in the right direction
Setup:
I use the following command to launch matlab
LD_LIBRARY_PATH=/home/software/cuda64-7.5/lib64:$LD_LIBRARY_PATH LD_PRELOAD="/usr/lib/x86_64-linux-gnu/libtiff.so.5" /home/software/matlabR2015b-64/bin/matlab -nodesktop
Compiling with
vl_compilenn('enableGpu', true, 'cudaRoot', '/home/software/cuda64-7.5/', 'verbose', 2)
results in the following error:
compiling with
vl_compilenn('enableGpu', true, 'cudaMethod', 'nvcc', 'cudaRoot', '/home/software/cuda64-7.5/', 'verbose', 2)
results in
I also tried cuda64-6.5 which results in the same errors.
Thank you in advance and sorry for the somewhat vague title.
s-bl