2022-11-04 09:35:42 -07:00

11 lines
217 B
Fortran

! @@name: affinity.4
! @@type: F-free
! @@operation: compile
! @@expect: success
! @@version: omp_4.0
subroutine foo
!$omp parallel num_threads(16) proc_bind(close)
call work()
!$omp end parallel
end subroutine