OpenMP-Examples/sources/Example_affinity.5.c
2020-06-26 07:54:45 -07:00

18 lines
238 B
C

/*
* @@name: affinity.5c
* @@type: C
* @@compilable: yes
* @@linkable: yes
* @@expect: success
* @@version: omp_4.0
*/
void work();
int main()
{
#pragma omp parallel proc_bind(master) num_threads(4)
{
work();
}
return 0;
}