summaryrefslogtreecommitdiff
path: root/libclc/ptx-nvidiacl/lib/workitem/get_local_size.cl
blob: 5960d5d7993256b90d8a2e24078771d4c7b33f35 (plain)
1
2
3
4
5
6
7
8
9
10
#include <clc/clc.h>

_CLC_DEF _CLC_OVERLOAD size_t get_local_size(uint dim) {
  switch (dim) {
  case 0:  return __nvvm_read_ptx_sreg_ntid_x();
  case 1:  return __nvvm_read_ptx_sreg_ntid_y();
  case 2:  return __nvvm_read_ptx_sreg_ntid_z();
  default: return 0;
  }
}