summaryrefslogtreecommitdiff
path: root/offload/test/offloading/fortran/target-map-dtype-multi-explicit-array-member-bounds.f90
blob: 1a4742461f8c27df23e9de28526053d639309d83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
! Offloading test checking interaction of an explicit derived type member
! mapping of two arrays with explicit bounds when mapped to target
! REQUIRES: flang, amdgpu

! RUN: %libomptarget-compile-fortran-run-and-check-generic
program main
    type :: scalar_array
    real(4) :: break_0
    real(4) :: array_x(10)
    real(4) :: break_1
    real(4) :: array_y(10)
    real(4) :: break_3
    end type scalar_array

    type(scalar_array) :: scalar_arr

  do i = 1, 10
    scalar_arr%array_x(i) = i
  end do

  !$omp target map(tofrom:scalar_arr%array_x(3:6), scalar_arr%array_y(3:6))
    do i = 1, 10
      scalar_arr%array_y(i) = scalar_arr%array_x(i)
    end do
  !$omp end target

  print*, scalar_arr%array_y
end program main

!CHECK: 0. 0. 3. 4. 5. 6. 0. 0. 0. 0.