2021-08-17 09:11:55 -07:00

12 lines
233 B
Fortran

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