mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 08:22:11 +01:00
18 lines
245 B
C
18 lines
245 B
C
/*
|
|
* @@name: nthrs_dynamic.1
|
|
* @@type: C
|
|
* @@operation: link
|
|
* @@expect: success
|
|
* @@version: pre_omp_3.0
|
|
*/
|
|
#include <omp.h>
|
|
int main()
|
|
{
|
|
omp_set_dynamic(0);
|
|
#pragma omp parallel num_threads(10)
|
|
{
|
|
/* do work here */
|
|
}
|
|
return 0;
|
|
}
|