Lines Matching full:reduction

36 #pragma omp masked taskloop simd reduction(+:fp) // expected-warning {{variable 'fp' is uninitializ…  in xxx()
49 #pragma omp masked taskloop simd reduction(+:ref) in foobar()
115 #pragma omp taskloop reduction(+:a) // expected-error {{expected addressable reduction item for the… in S7()
135 #pragma omp masked taskloop simd reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
138 #pragma omp masked taskloop simd reduction + // expected-error {{expected '(' after 'reduction'}} e… in tmain()
141 …omp masked taskloop simd reduction( // expected-error {{expected unqualified-id}} expected-warning… in tmain()
144 #pragma omp masked taskloop simd reduction(- // expected-warning {{missing ':' after reduction iden… in tmain()
147 …mp masked taskloop simd reduction() // expected-error {{expected unqualified-id}} expected-warning… in tmain()
150 #pragma omp masked taskloop simd reduction(*) // expected-warning {{missing ':' after reduction ide… in tmain()
153 …mp masked taskloop simd reduction(\) // expected-error {{expected unqualified-id}} expected-warnin… in tmain()
156 #pragma omp masked taskloop simd reduction(& : argc // expected-error {{expected ')'}} expected-not… in tmain()
159 #pragma omp masked taskloop simd reduction(| : argc, // expected-error {{expected expression}} expe… in tmain()
162 #pragma omp masked taskloop simd reduction(|| : argc ? i : argc) // expected-error 2 {{expected var… in tmain()
165reduction(foo : argc) //omp45-error {{incorrect reduction identifier, expected one of '+', '-', '*… in tmain()
168 #pragma omp masked taskloop simd reduction(&& : argc) allocate , allocate(, allocate(omp_default , … in tmain()
171 #pragma omp masked taskloop simd reduction(^ : T) // expected-error {{'T' does not refer to a value… in tmain()
174reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}}… in tmain()
177reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in tmain()
180 #pragma omp masked taskloop simd reduction(max : h.b) // expected-error {{expected variable name, a… in tmain()
183 #pragma omp masked taskloop simd reduction(+ : ba) // expected-error {{const-qualified variable can… in tmain()
186 #pragma omp masked taskloop simd reduction(* : z, ca) // expected-error {{const-qualified variable … in tmain()
189reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} expected-erro… in tmain()
192 #pragma omp masked taskloop simd reduction(^ : fl) // expected-error {{invalid operands to binary e… in tmain()
195 #pragma omp masked taskloop simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot… in tmain()
198 …pragma omp masked taskloop simd reduction(&& : S2::S2sc) // expected-error {{const-qualified varia… in tmain()
201 …a omp masked taskloop simd reduction(+ : h, k) // expected-error {{threadprivate or thread local v… in tmain()
204 #pragma omp masked taskloop simd reduction(+ : o) // expected-error 2 {{no viable overloaded '='}} in tmain()
207 …ked taskloop simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument of… in tmain()
211 …agma omp masked taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of… in tmain()
214 …p masked taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appea… in tmain()
217 #pragma omp masked taskloop simd reduction(+ : r) // expected-error 2 {{const-qualified variable ca… in tmain()
221 #pragma omp parallel reduction(min : i) in tmain()
222 #pragma omp masked taskloop simd reduction(max : j) // expected-error 2 {{argument of OpenMP clause… in tmain()
226 #pragma omp masked taskloop simd reduction(+ : fl) allocate(omp_thread_mem_alloc: fl) // expected-w… in tmain()
229 #pragma omp parallel reduction(* : fl) in tmain()
230 #pragma omp masked taskloop simd reduction(+ : fl) in tmain()
258 #pragma omp masked taskloop simd reduction filter(tid) // expected-error {{expected '(' after 'redu… in main()
261 #pragma omp masked taskloop simd reduction + // expected-error {{expected '(' after 'reduction'}} e… in main()
264 …omp masked taskloop simd reduction( // expected-error {{expected unqualified-id}} expected-warning… in main()
267 #pragma omp masked taskloop simd reduction(- // expected-warning {{missing ':' after reduction iden… in main()
270 …mp masked taskloop simd reduction() // expected-error {{expected unqualified-id}} expected-warning… in main()
273 #pragma omp masked taskloop simd reduction(*) // expected-warning {{missing ':' after reduction ide… in main()
276 …mp masked taskloop simd reduction(\) // expected-error {{expected unqualified-id}} expected-warnin… in main()
279reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} omp45-… in main()
282 #pragma omp masked taskloop simd reduction(| : argc, // expected-error {{expected expression}} expe… in main()
285 #pragma omp masked taskloop simd reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{e… in main()
288 #pragma omp masked taskloop simd reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
291 #pragma omp masked taskloop simd reduction(&& : argc, z) in main()
294 #pragma omp masked taskloop simd reduction(^ : S1) // expected-error {{'S1' does not refer to a val… in main()
297reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}}… in main()
300reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in main()
303 #pragma omp masked taskloop simd reduction(max : h.b) // expected-error {{expected variable name, a… in main()
306 #pragma omp masked taskloop simd reduction(+ : ba) // expected-error {{const-qualified variable can… in main()
309 #pragma omp masked taskloop simd reduction(* : ca) // expected-error {{const-qualified variable can… in main()
312reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} omp52-warning… in main()
315 #pragma omp masked taskloop simd reduction(^ : fl) // expected-error {{invalid operands to binary e… in main()
318 #pragma omp masked taskloop simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot… in main()
321 …pragma omp masked taskloop simd reduction(&& : S2::S2sc) // expected-error {{const-qualified varia… in main()
324 #pragma omp masked taskloop simd reduction(& : e, g) // expected-error {{calling a private construc… in main()
327 …p masked taskloop simd reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread loc… in main()
330 #pragma omp masked taskloop simd reduction(+ : o) // expected-error {{no viable overloaded '='}} in main()
333 …ked taskloop simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument of… in main()
337 …agma omp masked taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of… in main()
340 …mp masked taskloop simd reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear… in main()
343 #pragma omp masked taskloop simd reduction(+ : r) // expected-error {{const-qualified variable cann… in main()
347 #pragma omp parallel reduction(min : i) in main()
348 #pragma omp masked taskloop simd reduction(max : j) // expected-error {{argument of OpenMP clause ' in main()
352 #pragma omp masked taskloop simd reduction(+ : fl) in main()
355 #pragma omp parallel reduction(* : fl) in main()
356 #pragma omp masked taskloop simd reduction(+ : fl) in main()
360 #pragma omp masked taskloop simd reduction(+ : m) // OK in main()
363 #pragma omp masked taskloop simd reduction(+ : m) nogroup // expected-error {{'reduction' clause ca… in main()
366reduction(task, + : m) // omp45-error 2 {{expected expression}} omp45-warning {{missing ':' after in main()