Is there a #define compiler (nvcc) macro of CUDA which I can use? (Like _WIN32 for Windows and so on.)

I need this for header code that will be common between nvcc and VC++ compilers. I know I can go ahead and define my own and pass it as an argument to the nvcc compiler (-D), but it would be great if there is one already defined.

link|improve this question

62% accept rate
feedback

2 Answers

up vote 6 down vote accepted
__CUDACC__

I don't think it will be that trivial. Check the following thread

http://forums.nvidia.com/index.php?showtopic=32369&st=0&p=179913&#entry179913

link|improve this answer
This is exactly what I was looking for. Thanks! :-) – Ashwin Feb 6 '09 at 4:36
feedback

I know it has been long time now, but you might also find CUDA_ARCH usefull.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.