llvm-project/offload/test/offloading/fortran/basic-target-parallel-reduction.f90
Robert Imschweiler 33e3384aa8
[offload] Adapt tests to new PluginInterface quoting [NFC] (#180505)
4096cb6017
removed the quotes around PluginInterface
2026-02-09 07:47:04 -06:00

28 lines
625 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
integer :: error = 0
integer :: i
integer :: sum = 0
!$omp target parallel do reduction(+:sum)
do i = 1, 100
sum = sum + i
end do
!$omp end target parallel do
if (sum /= 5050) then
error = 1
endif
print *,"number of errors: ", error
end program main
! CHECK: PluginInterface device {{[0-9]+}} info: Launching kernel {{.*}}
! CHECK: number of errors: 0