74 lines
2.3 KiB
Fortran
74 lines
2.3 KiB
Fortran
! { dg-do run }
|
|
|
|
integer, allocatable :: a, b(:), c(:,:)
|
|
logical :: l
|
|
if (allocated (a) .or. allocated (b) .or. allocated (c)) stop 1
|
|
|
|
!$omp parallel private (a, b, c, l)
|
|
l = .false.
|
|
if (allocated (a) .or. allocated (b) .or. allocated (c)) stop 2
|
|
|
|
!$omp single
|
|
allocate (a, b(6:9), c(3, 8:9))
|
|
a = 4
|
|
b = 5
|
|
c = 6
|
|
!$omp end single copyprivate (a, b, c)
|
|
|
|
if (.not.allocated (a)) stop 3
|
|
if (.not.allocated (b) .or. size (b) /= 4) stop 4
|
|
if (lbound (b, 1) /= 6 .or. ubound (b, 1) /= 9) stop 5
|
|
if (.not.allocated (c) .or. size (c) /= 6) stop 6
|
|
if (size (c, 1) /= 3 .or. size (c, 2) /= 2) stop 7
|
|
if (lbound (c, 1) /= 1 .or. ubound (c, 1) /= 3) stop 8
|
|
if (lbound (c, 2) /= 8 .or. ubound (c, 2) /= 9) stop 9
|
|
if (a /= 4 .or. any (b /= 5) .or. any (c /= 6)) stop 10
|
|
|
|
!$omp single
|
|
deallocate (a, b, c)
|
|
if (allocated (a) .or. allocated (b) .or. allocated (c)) stop 11
|
|
allocate (a, b(0:4), c(3, 2:7))
|
|
a = 1
|
|
b = 2
|
|
c = 3
|
|
!$omp end single copyprivate (a, b, c)
|
|
|
|
if (.not.allocated (a)) stop 12
|
|
if (.not.allocated (b) .or. size (b) /= 5) stop 13
|
|
if (lbound (b, 1) /= 0 .or. ubound (b, 1) /= 4) stop 14
|
|
if (.not.allocated (c) .or. size (c) /= 18) stop 15
|
|
if (size (c, 1) /= 3 .or. size (c, 2) /= 6) stop 16
|
|
if (lbound (c, 1) /= 1 .or. ubound (c, 1) /= 3) stop 17
|
|
if (lbound (c, 2) /= 2 .or. ubound (c, 2) /= 7) stop 18
|
|
if (a /= 1 .or. any (b /= 2) .or. any (c /= 3)) stop 19
|
|
|
|
!$omp single
|
|
l = .true.
|
|
deallocate (a, b, c)
|
|
if (allocated (a) .or. allocated (b) .or. allocated (c)) stop 20
|
|
allocate (a, b(2:6), c(3:5, 3:8))
|
|
a = 7
|
|
b = 8
|
|
c = 9
|
|
!$omp end single copyprivate (a, b, c)
|
|
|
|
if (.not.allocated (a)) stop 21
|
|
if (.not.allocated (b) .or. size (b) /= 5) stop 22
|
|
if (l) then
|
|
if (lbound (b, 1) /= 2 .or. ubound (b, 1) /= 6) stop 23
|
|
else
|
|
if (lbound (b, 1) /= 0 .or. ubound (b, 1) /= 4) stop 24
|
|
end if
|
|
if (.not.allocated (c) .or. size (c) /= 18) stop 25
|
|
if (size (c, 1) /= 3 .or. size (c, 2) /= 6) stop 26
|
|
if (l) then
|
|
if (lbound (c, 1) /= 3 .or. ubound (c, 1) /= 5) stop 27
|
|
if (lbound (c, 2) /= 3 .or. ubound (c, 2) /= 8) stop 28
|
|
else
|
|
if (lbound (c, 1) /= 1 .or. ubound (c, 1) /= 3) stop 29
|
|
if (lbound (c, 2) /= 2 .or. ubound (c, 2) /= 7) stop 30
|
|
end if
|
|
if (a /= 7 .or. any (b /= 8) .or. any (c /= 9)) stop 31
|
|
|
|
!$omp end parallel
|
|
end
|