blob: c5037478200782b70281347bc5dfacb4eb344fd6 (
plain)
1
2
3
4
5
6
7
|
/* Minimal declarations for CUDA support. Testing purposes only. */
#define __constant__ __attribute__((constant))
#define __device__ __attribute__((device))
#define __global__ __attribute__((global))
#define __host__ __attribute__((host))
#define __shared__ __attribute__((shared))
|