================
@@ -0,0 +1,46 @@
+//===----------------------------------------------------------------------===//
+//
+// 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/workitem/clc_get_global_linear_id.h"
+#include "clc/workitem/clc_get_global_size.h"
+#include "clc/workitem/clc_get_group_id.h"
+#include "clc/workitem/clc_get_local_id.h"
+#include "clc/workitem/clc_get_local_size.h"
+#include "clc/workitem/clc_get_work_dim.h"
+
+static size_t get_global_id_no_offset(uint dim) {
+  return __clc_get_group_id(dim) * __clc_get_local_size(dim) +
----------------
arsenm wrote:

Actually I think I need to split the implementation of __clc_get_local_size to 
not be the same as __clc_get_enqueued_local_size

https://github.com/llvm/llvm-project/pull/184800
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to