Searched refs:new_nth (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_runtime.cpp2585 void __kmp_set_num_threads(int new_nth, int gtid) { argument
2589 KF_TRACE(10, ("__kmp_set_num_threads: new __kmp_nth = %d\n", new_nth));
2592 if (new_nth < 1)
2593 new_nth = 1;
2594 else if (new_nth > __kmp_max_nth)
2595 new_nth = __kmp_max_nth;
2597 KMP_COUNT_VALUE(OMP_set_numthreads, new_nth);
2599 if (thread->th.th_current_task->td_icvs.nproc == new_nth)
2604 set__nproc(thread, new_nth);
2611 (root->r.r_hot_team->t.t_nproc > new_nth)
[all...]
H A Dkmp.h3145 extern void __kmp_set_num_threads(int new_nth, int gtid);

Completed in 262 milliseconds