aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.fortran/order-reproducible-2.f90
blob: 9d7202061443e0d8c11c0f422db8ad8c46008158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
! { dg-additional-sources my-usleep.c }
! { dg-prune-output "command-line option '-fintrinsic-modules-path=.*' is valid for Fortran but not for C" }
program main
  implicit none
  interface
    subroutine usleep(t) bind(C, name="my_usleep")
      use iso_c_binding
      integer(c_int), value :: t
    end subroutine
  end interface

  integer :: a(128)
  integer :: i

  !$omp parallel num_threads(8)
    !$omp barrier
    !$omp do schedule (dynamic, 2) order(reproducible:concurrent)
    do i = 1, 128
      a(i) = i
      if (i == 1) then
        call usleep (20)
      else if (i == 18) then
        call usleep (40)
      end if
    end do
    !$omp end do nowait
    !$omp do schedule (dynamic, 2) order(reproducible:concurrent)
    do i = 1, 128
      a(i) = a(i) + i
    end do
    !$omp end do nowait
  !$omp end parallel
  do i = 1, 128
    if (a(i) /= 2 * i) &
      stop
  end do
end program main