Proto
Proto_cuda.H
1 #ifndef __PROTO_CUDA_HEADER__
2 #define __PROTO_CUDA_HEADER__
3 
4 
5 #ifdef PROTO_CUDA
6 
7 #define CUDA_DECORATION __host__ __device__
8 #define CUDA_KERNEL __global__
9 
10 #else
11 
12 
13 #define CUDA_DECORATION /*__host__ __device__ */
14 #define CUDA_KERNEL /* __global__ */
15 
16 #endif
17 
18 
19 //#include "WriteBoxData.H"
20 #endif