mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
25 lines
491 B
Fortran
25 lines
491 B
Fortran
! @@name: collapse.1f
|
|
! @@type: F-fixed
|
|
! @@compilable: yes
|
|
! @@linkable: no
|
|
! @@expect: success
|
|
|
|
subroutine sub(a)
|
|
|
|
real a(*)
|
|
integer kl, ku, ks, jl, ju, js, il, iu, is
|
|
common /csub/ kl, ku, ks, jl, ju, js, il, iu, is
|
|
integer i, j, k
|
|
|
|
!$omp do collapse(2) private(i,j,k)
|
|
do k = kl, ku, ks
|
|
do j = jl, ju, js
|
|
do i = il, iu, is
|
|
call bar(a,i,j,k)
|
|
enddo
|
|
enddo
|
|
enddo
|
|
!$omp end do
|
|
|
|
end subroutine
|