Lines Matching full:reduction

41 #pragma omp target teams reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized when …  in xxx()
54 #pragma omp target teams reduction(+:ref) in foobar()
130 #pragma omp target teams reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
132 #pragma omp target teams reduction + // expected-error {{expected '(' after 'reduction'}} expected-… in tmain()
134 #pragma omp target teams reduction( // expected-error {{expected unqualified-id}} expected-warning … in tmain()
136 #pragma omp target teams reduction(- // expected-warning {{missing ':' after reduction identifier -… in tmain()
138 …pragma omp target teams reduction() // expected-error {{expected unqualified-id}} expected-warning… in tmain()
140 #pragma omp target teams reduction(*) // expected-warning {{missing ':' after reduction identifier … in tmain()
142 …pragma omp target teams reduction(\) // expected-error {{expected unqualified-id}} expected-warnin… in tmain()
144 #pragma omp target teams reduction(& : argc // expected-error {{expected ')'}} expected-note {{to m… in tmain()
146 #pragma omp target teams reduction(| : argc, // expected-error {{expected expression}} expected-err… in tmain()
148 #pragma omp target teams reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable na… in tmain()
150reduction(foo : argc) //omp45-error {{incorrect reduction identifier, expected one of '+', '-', '*… in tmain()
152 #pragma omp target teams reduction(&& : argc) allocate , allocate(, allocate(omp_default , allocate… in tmain()
154 #pragma omp target teams reduction(^ : T) // expected-error {{'T' does not refer to a value}} in tmain()
156reduction(+ : z, a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1… in tmain()
158reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in tmain()
160 #pragma omp target teams reduction(max : h.b) // expected-error {{expected variable name, array ele… in tmain()
162 #pragma omp target teams reduction(+ : ba) // expected-error {{const-qualified variable cannot be r… in tmain()
164 #pragma omp target teams reduction(* : ca) // expected-error {{const-qualified variable cannot be r… in tmain()
166reduction(- : da) // expected-error 2 {{const-qualified variable cannot be reduction}} omp52-warni… in tmain()
168 #pragma omp target teams reduction(^ : fl) // expected-error {{invalid operands to binary expressio… in tmain()
170 #pragma omp target teams reduction(&& : S2::S2s) // expected-error {{shared variable cannot be redu… in tmain()
172 #pragma omp target teams reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cann… in tmain()
174 #pragma omp target teams reduction(+ : h, k) // expected-error {{threadprivate or thread local vari… in tmain()
176 #pragma omp target teams reduction(+ : o) // expected-error 2 {{no viable overloaded '='}} in tmain()
178 … omp target teams private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument of… in tmain()
181 #pragma omp target teams reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenM… in tmain()
183 …ragma omp target teams reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appea… in tmain()
185 #pragma omp target teams reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be in tmain()
188 #pragma omp parallel reduction(min : i) in tmain()
189 #pragma omp target teams reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduct… in tmain()
195 #pragma omp target teams reduction(+ : fl) allocate(omp_thread_mem_alloc: fl) // expected-warning 2… in tmain()
198reduction(- : fl) // omp52-warning 3 {{minus(-) operator for reductions is deprecated; use + or us… in tmain()
201 #pragma omp target teams reduction(+ : fl) in tmain()
227 #pragma omp target teams reduction // expected-error {{expected '(' after 'reduction'}} in main()
229 #pragma omp target teams reduction + // expected-error {{expected '(' after 'reduction'}} expected-… in main()
231 #pragma omp target teams reduction( // expected-error {{expected unqualified-id}} expected-warning … in main()
233 #pragma omp target teams reduction(- // expected-warning {{missing ':' after reduction identifier -… in main()
235 …pragma omp target teams reduction() // expected-error {{expected unqualified-id}} expected-warning… in main()
237 #pragma omp target teams reduction(*) // expected-warning {{missing ':' after reduction identifier … in main()
239 …pragma omp target teams reduction(\) // expected-error {{expected unqualified-id}} expected-warnin… in main()
241reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} omp45-… in main()
243 #pragma omp target teams reduction(| : argc, // expected-error {{expected expression}} expected-err… in main()
245 #pragma omp target teams reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected … in main()
247 #pragma omp target teams reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
249 #pragma omp target teams reduction(&& : argc, z) in main()
251 #pragma omp target teams reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} in main()
253reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}}… in main()
255reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in main()
257 #pragma omp target teams reduction(max : h.b) // expected-error {{expected variable name, array ele… in main()
259 #pragma omp target teams reduction(+ : ba) // expected-error {{const-qualified variable cannot be r… in main()
261 #pragma omp target teams reduction(* : ca) // expected-error {{const-qualified variable cannot be r… in main()
263reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} omp52-warning… in main()
265 #pragma omp target teams reduction(^ : fl) // expected-error {{invalid operands to binary expressio… in main()
267 #pragma omp target teams reduction(&& : S2::S2s) // expected-error {{shared variable cannot be redu… in main()
269 #pragma omp target teams reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cann… in main()
271 #pragma omp target teams reduction(& : e, g) // expected-error {{calling a private constructor of c… in main()
273 …ragma omp target teams reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread loc… in main()
275 #pragma omp target teams reduction(+ : o) // expected-error {{no viable overloaded '='}} in main()
277 … omp target teams private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument of… in main()
280 #pragma omp target teams reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenM… in main()
282 …pragma omp target teams reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear… in main()
284 #pragma omp target teams reduction(+ : r) // expected-error {{const-qualified variable cannot be re… in main()
287 #pragma omp parallel reduction(min : i) in main()
288 #pragma omp target teams reduction(max : j) // expected-error {{argument of OpenMP clause 'reductio… in main()
294 #pragma omp target teams reduction(+ : fl) in main()
297reduction(- : fl) // omp52-warning {{minus(-) operator for reductions is deprecated; use + or user… in main()
300 #pragma omp target teams reduction(+ : fl) in main()
303 #pragma omp target teams reduction(+ : m) // OK in main()
305reduction(task, + : m) // omp45-error 2 {{expected expression}} omp45-warning {{missing ':' after in main()