llvm-project/libclc/ptx-nvidiacl/lib/workitem/get_group_id.cl

11 lines
257 B
Common Lisp
Raw Normal View History

#include <clc/clc.h>
_CLC_DEF size_t get_group_id(uint dim) {
2012-01-09 06:09:58 +08:00
switch (dim) {
case 0: return __nvvm_read_ptx_sreg_ctaid_x();
case 1: return __nvvm_read_ptx_sreg_ctaid_y();
case 2: return __nvvm_read_ptx_sreg_ctaid_z();
2012-01-09 06:09:58 +08:00
default: return 0;
}
}