summaryrefslogtreecommitdiff
path: root/backend/kernels/get_global_id.cl
blob: 90537630de2335f3403f140a94e71fb78d0aaa13 (plain)
1
2
3
4
5
6
7
8
9
10
#include "stdlib.h"

__kernel void test_global_id(__global int *dst, __global int *p)
{
  short hop = get_local_id(0);
  dst[get_global_id(0)] = hop;
  p[get_global_id(0)] = get_local_id(0);
}