2022-04-18 15:02:25 -07:00

18 lines
237 B
C

/*
* @@name: affinity.5
* @@type: C
* @@compilable: yes
* @@linkable: no
* @@expect: success
* @@version: omp_5.1
*/
void work();
int main()
{
#pragma omp parallel proc_bind(primary) num_threads(4)
{
work();
}
return 0;
}