We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ad3e83 commit 022c91aCopy full SHA for 022c91a
flang/test/Semantics/OpenMP/nested-target.f90
@@ -63,4 +63,15 @@ program main
63
!$omp end target data
64
!$omp end target teams
65
66
+ !$omp target teams map(to:a) map(from:n1,n2)
67
+ !PORTABILITY: If TARGET TEAMS DISTRIBUTE PARALLEL DO directive is nested inside TARGET region, the behaviour is unspecified
68
+ !$omp target teams distribute parallel do
69
+ do i=1, n1
70
+ do j=1, n2
71
+ res((i-1)*10+j) = i*j
72
+ end do
73
74
+ !$omp end target teams distribute parallel do
75
+ !$omp end target teams
76
+
77
end program main
0 commit comments