2016-07-23 01:24:20 +08:00
|
|
|
#include <clc/clc.h>
|
|
|
|
|
2018-02-23 15:37:01 +08:00
|
|
|
#if __clang_major__ >= 7
|
|
|
|
#define CONST_AS __attribute__((address_space(4)))
|
|
|
|
#else
|
|
|
|
#define CONST_AS __attribute__((address_space(2)))
|
|
|
|
#endif
|
|
|
|
|
2017-10-02 04:11:46 +08:00
|
|
|
_CLC_DEF uint get_work_dim(void)
|
2016-07-23 01:24:20 +08:00
|
|
|
{
|
2018-02-23 15:37:01 +08:00
|
|
|
CONST_AS uint * ptr =
|
|
|
|
(CONST_AS uint *) __builtin_amdgcn_implicitarg_ptr();
|
2016-07-23 01:24:20 +08:00
|
|
|
return ptr[0];
|
|
|
|
}
|