Lines Matching refs:reduction

28 #pragma omp taskloop simd reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized when…  in xxx()
41 #pragma omp taskloop simd reduction(+:ref) in foobar()
107 #pragma omp taskloop reduction(+:a) // expected-error {{expected addressable reduction item for the… in S7()
127 #pragma omp taskloop simd reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
130 #pragma omp taskloop simd reduction + // expected-error {{expected '(' after 'reduction'}} expected… in tmain()
133 #pragma omp taskloop simd reduction( // expected-error {{expected unqualified-id}} expected-warning… in tmain()
136 #pragma omp taskloop simd reduction(- // expected-warning {{missing ':' after reduction identifier … in tmain()
139 #pragma omp taskloop simd reduction() // expected-error {{expected unqualified-id}} expected-warnin… in tmain()
142 #pragma omp taskloop simd reduction(*) // expected-warning {{missing ':' after reduction identifier… in tmain()
145 #pragma omp taskloop simd reduction(\) // expected-error {{expected unqualified-id}} expected-warni… in tmain()
148 #pragma omp taskloop simd reduction(& : argc // expected-error {{expected ')'}} expected-note {{to … in tmain()
151 #pragma omp taskloop simd reduction(| : argc, // expected-error {{expected expression}} expected-er… in tmain()
154 #pragma omp taskloop simd reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable n… in tmain()
157 #pragma omp taskloop simd reduction(foo : argc) //expected-error {{incorrect reduction identifier, … in tmain()
160 #pragma omp taskloop simd reduction(&& : argc) allocate , allocate(, allocate(omp_default , allocat… in tmain()
163 #pragma omp taskloop simd reduction(^ : T) // expected-error {{'T' does not refer to a value}} in tmain()
166 #pragma omp taskloop simd reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item wi… in tmain()
169 #pragma omp taskloop simd reduction(min : a, b, c, d, f) // expected-error {{a reduction list item … in tmain()
172 #pragma omp taskloop simd reduction(max : h.b) // expected-error {{expected variable name, array el… in tmain()
175 #pragma omp taskloop simd reduction(+ : ba) // expected-error {{const-qualified variable cannot be … in tmain()
178 #pragma omp taskloop simd reduction(* : z, ca) // expected-error {{const-qualified variable cannot … in tmain()
181 #pragma omp taskloop simd reduction(- : da) // expected-error {{const-qualified variable cannot be … in tmain()
184 #pragma omp taskloop simd reduction(^ : fl) // expected-error {{invalid operands to binary expressi… in tmain()
187 #pragma omp taskloop simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be red… in tmain()
190 #pragma omp taskloop simd reduction(&& : S2::S2sc) // expected-error {{const-qualified variable can… in tmain()
193 #pragma omp taskloop simd reduction(+ : h, k) // expected-error {{threadprivate or thread local var… in tmain()
196 #pragma omp taskloop simd reduction(+ : o) // expected-error 2 {{no viable overloaded '='}} in tmain()
199 #pragma omp taskloop simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argu… in tmain()
203 #pragma omp taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of Open… in tmain()
206 #pragma omp taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can app… in tmain()
209 #pragma omp taskloop simd reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be… in tmain()
213 #pragma omp parallel reduction(min : i) in tmain()
214 #pragma omp taskloop simd reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduc… in tmain()
218 #pragma omp taskloop simd reduction(+ : fl) allocate(omp_thread_mem_alloc: fl) // expected-warning … in tmain()
221 #pragma omp parallel reduction(* : fl) in tmain()
222 #pragma omp taskloop simd reduction(+ : fl) in tmain()
249 #pragma omp taskloop simd reduction // expected-error {{expected '(' after 'reduction'}} in main()
252 #pragma omp taskloop simd reduction + // expected-error {{expected '(' after 'reduction'}} expected… in main()
255 #pragma omp taskloop simd reduction( // expected-error {{expected unqualified-id}} expected-warning… in main()
258 #pragma omp taskloop simd reduction(- // expected-warning {{missing ':' after reduction identifier … in main()
261 #pragma omp taskloop simd reduction() // expected-error {{expected unqualified-id}} expected-warnin… in main()
264 #pragma omp taskloop simd reduction(*) // expected-warning {{missing ':' after reduction identifier… in main()
267 #pragma omp taskloop simd reduction(\) // expected-error {{expected unqualified-id}} expected-warni… in main()
270 #pragma omp taskloop simd reduction(foo : argc // expected-error {{expected ')'}} expected-note {{t… in main()
273 #pragma omp taskloop simd reduction(| : argc, // expected-error {{expected expression}} expected-er… in main()
276 #pragma omp taskloop simd reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected… in main()
279 #pragma omp taskloop simd reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
282 #pragma omp taskloop simd reduction(&& : argc, z) in main()
285 #pragma omp taskloop simd reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} in main()
288 #pragma omp taskloop simd reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item wi… in main()
291 #pragma omp taskloop simd reduction(min : a, b, c, d, f) // expected-error {{a reduction list item … in main()
294 #pragma omp taskloop simd reduction(max : h.b) // expected-error {{expected variable name, array el… in main()
297 #pragma omp taskloop simd reduction(+ : ba) // expected-error {{const-qualified variable cannot be … in main()
300 #pragma omp taskloop simd reduction(* : ca) // expected-error {{const-qualified variable cannot be … in main()
303 #pragma omp taskloop simd reduction(- : da) // expected-error {{const-qualified variable cannot be … in main()
306 #pragma omp taskloop simd reduction(^ : fl) // expected-error {{invalid operands to binary expressi… in main()
309 #pragma omp taskloop simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be red… in main()
312 #pragma omp taskloop simd reduction(&& : S2::S2sc) // expected-error {{const-qualified variable can… in main()
315 #pragma omp taskloop simd reduction(& : e, g) // expected-error {{calling a private constructor of … in main()
318 #pragma omp taskloop simd reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread l… in main()
321 #pragma omp taskloop simd reduction(+ : o) // expected-error {{no viable overloaded '='}} in main()
324 #pragma omp taskloop simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argu… in main()
328 #pragma omp taskloop simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of Open… in main()
331 #pragma omp taskloop simd reduction(+ : p), reduction(+ : p) // expected-error {{variable can appea… in main()
334 #pragma omp taskloop simd reduction(+ : r) // expected-error {{const-qualified variable cannot be r… in main()
338 #pragma omp parallel reduction(min : i) in main()
339 #pragma omp taskloop simd reduction(max : j) // expected-error {{argument of OpenMP clause 'reducti… in main()
343 #pragma omp taskloop simd reduction(+ : fl) in main()
346 #pragma omp parallel reduction(* : fl) in main()
347 #pragma omp taskloop simd reduction(+ : fl) in main()
351 #pragma omp taskloop simd reduction(+ : m) // OK in main()
354 #pragma omp taskloop simd reduction(task, + : m) // omp45-error 2 {{expected expression}} omp45-war… in main()
357 #pragma omp taskloop simd reduction(+ : m) nogroup // expected-error {{'reduction' clause cannot be… in main()