omp_set_num_threads – Set upper team size limit ¶Specifies the number of threads used by default in subsequent parallel
sections, if those do not specify a num_threads clause. The
argument of omp_set_num_threads shall be a positive integer.
| Prototype: | void omp_set_num_threads(int num_threads); |
| Interface: | subroutine omp_set_num_threads(num_threads) |
integer, intent(in) :: num_threads |
OMP_NUM_THREADS – Specifies the number of threads to use, omp_get_num_threads – Size of the active team, omp_get_max_threads – Maximum number of threads of parallel region
OpenMP specification v4.5, Section 3.2.1.