Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:48:54

0001 #pragma once
0002 
0003 #if defined(__CUDACC__)
0004     #define csg_HD __host__ __device__
0005     #define csg_D  __device__
0006     #define csg_G  __global__
0007     #define csg_C __constant__
0008 #else
0009     #define csg_HD
0010     #define csg_D
0011     #define csg_G
0012     #define csg_C
0013 #endif
0014