Lines Matching refs:reduction

18 #pragma omp parallel for simd reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized …  in xxx()
31 #pragma omp parallel for simd reduction(+:ref) in foobar()
108 #pragma omp parallel for simd reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
111 #pragma omp parallel for simd reduction + // expected-error {{expected '(' after 'reduction'}} expe… in tmain()
114 #pragma omp parallel for simd reduction( // expected-error {{expected unqualified-id}} expected-war… in tmain()
117 #pragma omp parallel for simd reduction(- // expected-warning {{missing ':' after reduction identif… in tmain()
120 #pragma omp parallel for simd reduction() // expected-error {{expected unqualified-id}} expected-wa… in tmain()
123 #pragma omp parallel for simd reduction(*) // expected-warning {{missing ':' after reduction identi… in tmain()
126 #pragma omp parallel for simd reduction(\) // expected-error {{expected unqualified-id}} expected-w… in tmain()
129 #pragma omp parallel for simd reduction(& : argc // expected-error {{expected ')'}} expected-note {… in tmain()
132 #pragma omp parallel for simd reduction(| : argc, // expected-error {{expected expression}} expecte… in tmain()
135 #pragma omp parallel for simd reduction(|| : argc ? i : argc) // expected-error 2 {{expected variab… in tmain()
138 #pragma omp parallel for simd reduction(foo : argc) //expected-error {{incorrect reduction identifi… in tmain()
141 #pragma omp parallel for simd reduction(&& : argc) allocate , allocate(, allocate(omp_default , all… in tmain()
144 #pragma omp parallel for simd reduction(^ : T) // expected-error {{'T' does not refer to a value}} in tmain()
147 #pragma omp parallel for simd reduction(+ : z, a, b, c, d, f) // expected-error {{a reduction list … in tmain()
150 #pragma omp parallel for simd reduction(min : a, b, c, d, f) // expected-error {{a reduction list i… in tmain()
153 #pragma omp parallel for simd reduction(max : h.b) // expected-error {{expected variable name, arra… in tmain()
156 #pragma omp parallel for simd reduction(+ : ba) // expected-error {{const-qualified variable cannot… in tmain()
159 #pragma omp parallel for simd reduction(* : ca) // expected-error {{const-qualified variable cannot… in tmain()
162 #pragma omp parallel for simd reduction(- : da) // expected-error {{const-qualified variable cannot… in tmain()
165 #pragma omp parallel for simd reduction(^ : fl) // expected-error {{invalid operands to binary expr… in tmain()
168 #pragma omp parallel for simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be… in tmain()
171 #pragma omp parallel for simd reduction(&& : S2::S2sc) // expected-error {{const-qualified variable… in tmain()
174 #pragma omp parallel for simd reduction(+ : h, k) // expected-error {{threadprivate or thread local… in tmain()
177 #pragma omp parallel for simd reduction(+ : o) // expected-error 2 {{no viable overloaded '='}} in tmain()
180 #pragma omp parallel for simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{… in tmain()
184 #pragma omp parallel for simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of … in tmain()
187 #pragma omp parallel for simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can… in tmain()
190 #pragma omp parallel for simd reduction(+ : r) // expected-error 2 {{const-qualified variable canno… in tmain()
194 #pragma omp parallel reduction(min : i) in tmain()
195 #pragma omp parallel for simd reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'r… in tmain()
199 #pragma omp parallel for simd reduction(+ : fl) in tmain()
202 #pragma omp parallel reduction(* : fl) in tmain()
203 #pragma omp parallel for simd reduction(+ : fl) in tmain()
230 #pragma omp parallel for simd reduction // expected-error {{expected '(' after 'reduction'}} in main()
233 #pragma omp parallel for simd reduction + // expected-error {{expected '(' after 'reduction'}} expe… in main()
236 #pragma omp parallel for simd reduction( // expected-error {{expected unqualified-id}} expected-war… in main()
239 #pragma omp parallel for simd reduction(- // expected-warning {{missing ':' after reduction identif… in main()
242 #pragma omp parallel for simd reduction() // expected-error {{expected unqualified-id}} expected-wa… in main()
245 #pragma omp parallel for simd reduction(*) // expected-warning {{missing ':' after reduction identi… in main()
248 #pragma omp parallel for simd reduction(\) // expected-error {{expected unqualified-id}} expected-w… in main()
251 #pragma omp parallel for simd reduction(foo : argc // expected-error {{expected ')'}} expected-note… in main()
254 #pragma omp parallel for simd reduction(| : argc, // expected-error {{expected expression}} expecte… in main()
257 #pragma omp parallel for simd reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expe… in main()
260 #pragma omp parallel for simd reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
263 #pragma omp parallel for simd reduction(&& : argc, z) in main()
266 #pragma omp parallel for simd reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} in main()
269 #pragma omp parallel for simd reduction(+ : a, b, c, d, f) // expected-error {{a reduction list ite… in main()
272 #pragma omp parallel for simd reduction(min : a, b, c, d, f) // expected-error {{a reduction list i… in main()
275 #pragma omp parallel for simd reduction(max : h.b) // expected-error {{expected variable name, arra… in main()
278 #pragma omp parallel for simd reduction(+ : ba) // expected-error {{const-qualified variable cannot… in main()
281 #pragma omp parallel for simd reduction(* : ca) // expected-error {{const-qualified variable cannot… in main()
284 #pragma omp parallel for simd reduction(- : da) // expected-error {{const-qualified variable cannot… in main()
287 #pragma omp parallel for simd reduction(^ : fl) // expected-error {{invalid operands to binary expr… in main()
290 #pragma omp parallel for simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be… in main()
293 #pragma omp parallel for simd reduction(&& : S2::S2sc) // expected-error {{const-qualified variable… in main()
296 #pragma omp parallel for simd reduction(& : e, g) // expected-error {{calling a private constructor… in main()
299 #pragma omp parallel for simd reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thre… in main()
302 #pragma omp parallel for simd reduction(+ : o) // expected-error {{no viable overloaded '='}} in main()
305 #pragma omp parallel for simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{… in main()
309 #pragma omp parallel for simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of … in main()
312 #pragma omp parallel for simd reduction(+ : p), reduction(+ : p) // expected-error {{variable can a… in main()
315 #pragma omp parallel for simd reduction(+ : r) // expected-error {{const-qualified variable cannot … in main()
319 #pragma omp parallel reduction(min : i) in main()
320 #pragma omp parallel for simd reduction(max : j) // expected-error {{argument of OpenMP clause 'red… in main()
324 #pragma omp parallel for simd reduction(+ : fl) in main()
327 #pragma omp parallel reduction(* : fl) in main()
328 #pragma omp parallel for simd reduction(+ : fl) in main()
332 #pragma omp parallel for simd reduction(+ : m) // OK in main()
335 #pragma omp parallel for simd reduction(task, + : m) // omp45-error 2 {{expected expression}} omp45… in main()