Peter Collingbourne | ced7671 | 2010-12-01 03:15:31 +0000 | [diff] [blame] | 1 | /* Minimal declarations for CUDA support. Testing purposes only. */ |
2 | |||||
3 | #define __constant__ __attribute__((constant)) | ||||
4 | #define __device__ __attribute__((device)) | ||||
5 | #define __global__ __attribute__((global)) | ||||
6 | #define __host__ __attribute__((host)) | ||||
7 | #define __shared__ __attribute__((shared)) |