summaryrefslogtreecommitdiffstats
path: root/tests/cuda/cuda-compile.cu
blob: 35387cd2019d954d76548443380dc1942761a4d2 (plain)
1
2
3
4
5
6
7
//TEST(smoke):COMPILE: -pass-through nvrtc -target ptx -entry hello tests/cuda/cuda-compile.cu

__global__ 
void hello(char *a, int *b) 
{
	a[threadIdx.x] += b[threadIdx.x];
}