2022-11-04 09:35:42 -07:00

18 lines
245 B
C

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