mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
17 lines
346 B
Fortran
17 lines
346 B
Fortran
! @@name: array_sections.3f
|
|
! @@type: F-free
|
|
! @@compilable: yes
|
|
! @@linkable: no
|
|
! @@expect: success
|
|
subroutine foo()
|
|
integer,target :: A(30)
|
|
integer,pointer :: p(:)
|
|
!$omp target data map( A(1:4) )
|
|
p=>A
|
|
!$omp target map( p(8:27) )
|
|
A(3) = 0
|
|
p(9) = 0
|
|
!$omp end target map
|
|
!$omp end target data
|
|
end subroutine
|