Lines Matching full:reduction
31 #pragma omp for simd reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized when used… in xxx()
45 #pragma omp for simd reduction(+:ref) in foobar()
123 #pragma omp for simd reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
127 #pragma omp for simd reduction + // expected-error {{expected '(' after 'reduction'}} expected-warn… in tmain()
131 #pragma omp for simd reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in tmain()
135 #pragma omp for simd reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in tmain()
139 #pragma omp for simd reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in tmain()
143 #pragma omp for simd reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in tmain()
147 #pragma omp for simd reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in tmain()
151 #pragma omp for simd reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match… in tmain()
155 #pragma omp for simd reduction(| : argc, // expected-error {{expected expression}} expected-error {… in tmain()
159 #pragma omp for simd reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name, … in tmain()
163 …reduction(foo : argc) //omp45-error {{incorrect reduction identifier, expected one of '+', '-', '*… in tmain()
167 #pragma omp for simd reduction(&& : argc) allocate , allocate(, allocate(omp_default , allocate(omp… in tmain()
171 #pragma omp for simd reduction(^ : T) // expected-error {{'T' does not refer to a value}} in tmain()
175 …reduction(+ : z, a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1… in tmain()
179 …reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in tmain()
183 #pragma omp for simd reduction(max : h.b) // expected-error {{expected variable name, array element… in tmain()
187 #pragma omp for simd reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduc… in tmain()
191 #pragma omp for simd reduction(* : ca) // expected-error {{const-qualified variable cannot be reduc… in tmain()
195 …reduction(- : da) // expected-error 2 {{const-qualified variable cannot be reduction}} omp52-warni… in tmain()
199 #pragma omp for simd reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… in tmain()
203 #pragma omp for simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reductio… in tmain()
207 #pragma omp for simd reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in tmain()
211 #pragma omp for simd reduction(+ : h, k) // expected-error {{threadprivate or thread local variable… in tmain()
215 #pragma omp for simd reduction(+ : o) // expected-error 2 {{no viable overloaded '='}} in tmain()
219 …agma omp for simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument of… in tmain()
223 #pragma omp for simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP cl… in tmain()
227 #pragma omp for simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appear o… in tmain()
231 #pragma omp for simd reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be redu… in tmain()
235 #pragma omp parallel reduction(min : i) in tmain()
236 #pragma omp for simd reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduction'… in tmain()
240 #pragma omp for simd reduction(+ : fl) // expected-error 2 {{reduction variable must be shared}} in tmain()
243 #pragma omp parallel reduction(* : fl) // expected-note 2 {{defined as reduction}} in tmain()
244 #pragma omp for simd reduction(+ : fl) // expected-error 2 {{reduction variable must be shared… in tmain()
272 #pragma omp for simd reduction // expected-error {{expected '(' after 'reduction'}} in main()
276 #pragma omp for simd reduction + // expected-error {{expected '(' after 'reduction'}} expected-warn… in main()
280 #pragma omp for simd reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in main()
284 #pragma omp for simd reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in main()
288 #pragma omp for simd reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in main()
292 #pragma omp for simd reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in main()
296 #pragma omp for simd reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in main()
300 …reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} omp45-… in main()
304 #pragma omp for simd reduction(| : argc, // expected-error {{expected expression}} expected-error {… in main()
308 #pragma omp for simd reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected vari… in main()
312 #pragma omp for simd reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
316 #pragma omp for simd reduction(&& : argc, z) in main()
320 #pragma omp for simd reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} in main()
324 …reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}}… in main()
328 …reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in main()
332 #pragma omp for simd reduction(max : h.b) // expected-error {{expected variable name, array element… in main()
336 #pragma omp for simd reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduc… in main()
340 #pragma omp for simd reduction(* : ca) // expected-error {{const-qualified variable cannot be reduc… in main()
344 …reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} omp52-warning… in main()
348 #pragma omp for simd reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… in main()
352 #pragma omp for simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reductio… in main()
356 #pragma omp for simd reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in main()
360 #pragma omp for simd reduction(& : e, g) // expected-error {{calling a private constructor of class… in main()
364 #pragma omp for simd reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread local … in main()
368 #pragma omp for simd reduction(+ : o) // expected-error {{no viable overloaded '='}} in main()
372 …agma omp for simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument of… in main()
376 #pragma omp for simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP cl… in main()
380 #pragma omp for simd reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear onl… in main()
384 #pragma omp for simd reduction(+ : r) // expected-error {{const-qualified variable cannot be reduct… in main()
388 #pragma omp parallel reduction(min : i) in main()
389 #pragma omp for simd reduction(max : j) // expected-error {{argument of OpenMP clause 'reduction' m… in main()
393 #pragma omp for simd reduction(+ : fl) // expected-error {{reduction variable must be shared}} in main()
396 #pragma omp parallel reduction(* : fl) // expected-note {{defined as reduction}} in main()
397 #pragma omp for simd reduction(+ : fl) // expected-error {{reduction variable must be shared}} in main()
401 #pragma omp for simd reduction(+ : m) in main()
404 …reduction(task, + : m) // omp45-error 2 {{expected expression}} omp45-warning {{missing ':' after … in main()