[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;
----------------
josemonsalve2 wrote:
Any reason you prefer to define iteration variables here rather than in the loop?
https://github.com/llvm/llvm-project/pull/130751
More information about the Openmp-commits
mailing list