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