Files
vortex/tests/opencl/tid/kernel.cl
2023-09-20 17:31:14 -07:00

6 lines
121 B
Common Lisp

__kernel void tid()
{
__global int *out = (__global int *)0xc0000000;
int gid = get_global_id(0);
out[gid] = gid;
}