mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
11 lines
208 B
Fortran
11 lines
208 B
Fortran
! { dg-do run }
|
|
! { dg-set-target-env-var OMP_CANCELLATION "true" }
|
|
|
|
use omp_lib
|
|
|
|
!$omp parallel num_threads(32)
|
|
!$omp cancel parallel
|
|
if (omp_get_cancellation ()) STOP 1
|
|
!$omp end parallel
|
|
end
|