reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/openmp/runtime/src/kmp_affinity.cpp
 5102     int big_nth = (chunk + 1) * big_cores;
 5104       coreID = tid / (chunk + 1);
 5105       threadID = (tid % (chunk + 1)) % __kmp_nth_per_core;
 5107       coreID = (tid - big_cores) / chunk;
 5108       threadID = ((tid - big_cores) % chunk) % __kmp_nth_per_core;