Lines Matching full:reduction
40 #pragma omp taskloop reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized when used… in xxx()
53 #pragma omp taskloop reduction(+:ref) in foobar()
119 #pragma omp taskloop reduction(+:a) // expected-error {{expected addressable reduction item for the… in S7()
139 #pragma omp taskloop reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
142 #pragma omp taskloop reduction + // expected-error {{expected '(' after 'reduction'}} expected-warn… in tmain()
145 #pragma omp taskloop reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in tmain()
148 #pragma omp taskloop reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in tmain()
151 #pragma omp taskloop reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in tmain()
154 #pragma omp taskloop reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in tmain()
157 #pragma omp taskloop reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in tmain()
160 #pragma omp taskloop reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match… in tmain()
163 #pragma omp taskloop reduction(| : argc, // expected-error {{expected expression}} expected-error {… in tmain()
166 #pragma omp taskloop reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name, … in tmain()
169 …reduction(foo : argc) //omp45-error {{incorrect reduction identifier, expected one of '+', '-', '*… in tmain()
172 #pragma omp taskloop reduction(&& : argc) allocate , allocate(, allocate(omp_default , allocate(omp… in tmain()
175 #pragma omp taskloop reduction(^ : T) // expected-error {{'T' does not refer to a value}} 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 taskloop reduction(max : h.b) // expected-error {{expected variable name, array element… in tmain()
187 #pragma omp taskloop reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduc… in tmain()
190 #pragma omp taskloop reduction(* : ca) // expected-error {{const-qualified variable cannot be reduc… in tmain()
193 …reduction(- : da) // expected-error 2 {{const-qualified variable cannot be reduction}} omp52-warni… in tmain()
196 #pragma omp taskloop reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… in tmain()
199 #pragma omp taskloop reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reductio… in tmain()
202 #pragma omp taskloop reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in tmain()
205 #pragma omp taskloop reduction(+ : h, k) // expected-error {{threadprivate or thread local variable… in tmain()
208 #pragma omp taskloop reduction(+ : o) // expected-error 2 {{no viable overloaded '='}} in tmain()
211 …agma omp taskloop private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument of… in tmain()
215 #pragma omp taskloop reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP cl… in tmain()
218 #pragma omp taskloop reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appear o… in tmain()
221 #pragma omp taskloop reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be redu… in tmain()
225 #pragma omp parallel reduction(min : i) in tmain()
226 #pragma omp taskloop reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduction'… in tmain()
230 #pragma omp taskloop reduction(+ : fl) allocate(omp_thread_mem_alloc: fl) // expected-warning 2 {{a… in tmain()
233 #pragma omp parallel reduction(* : fl) in tmain()
234 #pragma omp taskloop reduction(+ : fl) in tmain()
261 #pragma omp taskloop reduction // expected-error {{expected '(' after 'reduction'}} in main()
264 #pragma omp taskloop reduction + // expected-error {{expected '(' after 'reduction'}} expected-warn… in main()
267 #pragma omp taskloop reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in main()
270 #pragma omp taskloop reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in main()
273 #pragma omp taskloop reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in main()
276 #pragma omp taskloop reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in main()
279 #pragma omp taskloop reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in main()
282 …reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} omp45-… in main()
285 #pragma omp taskloop reduction(| : argc, // expected-error {{expected expression}} expected-error {… in main()
288 #pragma omp taskloop reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected vari… in main()
291 #pragma omp taskloop reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
294 #pragma omp taskloop reduction(&& : argc, z) in main()
297 #pragma omp taskloop reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} 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 taskloop reduction(max : h.b) // expected-error {{expected variable name, array element… in main()
309 #pragma omp taskloop reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduc… in main()
312 #pragma omp taskloop reduction(* : ca) // expected-error {{const-qualified variable cannot be reduc… in main()
315 …reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} omp52-warning… in main()
318 #pragma omp taskloop reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… in main()
321 #pragma omp taskloop reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reductio… in main()
324 #pragma omp taskloop reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in main()
327 #pragma omp taskloop reduction(& : e, g) // expected-error {{calling a private constructor of class… in main()
330 #pragma omp taskloop reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread local … in main()
333 #pragma omp taskloop reduction(+ : o) // expected-error {{no viable overloaded '='}} in main()
336 …agma omp taskloop private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument of… in main()
340 #pragma omp taskloop reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP cl… in main()
343 #pragma omp taskloop reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear onl… in main()
346 #pragma omp taskloop reduction(+ : r) // expected-error {{const-qualified variable cannot be reduct… in main()
350 #pragma omp parallel reduction(min : i) in main()
351 #pragma omp taskloop reduction(max : j) // expected-error {{argument of OpenMP clause 'reduction' m… in main()
355 #pragma omp taskloop reduction(+ : fl) in main()
358 #pragma omp parallel reduction(* : fl) in main()
359 #pragma omp taskloop reduction(+ : fl) in main()
363 #pragma omp taskloop reduction(+ : m) // OK in main()
366 …reduction(task, + : m) // omp45-error 2 {{expected expression}} omp45-warning {{missing ':' after … in main()
369 #pragma omp taskloop nogroup reduction(+ : m) // expected-error {{'reduction' clause cannot be used… in main()