Hi I am new to PGI.
In my project I want to compile .cu files into cpp files first, then use g++ later on. When I was using nvcc, I could do the following:
nvcc -cuda -arch=sm_20 a.cu -o a.cpp
g++ -L/usr/local/cuda/lib64/ -lcuda -lcudart a.cpp -o a
However, I am not sure how to achieve this with pgCC compiler. Could anybody help?