blob: 3add9b64f0576f41ee24d55265ca5978b0145d6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <clc/clc.h>
#if __clang_major__ >= 8
#define CONST_AS __constant
#elif __clang_major__ >= 7
#define CONST_AS __attribute__((address_space(4)))
#else
#define CONST_AS __attribute__((address_space(2)))
#endif
_CLC_DEF uint get_work_dim(void)
{
CONST_AS uint * ptr =
(CONST_AS uint *) __builtin_amdgcn_implicitarg_ptr();
return ptr[0];
}
|