mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 16:32:11 +01:00
16 lines
208 B
C
16 lines
208 B
C
/*
|
|
* @@name: affinity.2
|
|
* @@type: C
|
|
* @@operation: compile
|
|
* @@expect: success
|
|
* @@version: omp_4.0
|
|
*/
|
|
void work();
|
|
void foo()
|
|
{
|
|
#pragma omp parallel num_threads(16) proc_bind(spread)
|
|
{
|
|
work();
|
|
}
|
|
}
|