1 ! This test exercises combined directives.
6 integer, parameter :: n
= 32
15 !$acc parallel loop copy (a(1:n)) copy (b(1:n))
22 if (a(i
) .ne
. 3.0) call abort
24 if (b(i
) .ne
. 2.0) call abort
27 !$acc kernels loop copy (a(1:n)) copy (b(1:n))
34 if (a(i
) .ne
. 6.0) call abort
36 if (b(i
) .ne
. 3.0) call abort