mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
24 lines
422 B
Fortran
24 lines
422 B
Fortran
! { dg-do run }
|
|
! { dg-set-target-env-var OMP_CANCELLATION "true" }
|
|
|
|
use omp_lib
|
|
|
|
if (omp_get_cancellation ()) then
|
|
!$omp parallel num_threads(32)
|
|
!$omp sections
|
|
!$omp cancel sections
|
|
STOP 1
|
|
!$omp section
|
|
!$omp cancel sections
|
|
STOP 2
|
|
!$omp section
|
|
!$omp cancel sections
|
|
STOP 3
|
|
!$omp section
|
|
!$omp cancel sections
|
|
STOP 4
|
|
!$omp end sections
|
|
!$omp end parallel
|
|
end if
|
|
end
|