[Openmp-commits] [openmp] Update OpenMP runtime to adopt taskgraph clause from 6.0 Specs (PR #130751)
Jose Manuel Monsalve Diaz via Openmp-commits
openmp-commits at lists.llvm.org
Wed Mar 12 14:51:46 PDT 2025
================
@@ -5454,25 +5447,86 @@ bool __kmpc_omp_has_task_team(kmp_int32 gtid) {
#if OMPX_TASKGRAPH
// __kmp_find_tdg: identify a TDG through its ID
-// gtid: Global Thread ID
// tdg_id: ID of the TDG
// returns: If a TDG corresponding to this ID is found and not
// its initial state, return the pointer to it, otherwise nullptr
static kmp_tdg_info_t *__kmp_find_tdg(kmp_int32 tdg_id) {
kmp_tdg_info_t *res = nullptr;
+ kmp_int32 i = 0;
if (__kmp_max_tdgs == 0)
return res;
if (__kmp_global_tdgs == NULL)
__kmp_global_tdgs = (kmp_tdg_info_t **)__kmp_allocate(
sizeof(kmp_tdg_info_t *) * __kmp_max_tdgs);
- if ((__kmp_global_tdgs[tdg_id]) &&
- (__kmp_global_tdgs[tdg_id]->tdg_status != KMP_TDG_NONE))
- res = __kmp_global_tdgs[tdg_id];
+ for (i = 0; i < __kmp_max_tdgs; i++) {
+ if (__kmp_global_tdgs[i] && __kmp_global_tdgs[i]->tdg_id == tdg_id) {
+ if (__kmp_global_tdgs[i]->tdg_status != KMP_TDG_NONE) {
----------------
josemonsalve2 wrote:
Single line if should not use brackets to keep it consistent with the rest of the file
https://github.com/llvm/llvm-project/pull/130751
More information about the Openmp-commits
mailing list