summaryrefslogtreecommitdiff
path: root/kernels/compiler_get_sub_group_local_id.cl
blob: 0a28285f1f87680afe779c504b000fae0da91708 (plain)
1
2
3
4
5
6
7
8
__kernel void compiler_get_sub_group_local_id(global int *dst)
{
  int i = get_global_id(0);
  if (i == 0)
    dst[0] = get_max_sub_group_size();

  dst[i+1] = get_sub_group_local_id();
}