Home
last modified time | relevance | path

Searched refs:threads_per_go (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_barrier.cpp64 if (threads_per_go > 4) { in computeVarsForN()
66 threads_per_go = threads_per_go >> 1; in computeVarsForN()
69 threads_per_go = threads_per_go >> 1; in computeVarsForN()
72 if (threads_per_go == 0) in computeVarsForN()
73 threads_per_go = 1; in computeVarsForN()
76 if (n % threads_per_go) in computeVarsForN()
93 if (n % threads_per_go) in computeVarsForN()
114 threads_per_go = n / num_gos; in computeGo()
116 threads_per_go++; in computeGo()
118 threads_per_go++; in computeGo()
[all …]
H A Dkmp_barrier.h101 size_t KMP_ALIGN_CACHE threads_per_go; variable