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