Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/libgomp/testsuite/libgomp.oacc-fortran/pr84028.f90
2023-03-06 14:48:14 +01:00

29 lines
549 B
Fortran

! { dg-do run }
! { dg-additional-options "-Wopenacc-parallelism" } for testing/documenting
! aspects of that functionality.
program foo
integer :: a(3,3,3), ll, lll
a = 1
!$acc parallel num_gangs(1) num_workers(2)
! { dg-warning "region is worker partitioned but does not contain worker partitioned code" "" { target *-*-* } .-1 }
if (any(a(1:3,1:3,1:3).ne.1)) STOP 1
do ll=1,3
!$acc loop vector
do lll=1,3
a(1,ll,lll) = 2
enddo
enddo
if (a(1,1,1).ne.2) STOP 2
!$acc end parallel
end program foo