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

16 lines
207 B
C

/*
* @@name: affinity.4
* @@type: C
* @@operation: compile
* @@expect: success
* @@version: omp_4.0
*/
void work();
void foo()
{
#pragma omp parallel num_threads(16) proc_bind(close)
{
work();
}
}