mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-03 01:59:35 -06:00
11 lines
141 B
Common Lisp
11 lines
141 B
Common Lisp
|
|
#ifndef OFFSET
|
|
#define OFFSET 0
|
|
#endif
|
|
|
|
__kernel void hello(__global int * out)
|
|
{
|
|
size_t tid = get_global_id(0);
|
|
out[tid] = tid + OFFSET;
|
|
}
|