Sign in
llvm
/
llvm-project
/
libclc
/
4c9bc8c2affa06b88ec2887f9c2f24548ac64abf
/
.
/
ptx-nvidiacl
/
lib
/
workitem
/
get_local_id.cl
blob: a6770f2b9155709231e3d28c75c276f7de91699e [
file
] [
log
] [
blame
]
#
include
<
clc
/
clc
.
h
>
_CLC_DEF _CLC_OVERLOAD size_t get_local_id
(
uint dim
)
{
switch
(
dim
)
{
case
0
:
return __nvvm_read_ptx_sreg_tid_x
(
)
;
case
1
:
return __nvvm_read_ptx_sreg_tid_y
(
)
;
case
2
:
return __nvvm_read_ptx_sreg_tid_z
(
)
;
default
:
return
0
;
}
}