[libclc] libclc: Implement get_global_linear_id and get_local_linear_id (PR #184800)

Wenju He via cfe-commits cfe-commits at lists.llvm.org
Thu Mar 5 14:46:52 PST 2026


================
@@ -0,0 +1,15 @@
+//===----------------------------------------------------------------------===//
+//
+// 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/opencl-base.h>
+
+_CLC_OVERLOAD _CLC_DEF _CLC_CONST size_t get_local_linear_id() {
+  return (get_local_id(2) * get_local_size(1) + get_local_id(1)) *
----------------
wenju-he wrote:

should call __clc_get_local_linear_id

https://github.com/llvm/llvm-project/pull/184800


More information about the cfe-commits mailing list