Files
clang-p2996/offload/test/offloading/fortran/basic-target-parallel-reduction.f90
Jan Leyonberg fbc8335311 [MLIR][OpenMP] Add codegen for teams reductions (#133310)
This patch adds the lowering of teams reductions from the omp dialect to
LLVM-IR. Some minor cleanup was done in clang to remove an unused
parameter.
2025-04-07 12:47:16 -04:00

28 lines
627 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