Searched refs:max_active_levels (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_ftn_entry.h603 // Somewhat arbitrarily decide where to get a value for max_active_levels
604 int max_active_levels = get__max_active_levels(thread); local
605 if (max_active_levels == 1)
606 max_active_levels = KMP_MAX_ACTIVE_LEVELS_LIMIT;
607 set__max_active_levels(thread, (KMP_DEREF flag) ? max_active_levels : 1);
H A Dkmp_stub.cpp99 void omp_set_max_active_levels(omp_int_t max_active_levels) { i; } argument
H A Dkmp_runtime.cpp1649 master_th->th.th_current_task->td_icvs.max_active_levels) {
1926 master_th->th.th_current_task->td_icvs.max_active_levels));
2652 /* Changes max_active_levels */
2653 void __kmp_set_max_active_levels(int gtid, int max_active_levels) { argument
2656 KF_TRACE(10, ("__kmp_set_max_active_levels: new max_active_levels for thread "
2658 gtid, max_active_levels));
2661 // validate max_active_levels
2662 if (max_active_levels < 0) {
2663 KMP_WARNING(ActiveLevelsNegative, max_active_levels);
2669 "max_active_levels fo
[all...]
H A Dkmp.h1814 int max_active_levels; /* internal control for max_active_levels */ member in struct:kmp_internal_control
2039 (((xthread)->th.th_current_task->td_icvs.max_active_levels) = (xval))
2042 ((xthread)->th.th_current_task->td_icvs.max_active_levels)
2962 // max_active_levels for nested parallelism enabled by default via
H A Dkmp_csupport.cpp1864 void ompc_set_max_active_levels(int max_active_levels) { argument
1869 __kmp_set_max_active_levels(__kmp_entry_gtid(), max_active_levels); local

Completed in 267 milliseconds