| //===----------------------------------------------------------------------===// |
| // |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #include <clc/opencl/workitem/get_group_id.h> |
| |
| _CLC_DEF _CLC_OVERLOAD size_t get_group_id(uint dim) { |
| switch (dim) { |
| case 0: |
| return __builtin_amdgcn_workgroup_id_x(); |
| case 1: |
| return __builtin_amdgcn_workgroup_id_y(); |
| case 2: |
| return __builtin_amdgcn_workgroup_id_z(); |
| default: |
| return 1; |
| } |
| } |