Files
clang-p2996/flang/test/Semantics/OpenMP/taskloop01.f90
Kiran Chandramohan 3323a4bd3d [Flang][OpenMP] NFC: Remove omp prefix of test files in OpenMP Semantics
For tests in the OpenMP sub-directory the `omp` prefix is removed.
2023-02-25 11:21:38 +00:00

24 lines
449 B
Fortran

! RUN: %python %S/../test_errors.py %s %flang -fopenmp
! OpenMP Version 4.5
! 2.9.2 taskloop Construct
subroutine parallel_work
integer i
integer j
!$omp taskgroup
!$omp task
call long_running_task()
!$omp end task
!$omp taskloop private(j) grainsize(500) nogroup
do i=1,10000
do j=1,i
call loop_body(i, j)
end do
end do
!$omp end taskloop
!$omp end taskgroup
end subroutine parallel_work