blob: 4a3ff0ef3a75f128fc22d302b28fdfd1f8a6ecc0 [file] [log] [blame]
type t
integer, allocatable :: A(:,:)
end type t
type(t), allocatable :: b(:)
!$acc update host(b)
!$acc update host(b(:))
!$acc update host(b(1)%A)
!$acc update host(b(1)%A(:,:))
end