This PR is one in a series of 3 that aim to add support for explicit member mapping of allocatable components in derived types within OpenMP+Fortran for Flang. This PR provides all of the runtime tests that are currently upstreamable, unfortunately some of the other tests would require linking of the fortran runtime for offload which we currently do not do. But regardless, this is plenty to ensure that the mapping is working in most cases.
40 lines
816 B
Fortran
40 lines
816 B
Fortran
! Offloading test checking interaction of a two 1-D allocatable arrays with a
|
|
! target region while providing the map upper and lower bounds
|
|
! REQUIRES: flang, amdgpu
|
|
|
|
! RUN: %libomptarget-compile-fortran-run-and-check-generic
|
|
program main
|
|
integer, allocatable :: sp_read(:), sp_write(:)
|
|
allocate(sp_read(10))
|
|
allocate(sp_write(10))
|
|
|
|
do i = 1, 10
|
|
sp_read(i) = i
|
|
sp_write(i) = 0
|
|
end do
|
|
|
|
!$omp target map(tofrom:sp_read(2:6)) map(tofrom:sp_write(2:6))
|
|
do i = 1, 10
|
|
sp_write(i) = sp_read(i)
|
|
end do
|
|
!$omp end target
|
|
|
|
do i = 1, 10
|
|
print *, sp_write(i)
|
|
end do
|
|
|
|
deallocate(sp_read)
|
|
deallocate(sp_write)
|
|
end program
|
|
|
|
! CHECK: 0
|
|
! CHECK: 2
|
|
! CHECK: 3
|
|
! CHECK: 4
|
|
! CHECK: 5
|
|
! CHECK: 6
|
|
! CHECK: 0
|
|
! CHECK: 0
|
|
! CHECK: 0
|
|
! CHECK: 0
|