2022-04-18 15:02:25 -07:00

18 lines
238 B
C

/*
* @@name: nthrs_dynamic.2
* @@type: C
* @@compilable: yes
* @@linkable: yes
* @@expect: success
*/
#include <omp.h>
int main()
{
omp_set_dynamic(1);
#pragma omp parallel num_threads(10)
{
/* do work here */
}
return 0;
}