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