23 lines · plain
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#include <clc/opencl/workitem/get_local_id.h>10 11_CLC_DEF _CLC_OVERLOAD uint get_local_id(uint dim) {12 switch (dim) {13 case 0:14 return __builtin_r600_read_tidig_x();15 case 1:16 return __builtin_r600_read_tidig_y();17 case 2:18 return __builtin_r600_read_tidig_z();19 default:20 return 1;21 }22}23