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

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