summaryrefslogtreecommitdiffstats
path: root/libclc/r600/lib/workitem/get_global_offset.cl
blob: b38ae3377570604a1b322779818f3abd3b2cf793 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <clc/clc.h>

_CLC_DEF uint get_global_offset(uint dim)
{
	__attribute__((address_space(7))) uint * ptr =
		(__attribute__((address_space(7))) uint *)
		__builtin_r600_implicitarg_ptr();
	if (dim < 3)
		return ptr[dim + 1];
	return 0;
}
OpenPOWER on IntegriCloud