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`.
41 lines
818 B
Fortran
41 lines
818 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
|