Lines Matching full:reduction
40 #pragma omp parallel master taskloop simd reduction(+:fp) // expected-warning {{variable 'fp' is un… in xxx()
53 #pragma omp parallel master taskloop simd reduction(+:ref) in foobar()
119 #pragma omp parallel master taskloop simd reduction(+:a) // expected-error {{expected addressable r… in S7()
139 #pragma omp parallel master taskloop simd reduction // expected-error {{expected '(' after 'reducti… in tmain()
142 #pragma omp parallel master taskloop simd reduction + // expected-error {{expected '(' after 'reduc… in tmain()
145 …lel master taskloop simd reduction( // expected-error {{expected unqualified-id}} expected-warning… in tmain()
148 #pragma omp parallel master taskloop simd reduction(- // expected-warning {{missing ':' after reduc… in tmain()
151 …el master taskloop simd reduction() // expected-error {{expected unqualified-id}} expected-warning… in tmain()
154 #pragma omp parallel master taskloop simd reduction(*) // expected-warning {{missing ':' after redu… in tmain()
157 …el master taskloop simd reduction(\) // expected-error {{expected unqualified-id}} expected-warnin… in tmain()
160 #pragma omp parallel master taskloop simd reduction(& : argc // expected-error {{expected ')'}} exp… in tmain()
163 #pragma omp parallel master taskloop simd reduction(| : argc, // expected-error {{expected expressi… in tmain()
166 #pragma omp parallel master taskloop simd reduction(|| : argc ? i : argc) // expected-error 2 {{exp… in tmain()
169 …reduction(foo : argc) //omp45-error {{incorrect reduction identifier, expected one of '+', '-', '*… in tmain()
172 #pragma omp parallel master taskloop simd reduction(&& : argc) allocate , allocate(, allocate(omp_d… in tmain()
175 #pragma omp parallel master taskloop simd reduction(^ : T) // expected-error {{'T' does not refer t… in tmain()
178 …reduction(+ : z, a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1… in tmain()
181 …reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in tmain()
184 #pragma omp parallel master taskloop simd reduction(max : h.b) // expected-error {{expected variabl… in tmain()
187 … omp parallel master taskloop simd reduction(+ : ba) // expected-error {{const-qualified variable … in tmain()
190 … omp parallel master taskloop simd reduction(* : ca) // expected-error {{const-qualified variable … in tmain()
193 …reduction(- : da) // expected-error 2 {{const-qualified variable cannot be reduction}} omp52-warni… in tmain()
196 #pragma omp parallel master taskloop simd reduction(^ : fl) // expected-error {{invalid operands to… in tmain()
199 …ma omp parallel master taskloop simd reduction(&& : S2::S2s) // expected-error {{shared variable c… in tmain()
202 …p parallel master taskloop simd reduction(&& : S2::S2sc) // expected-error {{const-qualified varia… in tmain()
205 …allel master taskloop simd reduction(+ : h, k) // expected-error {{threadprivate or thread local v… in tmain()
208 #pragma omp parallel master taskloop simd reduction(+ : o) // expected-error 2 {{no viable overload… in tmain()
211 …ter taskloop simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument of… in tmain()
215 …parallel master taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of… in tmain()
218 …l master taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appea… in tmain()
221 … omp parallel master taskloop simd reduction(+ : r) // expected-error 2 {{const-qualified variable… in tmain()
225 #pragma omp parallel reduction(min : i) in tmain()
226 …gma omp parallel master taskloop simd reduction(max : j) // expected-error 2 {{argument of OpenMP … in tmain()
230 #pragma omp parallel master taskloop simd reduction(+ : fl) allocate(omp_thread_mem_alloc: fl) // e… in tmain()
233 #pragma omp parallel reduction(* : fl) in tmain()
234 #pragma omp parallel master taskloop simd reduction(+ : fl) in tmain()
261 #pragma omp parallel master taskloop simd reduction // expected-error {{expected '(' after 'reducti… in main()
264 #pragma omp parallel master taskloop simd reduction + // expected-error {{expected '(' after 'reduc… in main()
267 …lel master taskloop simd reduction( // expected-error {{expected unqualified-id}} expected-warning… in main()
270 #pragma omp parallel master taskloop simd reduction(- // expected-warning {{missing ':' after reduc… in main()
273 …el master taskloop simd reduction() // expected-error {{expected unqualified-id}} expected-warning… in main()
276 #pragma omp parallel master taskloop simd reduction(*) // expected-warning {{missing ':' after redu… in main()
279 …el master taskloop simd reduction(\) // expected-error {{expected unqualified-id}} expected-warnin… in main()
282 …reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} omp45-… in main()
285 #pragma omp parallel master taskloop simd reduction(| : argc, // expected-error {{expected expressi… in main()
288 #pragma omp parallel master taskloop simd reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-… in main()
291 #pragma omp parallel master taskloop simd reduction(~ : argc) // expected-error {{expected unqualif… in main()
294 #pragma omp parallel master taskloop simd reduction(&& : argc, z) in main()
297 #pragma omp parallel master taskloop simd reduction(^ : S1) // expected-error {{'S1' does not refer… in main()
300 …reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}}… in main()
303 …reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in main()
306 #pragma omp parallel master taskloop simd reduction(max : h.b) // expected-error {{expected variabl… in main()
309 … omp parallel master taskloop simd reduction(+ : ba) // expected-error {{const-qualified variable … in main()
312 … omp parallel master taskloop simd reduction(* : ca) // expected-error {{const-qualified variable … in main()
315 …reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} omp52-warning… in main()
318 #pragma omp parallel master taskloop simd reduction(^ : fl) // expected-error {{invalid operands to… in main()
321 …ma omp parallel master taskloop simd reduction(&& : S2::S2s) // expected-error {{shared variable c… in main()
324 …p parallel master taskloop simd reduction(&& : S2::S2sc) // expected-error {{const-qualified varia… in main()
327 #pragma omp parallel master taskloop simd reduction(& : e, g) // expected-error {{calling a private… in main()
330 …l master taskloop simd reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread loc… in main()
333 #pragma omp parallel master taskloop simd reduction(+ : o) // expected-error {{no viable overloaded… in main()
336 …ter taskloop simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument of… in main()
340 …parallel master taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of… in main()
343 …el master taskloop simd reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear… in main()
346 …a omp parallel master taskloop simd reduction(+ : r) // expected-error {{const-qualified variable … in main()
350 #pragma omp parallel reduction(min : i) in main()
351 …agma omp parallel master taskloop simd reduction(max : j) // expected-error {{argument of OpenMP c… in main()
355 #pragma omp parallel master taskloop simd reduction(+ : fl) in main()
358 #pragma omp parallel reduction(* : fl) in main()
359 #pragma omp parallel master taskloop simd reduction(+ : fl) in main()
363 #pragma omp parallel master taskloop simd reduction(+ : m) // OK in main()
366 …reduction(task, + : m) // omp45-error 2 {{expected expression}} omp45-warning {{missing ':' after … in main()
369 #pragma omp parallel master taskloop simd nogroup reduction(+ : m) // expected-error {{'reduction' … in main()