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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
|
module m
integer a, b
end module m
subroutine f1
use m
!$omp scan inclusive (a) ! { dg-error "Unexpected ..OMP SCAN at .1. outside loop construct with 'inscan' REDUCTION clause" }
!$omp scan exclusive (b) ! { dg-error "Unexpected ..OMP SCAN at .1. outside loop construct with 'inscan' REDUCTION clause" }
end
subroutine f2 (c, d, e, f)
use m
implicit none
integer i, l, c(*), d(*), e(64), f(64)
l = 1
!$omp do reduction (inscan, +: a) reduction (+: b) ! { dg-error "'inscan' and non-'inscan' 'reduction' clauses on the same construct" }
do i = 1, 64
block
b = b + 1
a = a + c(i)
end block
!$omp scan inclusive (a)
d(i) = a
end do
!$omp do reduction (+: a) reduction (inscan, +: b) ! { dg-error "'inscan' and non-'inscan' 'reduction' clauses on the same construct" }
do i = 1, 64
block
a = a + 1
b = b + c(i)
end block
!$omp scan inclusive (b)
d(i) = b
end do
!$omp do reduction (inscan, +: e)
do i = 1, 64
block
e(1) = e(1) + c(i)
e(2) = e(2) + c(i)
end block
!$omp scan inclusive (a, e)
block
d(1) = e(1)
f(2) = e(2)
end block
end do
!$omp do reduction (inscan, +: e(:2)) ! { dg-error "Syntax error in OpenMP variable list" }
do i = 1, 64
block
e(1) = e(1) + c(i)
e(2) = e(2) + c(i)
end block
!$omp scan inclusive (a, e) ! { dg-error "outside loop construct with 'inscan' REDUCTION clause" }
block
d(1) = e(1)
f(2) = e(2)
end block
end do
!$omp do reduction (inscan, +: a) ordered ! { dg-error "ORDERED clause specified together with 'inscan' REDUCTION clause" }
do i = 1, 64
a = a + c(i)
!$omp scan inclusive (a)
d(i) = a
end do
!$omp do reduction (inscan, +: a) ordered(1) ! { dg-error "ORDERED clause specified together with 'inscan' REDUCTION clause" }
do i = 1, 64
a = a + c(i)
!$omp scan inclusive (a)
d(i) = a
end do
!$omp do reduction (inscan, +: a) schedule(static) ! { dg-error "SCHEDULE clause specified together with 'inscan' REDUCTION clause" }
do i = 1, 64
a = a + c(i)
!$omp scan inclusive (a)
d(i) = a
end do
!$omp do reduction (inscan, +: a) schedule(static, 2) ! { dg-error "SCHEDULE clause specified together with 'inscan' REDUCTION clause" }
do i = 1, 64
a = a + c(i)
!$omp scan inclusive (a)
d(i) = a
end do
!$omp do reduction (inscan, +: a) schedule(nonmonotonic: dynamic, 2) ! { dg-error "SCHEDULE clause specified together with 'inscan' REDUCTION clause" }
do i = 1, 64
a = a + c(i)
!$omp scan inclusive (a)
d(i) = a
end do
end
subroutine f3 (c, d)
use m
implicit none
integer i, c(64), d(64)
!$omp teams reduction (inscan, +: a)
! { dg-error "'inscan' REDUCTION clause on construct other than DO, SIMD, DO SIMD, PARALLEL DO, PARALLEL DO SIMD" "" { target *-*-* } .-1 }
! ...
!$omp end teams
!$omp scope reduction (inscan, +: a)
! { dg-error "'inscan' REDUCTION clause on construct other than DO, SIMD, DO SIMD, PARALLEL DO, PARALLEL DO SIMD" "" { target *-*-* } .-1 }
! ...
!$omp end scope
!$omp target parallel do reduction (inscan, +: a) map (c, d)
! { dg-error "'inscan' REDUCTION clause on construct other than DO, SIMD, DO SIMD, PARALLEL DO, PARALLEL DO SIMD" "" { target *-*-* } .-1 }
do i = 1, 64
d(i) = a
!$omp scan exclusive (a)
a = a + c(i)
end do
!$omp teams
!$omp distribute parallel do reduction (inscan, +: a)
! { dg-error "'inscan' REDUCTION clause on construct other than DO, SIMD, DO SIMD, PARALLEL DO, PARALLEL DO SIMD" "" { target *-*-* } .-1 }
do i = 1, 64
d(i) = a
!$omp scan exclusive (a)
a = a + c(i)
end do
!$omp end teams
!$omp distribute parallel do simd reduction (inscan, +: a)
! { dg-error "'inscan' REDUCTION clause on construct other than DO, SIMD, DO SIMD, PARALLEL DO, PARALLEL DO SIMD" "" { target *-*-* } .-1 }
do i = 1, 64
d(i) = a
!$omp scan exclusive (a)
a = a + c(i)
end do
end
subroutine f4 (c, d)
use m
implicit none
integer i, c(64), d(64)
!$omp taskloop reduction (inscan, +: a)
! { dg-error "'inscan' REDUCTION clause on construct other than DO, SIMD, DO SIMD, PARALLEL DO, PARALLEL DO SIMD" "" { target *-*-* } .-1 }
do i = 1, 64
d(i) = a
!$omp scan exclusive (a)
a = a + c(i)
end do
end
subroutine f7
use m
implicit none
integer i
!$omp simd reduction (inscan, +: a)
do i = 1, 64
if (i == 23) then ! { dg-error "invalid exit from OpenMP structured block" "" { target c++ } .+1 }
cycle ! { dg-error "invalid branch to/from OpenMP structured block" "" { target c } }
elseif (i == 27) then
goto 123 ! Diagnostic by ME, see scan-7.f90
! { dg-warning "is not in the same block as the GOTO statement" "" { target *-*-* } .-1 }
endif
!$omp scan exclusive (a)
block
123 a = 0 ! { dg-error "jump to label 'l1'" "" { target c++ } }
! { dg-warning "is not in the same block as the GOTO statement" "" { target *-*-* } .-1 }
if (i == 33) then ! { dg-error "invalid exit from OpenMP structured block" "" { target c++ } .+1 }
cycle ! { dg-error "invalid branch to/from OpenMP structured block" "" { target c } }
end if
end block
end do
end
subroutine f8 (c, d, e, f)
use m
implicit none
integer i, c(64), d(64), e(64), f(64)
!$omp do reduction (inscan, +: a, b) ! { dg-error "With INSCAN at .1., expected loop body with ..OMP SCAN between two structured block sequences" }
do i = 1, 64
block
a = a + c(i)
b = b + d(i)
end block
!$omp scan inclusive (a) inclusive (b) ! { dg-error "Unexpected junk after ..OMP SCAN" }
block
e(i) = a
f(i) = b
end block
end do
!$omp do reduction (inscan, +: a, b) ! { dg-error "With INSCAN at .1., expected loop body with ..OMP SCAN between two structured block sequences" }
do i = 1, 64
block
a = a + c(i)
b = b + d(i)
end block
!$omp scan ! { dg-error "Expected INCLUSIVE or EXCLUSIVE clause" }
block
e(i) = a
f(i) = b
end block
end do
end
subroutine f9
use m
implicit none
integer i
!$omp simd reduction (inscan, +: a)
do i = 1, 64
if (i == 23) &
exit ! { dg-error "EXIT statement at .1. terminating ..OMP DO loop" } */
!$omp scan exclusive (a) ! { dg-warning "!.OMP SCAN at .1. with zero executable statements in preceding structured block sequence" }
a = a + 1
end do
end
|