mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 15:12:11 +01:00
11 lines
212 B
Fortran
11 lines
212 B
Fortran
! @@name: affinity.2f
|
|
! @@type: F-free
|
|
! @@compilable: yes
|
|
! @@linkable: no
|
|
! @@expect: success
|
|
subroutine foo
|
|
!$omp parallel num_threads(16) proc_bind(spread)
|
|
call work()
|
|
!$omp end parallel
|
|
end subroutine
|