Lines Matching full:reduction

27 #pragma omp parallel for reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized when …  in xxx()
40 #pragma omp parallel for reduction(+:ref) in foobar()
93 #pragma omp for reduction(+:a) // expected-error {{reduction variable must be shared}} in foo()
96 #pragma omp parallel for reduction(inscan, +:a) in foo()
100 #pragma omp parallel for reduction(inscan, +:a) in foo()
131 #pragma omp parallel for reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
134 #pragma omp parallel for reduction + // expected-error {{expected '(' after 'reduction'}} expected-… in tmain()
137 #pragma omp parallel for reduction( // expected-error {{expected unqualified-id}} expected-warning … in tmain()
140 #pragma omp parallel for reduction(- // expected-warning {{missing ':' after reduction identifier -… in tmain()
143 …pragma omp parallel for reduction() // expected-error {{expected unqualified-id}} expected-warning… in tmain()
146 #pragma omp parallel for reduction(*) // expected-warning {{missing ':' after reduction identifier … in tmain()
149 …pragma omp parallel for reduction(\) // expected-error {{expected unqualified-id}} expected-warnin… in tmain()
152 #pragma omp parallel for reduction(& : argc // expected-error {{expected ')'}} expected-note {{to m… in tmain()
155 #pragma omp parallel for reduction(| : argc, // expected-error {{expected expression}} expected-err… in tmain()
158 #pragma omp parallel for reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable na… in tmain()
161reduction(foo : argc) //omp51-error {{incorrect reduction identifier, expected one of '+', '-', '*… in tmain()
164 #pragma omp parallel for reduction(&& : argc) allocate , allocate(, allocate(omp_default , allocate… in tmain()
167 #pragma omp parallel for reduction(^ : T) // expected-error {{'T' does not refer to a value}} in tmain()
170reduction(+ : z, a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1… in tmain()
173reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in tmain()
176 #pragma omp parallel for reduction(max : h.b) // expected-error {{expected variable name, array ele… in tmain()
179 #pragma omp parallel for reduction(+ : ba) // expected-error {{const-qualified variable cannot be r… in tmain()
182 #pragma omp parallel for reduction(* : ca) // expected-error {{const-qualified variable cannot be r… in tmain()
185reduction(- : da) // expected-error 2 {{const-qualified variable cannot be reduction}} omp52-warni… in tmain()
188 #pragma omp parallel for reduction(^ : fl) // expected-error {{invalid operands to binary expressio… in tmain()
191 #pragma omp parallel for reduction(&& : S2::S2s) // expected-error {{shared variable cannot be redu… in tmain()
194 #pragma omp parallel for reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cann… in tmain()
197 #pragma omp parallel for reduction(+ : h, k) // expected-error {{threadprivate or thread local vari… in tmain()
200 #pragma omp parallel for reduction(+ : o) // expected-error 2 {{no viable overloaded '='}} in tmain()
203 … omp parallel for private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument of… in tmain()
207 #pragma omp parallel for reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenM… in tmain()
210 …ragma omp parallel for reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appea… in tmain()
213 #pragma omp parallel for reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be in tmain()
217 #pragma omp parallel reduction(min : i) in tmain()
218 #pragma omp parallel for reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduct… in tmain()
222 #pragma omp parallel for reduction(+ : fl) in tmain()
225 #pragma omp parallel reduction(* : fl) in tmain()
226 #pragma omp parallel for reduction(+ : fl) in tmain()
253 #pragma omp parallel for reduction // expected-error {{expected '(' after 'reduction'}} in main()
256 #pragma omp parallel for reduction + // expected-error {{expected '(' after 'reduction'}} expected-… in main()
259 #pragma omp parallel for reduction( // expected-error {{expected unqualified-id}} expected-warning … in main()
262 #pragma omp parallel for reduction(- // expected-warning {{missing ':' after reduction identifier -… in main()
265 …pragma omp parallel for reduction() // expected-error {{expected unqualified-id}} expected-warning… in main()
268 #pragma omp parallel for reduction(*) // expected-warning {{missing ':' after reduction identifier … in main()
271 …pragma omp parallel for reduction(\) // expected-error {{expected unqualified-id}} expected-warnin… in main()
274reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} omp45-… in main()
277 #pragma omp parallel for reduction(| : argc, // expected-error {{expected expression}} expected-err… in main()
280 #pragma omp parallel for reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected … in main()
283 #pragma omp parallel for reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
286 #pragma omp parallel for reduction(&& : argc) in main()
289 #pragma omp parallel for reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} in main()
292reduction(+ : z, a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1… in main()
295reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in main()
298 #pragma omp parallel for reduction(max : h.b) // expected-error {{expected variable name, array ele… in main()
301 #pragma omp parallel for reduction(+ : ba) // expected-error {{const-qualified variable cannot be r… in main()
304 #pragma omp parallel for reduction(* : ca) // expected-error {{const-qualified variable cannot be r… in main()
307reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} omp52-warning… in main()
310 #pragma omp parallel for reduction(^ : fl) // expected-error {{invalid operands to binary expressio… in main()
313 #pragma omp parallel for reduction(&& : S2::S2s) // expected-error {{shared variable cannot be redu… in main()
316 #pragma omp parallel for reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cann… in main()
319 #pragma omp parallel for reduction(& : e, g) // expected-error {{calling a private constructor of c… in main()
322 …ragma omp parallel for reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread loc… in main()
325 #pragma omp parallel for reduction(+ : o) // expected-error {{no viable overloaded '='}} in main()
328 … omp parallel for private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument of… in main()
332 #pragma omp parallel for reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenM… in main()
335 …pragma omp parallel for reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear… in main()
338 #pragma omp parallel for reduction(+ : r) // expected-error {{const-qualified variable cannot be re… in main()
342 #pragma omp parallel reduction(min : i) in main()
343 #pragma omp parallel for reduction(max : j) // expected-error {{argument of OpenMP clause 'reductio… in main()
347 #pragma omp parallel for reduction(+ : fl) in main()
350 #pragma omp parallel reduction(* : fl) in main()
351 #pragma omp parallel for reduction(+ : fl) in main()
355 #pragma omp parallel for reduction(+ : m) // OK in main()
358 #pragma omp parallel for reduction(task, + : m) // OK in main()
362reduction(inscan, + : m) reduction(*: fl) reduction(default, &&: j) // expected-error 2 {{expected… in main()
367 #pragma omp parallel for reduction(inscan, + : m, fl, j) // expected-error 2 {{the inscan reduction in main()
372 #pragma omp parallel for reduction(inscan, + : m, fl, j) // expected-error 2 {{the inscan reduction in main()