blob: c5037478200782b70281347bc5dfacb4eb344fd6 [file] [log] [blame]
Peter Collingbourneced76712010-12-01 03:15:31 +00001/* 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))