OpenMP-Examples/sources/Example_affinity.2c.c
2015-01-13 11:38:24 -08:00

16 lines
202 B
C

/*
* @@name: affinity.2c
* @@type: C
* @@compilable: yes
* @@linkable: no
* @@expect: success
*/
void work();
void foo()
{
#pragma omp parallel num_threads(16) proc_bind(spread)
{
work();
}
}