mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
16 lines
205 B
C
16 lines
205 B
C
/*
|
|
* @@name: affinity.1c
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: yes
|
|
* @@expect: success
|
|
*/
|
|
void work();
|
|
void main()
|
|
{
|
|
#pragma omp parallel proc_bind(spread) num_threads(4)
|
|
{
|
|
work();
|
|
}
|
|
}
|