summaryrefslogtreecommitdiffstats
path: root/libclc/amdgcn/lib/workitem/get_global_offset.cl
blob: 0a87cd23f1f8151034ee5b00872a3ec37763e6c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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 size_t get_global_offset(uint dim)
{
	CONST_AS uint * ptr =
		(CONST_AS uint *) __builtin_amdgcn_implicitarg_ptr();
	if (dim < 3)
		return ptr[dim + 1];
	return 0;
}
OpenPOWER on IntegriCloud