mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 23:22:11 +01:00
27 lines
534 B
Fortran
27 lines
534 B
Fortran
! @@name: ordered.2f
|
|
! @@type: F-fixed
|
|
! @@compilable: no
|
|
! @@linkable: no
|
|
! @@expect: failure
|
|
SUBROUTINE WORK(I)
|
|
INTEGER I
|
|
END SUBROUTINE WORK
|
|
|
|
SUBROUTINE ORDERED_WRONG(N)
|
|
INTEGER N
|
|
|
|
INTEGER I
|
|
!$OMP DO ORDERED
|
|
DO I = 1, N
|
|
! incorrect because an iteration may not execute more than one
|
|
! ordered region
|
|
!$OMP ORDERED
|
|
CALL WORK(I)
|
|
!$OMP END ORDERED
|
|
|
|
!$OMP ORDERED
|
|
CALL WORK(I+1)
|
|
!$OMP END ORDERED
|
|
END DO
|
|
END SUBROUTINE ORDERED_WRONG
|