blob: a7f5f59a3702f9d30287a48f893e23d0a53689f1 [file] [log] [blame]
#include <clc/clc.h>
_CLC_DEF _CLC_OVERLOAD size_t get_global_id(uint dim) {
return get_group_id(dim) * get_local_size(dim) + get_local_id(dim);
}