Files
clang-p2996/flang/test/Semantics/omp-workshare05.f90
Ivan Zhechev 6c1ac141d3 [Flang] Ported test_errors.sh to Python
To enable Flang testing on Windows, shell scripts have to be ported to Python. In this patch the "test_errors.sh" script is ported to python ("test_errors.py"). The RUN line of existing tests was changed to make use of the python script.

Used python regex in place of awk/sed.

Reviewed By: Meinersbur

Differential Revision: https://reviews.llvm.org/D107575
2021-09-06 08:19:42 +00:00

62 lines
1.3 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang -fopenmp
! OpenMP Version 4.5
! 2.7.4 workshare Construct
! Checks for OpenMP Parallel constructs enclosed in Workshare constructs
module workshare_mod
interface assignment(=)
module procedure work_assign
end interface
contains
subroutine work_assign(a,b)
integer, intent(out) :: a
logical, intent(in) :: b(:)
end subroutine work_assign
integer function my_func()
my_func = 10
end function my_func
end module workshare_mod
program omp_workshare
use workshare_mod
integer, parameter :: n = 10
integer :: i, j, a(10), b(10)
integer, pointer :: p
integer, target :: t
logical :: l(10)
real :: aa(n,n), bb(n,n), cc(n,n), dd(n,n), ee(n,n), ff(n,n)
!$omp workshare
!$omp parallel
p => t
a = l
!$omp single
ee = ff
!$omp end single
!$omp end parallel
!ERROR: A worksharing region may not be closely nested inside a worksharing, explicit task, taskloop, critical, ordered, atomic, or master region
!$omp parallel sections
!$omp section
aa = my_func()
!$omp end parallel sections
!$omp parallel do
do i = 1, 10
b(i) = my_func() + i
end do
!$omp end parallel do
!$omp parallel
where (dd .lt. 5) dd = aa * my_func()
!$omp end parallel
!$omp end workshare
end program omp_workshare