1
0
mirror of https://github.com/OpenMP/Examples.git synced 2025-04-11 00:42:12 +01:00
OpenMP-Examples/sources/Example_affinity.4.f90

11 lines
211 B
Fortran

! @@name: affinity.4f
! @@type: F-free
! @@compilable: yes
! @@linkable: no
! @@expect: success
subroutine foo
!$omp parallel num_threads(16) proc_bind(close)
call work()
!$omp end parallel
end subroutine