summaryrefslogtreecommitdiffstats
path: root/libclc/amdgcn/lib/workitem/get_global_size.cl
blob: c1e3894e4c87929ac728fc5bb60630d134627928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <clc/clc.h>

uint __clc_amdgcn_get_global_size_x(void) __asm("llvm.r600.read.global.size.x");
uint __clc_amdgcn_get_global_size_y(void) __asm("llvm.r600.read.global.size.y");
uint __clc_amdgcn_get_global_size_z(void) __asm("llvm.r600.read.global.size.z");

_CLC_DEF size_t get_global_size(uint dim)
{
	switch (dim) {
	case 0: return __clc_amdgcn_get_global_size_x();
	case 1: return __clc_amdgcn_get_global_size_y();
	case 2: return __clc_amdgcn_get_global_size_z();
	default: return 1;
	}
}
OpenPOWER on IntegriCloud