You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
488 B
27 lines
488 B
! RUN: %S/test_errors.sh %s %t %f18 -fopenmp
|
|
! XFAIL: *
|
|
|
|
! OpenMP Version 4.5
|
|
! 2.9.2 taskloop Construct
|
|
! Assert fail for correct test case.
|
|
|
|
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
|