Sign in
fuchsia
/
third_party
/
llvm-project
/
c3fd2a50ba1395b6c2240f6a688c6a1aa975a1fe
/
.
/
libclc
/
r600
/
lib
/
workitem
/
get_local_id.cl
blob: 80fdc344193b605d099589bebbdc7ef27500d10b [
file
] [
log
] [
blame
]
#
include
<
clc
/
clc
.
h
>
_CLC_DEF _CLC_OVERLOAD uint get_local_id
(
uint dim
)
{
switch
(
dim
)
{
case
0
:
return __builtin_r600_read_tidig_x
(
)
;
case
1
:
return __builtin_r600_read_tidig_y
(
)
;
case
2
:
return __builtin_r600_read_tidig_z
(
)
;
default
:
return
1
;
}
}