blob: 2289615a6d462236df583167f5557f0d3c55b92b [file] [log] [blame]
#include <clc/clc.h>
#if __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_size(uint dim)
{
CONST_AS uint * ptr =
(CONST_AS uint *) __builtin_amdgcn_dispatch_ptr();
if (dim < 3)
return ptr[3 + dim];
return 1;
}