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