Tagged Questions
5
votes
2answers
3k views
CUDA compiler (nvcc) macro
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 ...
1
vote
2answers
163 views
Pass preprocessing variable to NVCC for compiling CUDA?
when I compile my CUDA code with NVCC and I have already defined a preprocessing variable in the code, e.g. #define DEBUG_OUTPUT 0, is there a way to overwrite such a variable on the fly when ...
1
vote
1answer
280 views
cuda code #define error, expected a “)”
in the following code, if I bring the #define N 65536 above the #if FSIZE, then I get the following error:
#if FSIZE==1
__global__ void compute_sum1(float *a, float *b, float *c, int N)
{
#define N ...