Files
clang-p2996/offload/test/offloading/fortran/target-parallel-do-collapse.f90
Ethan Luis McDonough 8823448807 [Offload] Refactor offload test requirements (#95196)
Many tests in the `offload` project have requirements defined by which
targets are not supported rather than which platforms are supported.
This patch aims to streamline the requirement definitions by adding four
new feature tags: `host`, `gpu`, `amdgpu`, and `nvidiagpu`.
2024-06-29 00:56:18 -05:00

40 lines
889 B
Fortran

! Basic offloading test with a target region
! REQUIRES: flang, amdgpu
! RUN: %libomptarget-compile-fortran-generic
! RUN: env LIBOMPTARGET_INFO=16 %libomptarget-run-generic 2>&1 | %fcheck-generic
program main
use omp_lib
implicit none
integer :: i,j
integer :: array(10,10), errors = 0
do i = 1, 10
do j = 1, 10
array(j, i) = 0
end do
end do
!$omp target parallel do map(from:array) collapse(2)
do i = 1, 10
do j = 1, 10
array( j, i) = i + j
end do
end do
!$omp end target parallel do
do i = 1, 10
do j = 1, 10
if ( array( j, i) .ne. (i + j) ) then
errors = errors + 1
end if
end do
end do
print *,"number of errors: ", errors
end program main
! CHECK: "PluginInterface" device {{[0-9]+}} info: Launching kernel {{.*}}
! CHECK: number of errors: 0