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