Hi,
I am trying to compile and CUDA FORTRAN code however I got some rather odd messages.
Running on a Cray machine, among my modules loaded we find :
cudatoolkit/5.5.20-1.0402.7700.8.1
craype-accel-nvidia35
PrgEnv-pgi/4.2.34
Now, I compile the code :
pgf90 -c -O3 -r8 -Mpreprocess -Mcuda=cuda5.0,cc30 -ta=tesla,cc30 -Minfo=accel cuf_code.cuf -o cuf_code.o
And this is what I get:
pgf90-Error-CUDA version 5.0 is not available in this installation
However, nvcc does not agree with that:
nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2013 NVIDIA Corporation
Built on Tue_Jul__9_18:28:15_PDT_2013
Cuda compilation tools, release 5.5, V5.5.0
What is going on here?
Thank you very much
Luiceur