Searched refs:distribute (Results 1 - 25 of 189) sorted by relevance

12345678

/external/clang/test/OpenMP/
H A Ddistribute_dist_schedule_messages.cpp18 #pragma omp distribute dist_schedule // expected-error {{expected '(' after 'dist_schedule'}}
20 #pragma omp distribute dist_schedule ( // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
22 #pragma omp distribute dist_schedule () // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}}
24 #pragma omp distribute dist_schedule (static // expected-error {{expected ')'}} expected-note {{to match this '('}}
26 #pragma omp distribute dist_schedule (static, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
28 #pragma omp distribute dist_schedule (argc)) // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-warning {{extra tokens at the end of '#pragma omp distribute' are ignored}}
30 #pragma omp distribute dist_schedule (static, argc > 0 ? argv[1] : argv[2]) // expected-error2 {{expression must have integral or unscoped enumeration type, not 'char *'}}
32 #pragma omp distribute dist_schedule (static), dist_schedule (static, 1) // expected-error {{directive '#pragma omp distribute' canno
[all...]
H A Ddistribute_private_messages.cpp52 #pragma omp distribute private // expected-error {{expected '(' after 'private'}}
54 #pragma omp distribute private ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
56 #pragma omp distribute private () // expected-error {{expected expression}}
58 #pragma omp distribute private (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
60 #pragma omp distribute private (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
62 #pragma omp distribute private (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
64 #pragma omp distribute private (argc)
66 #pragma omp distribute private (S1) // expected-error {{'S1' does not refer to a value}}
68 #pragma omp distribute private (a, b, c, d, f) // expected-error {{private variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be private}}
70 #pragma omp distribute privat
[all...]
H A Ddistribute_simd_misc_messages.c3 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute simd'}}
4 #pragma omp distribute simd
6 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute simd'}}
7 #pragma omp distribute simd foo
9 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute simd'}}
10 #pragma omp distribute simd safelen(4)
16 #pragma omp distribute simd
22 // expected-error@+2 {{statement after '#pragma omp distribute simd' must be a for loop}}
23 #pragma omp distribute simd
36 #pragma omp distribute sim
[all...]
H A Ddistribute_parallel_for_default_messages.cpp10 #pragma omp distribute parallel for default // expected-error {{expected '(' after 'default'}}
15 #pragma omp distribute parallel for default( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp distribute parallel for default() // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
25 #pragma omp distribute parallel for default(none // expected-error {{expected ')'}} expected-note {{to match this '('}}
30 #pragma omp distribute parallel for default(shared), default(shared) // expected-error {{directive '#pragma omp distribute parallel for' cannot contain more than one 'default' clause}}
35 #pragma omp distribute parallel for default(x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
40 #pragma omp distribute parallel for default(none)
47 #pragma omp distribute parallel for default(shared)
58 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_simd_misc_messages.c3 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute parallel for simd'}}
4 #pragma omp distribute parallel for simd
6 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute parallel for simd'}}
7 #pragma omp distribute parallel for simd foo
11 #pragma omp distribute parallel for simd
15 // expected-error@+2 {{statement after '#pragma omp distribute parallel for simd' must be a for loop}}
16 #pragma omp distribute parallel for simd
29 #pragma omp distribute parallel for simd
53 // expected-warning@+1 {{extra tokens at the end of '#pragma omp distribute parallel for simd' are ignored}}
54 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_num_threads_messages.cpp17 #pragma omp distribute parallel for num_threads // expected-error {{expected '(' after 'num_threads'}}
21 #pragma omp distribute parallel for num_threads ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
25 #pragma omp distribute parallel for num_threads () // expected-error {{expected expression}}
29 #pragma omp distribute parallel for num_threads (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
33 #pragma omp distribute parallel for num_threads (argc)) // expected-warning {{extra tokens at the end of '#pragma omp distribute parallel for' are ignored}}
37 #pragma omp distribute parallel for num_threads ((argc > 0) ? argv[1] : argv[2]) // expected-error 2 {{expression must have integral or unscoped enumeration type, not 'char *'}}
41 #pragma omp distribute parallel for num_threads (foobool(argc)), num_threads (true), num_threads (-5) // expected-error 2 {{directive '#pragma omp distribute parallel for' cannot contain more than one 'num_threads' clause}} expected-error {{argument to 'num_threads' clause must be a strictly positive integer value}}
45 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_if_messages.cpp17 #pragma omp distribute parallel for if // expected-error {{expected '(' after 'if'}}
21 #pragma omp distribute parallel for if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
25 #pragma omp distribute parallel for if () // expected-error {{expected expression}}
29 #pragma omp distribute parallel for if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
33 #pragma omp distribute parallel for if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp distribute parallel for' are ignored}}
37 #pragma omp distribute parallel for if (argc > 0 ? argv[1] : argv[2])
41 #pragma omp distribute parallel for if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp distribute parallel for' cannot contain more than one 'if' clause}}
45 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_simd_if_messages.cpp17 #pragma omp distribute parallel for simd if // expected-error {{expected '(' after 'if'}}
21 #pragma omp distribute parallel for simd if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
25 #pragma omp distribute parallel for simd if () // expected-error {{expected expression}}
29 #pragma omp distribute parallel for simd if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
33 #pragma omp distribute parallel for simd if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp distribute parallel for simd' are ignored}}
37 #pragma omp distribute parallel for simd if (argc > 0 ? argv[1] : argv[2])
41 #pragma omp distribute parallel for simd if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp distribute parallel for simd' cannot contain more than one 'if' clause}}
45 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_dist_schedule_messages.cpp20 #pragma omp distribute parallel for dist_schedule // expected-error {{expected '(' after 'dist_schedule'}}
24 #pragma omp distribute parallel for dist_schedule ( // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
28 #pragma omp distribute parallel for dist_schedule () // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}}
32 #pragma omp distribute parallel for dist_schedule (static // expected-error {{expected ')'}} expected-note {{to match this '('}}
36 #pragma omp distribute parallel for dist_schedule (static, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
40 #pragma omp distribute parallel for dist_schedule (argc)) // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-warning {{extra tokens at the end of '#pragma omp distribute parallel for' are ignored}}
44 #pragma omp distribute parallel for dist_schedule (static, argc > 0 ? argv[1] : argv[2]) // expected-error2 {{expression must have integral or unscoped enumeration type, not 'char *'}}
48 #pragma omp distribute parallel for dist_schedule (static), dist_schedule (static, 1) // expected-error {{directive '#pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_simd_dist_schedule_messages.cpp20 #pragma omp distribute parallel for simd dist_schedule // expected-error {{expected '(' after 'dist_schedule'}}
24 #pragma omp distribute parallel for simd dist_schedule ( // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
28 #pragma omp distribute parallel for simd dist_schedule () // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}}
32 #pragma omp distribute parallel for simd dist_schedule (static // expected-error {{expected ')'}} expected-note {{to match this '('}}
36 #pragma omp distribute parallel for simd dist_schedule (static, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
40 #pragma omp distribute parallel for simd dist_schedule (argc)) // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-warning {{extra tokens at the end of '#pragma omp distribute parallel for simd' are ignored}}
44 #pragma omp distribute parallel for simd dist_schedule (static, argc > 0 ? argv[1] : argv[2]) // expected-error2 {{expression must have integral or unscoped enumeration type, not 'char *'}}
48 #pragma omp distribute parallel for simd dist_schedule (static), dist_schedule (static, 1) // expected-error {{directive '#pragma omp distribute paralle
[all...]
H A Ddistribute_simd_dist_schedule_messages.cpp21 #pragma omp distribute simd dist_schedule // expected-error {{expected '(' after 'dist_schedule'}}
26 #pragma omp distribute simd dist_schedule ( // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
31 #pragma omp distribute simd dist_schedule () // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}}
36 #pragma omp distribute simd dist_schedule (static // expected-error {{expected ')'}} expected-note {{to match this '('}}
41 #pragma omp distribute simd dist_schedule (static, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
46 #pragma omp distribute simd dist_schedule (argc)) // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-warning {{extra tokens at the end of '#pragma omp distribute simd' are ignored}}
51 #pragma omp distribute simd dist_schedule (static, argc > 0 ? argv[1] : argv[2]) // expected-error2 {{expression must have integral or unscoped enumeration type, not 'char *'}}
56 #pragma omp distribute simd dist_schedule (static), dist_schedule (static, 1) // expected-error {{directive '#pragma omp distribute sim
[all...]
H A Ddistribute_dist_schedule_ast_print.cpp16 #pragma omp distribute dist_schedule(static,10)
17 // CHECK-NEXT: #pragma omp distribute dist_schedule(static, 10)
21 #pragma omp distribute dist_schedule(static,a)
22 // CHECK-NEXT: #pragma omp distribute dist_schedule(static, a)
28 #pragma omp distribute dist_schedule(static,2)
33 // CHECK-NEXT: #pragma omp distribute dist_schedule(static, 2)
39 #pragma omp distribute dist_schedule(static,a)
44 // CHECK-NEXT: #pragma omp distribute dist_schedule(static, a)
51 #pragma omp distribute
52 // CHECK: #pragma omp distribute
[all...]
H A Ddistribute_parallel_for_firstprivate_messages.cpp71 #pragma omp distribute parallel for firstprivate // expected-error {{expected '(' after 'firstprivate'}}
76 #pragma omp distribute parallel for firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
81 #pragma omp distribute parallel for firstprivate() // expected-error {{expected expression}}
86 #pragma omp distribute parallel for firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
91 #pragma omp distribute parallel for firstprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
96 #pragma omp distribute parallel for firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
101 #pragma omp distribute parallel for firstprivate(argc)
106 #pragma omp distribute parallel for firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
111 #pragma omp distribute parallel for firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
116 #pragma omp distribute paralle
[all...]
H A Ddistribute_simd_firstprivate_messages.cpp71 #pragma omp distribute simd firstprivate // expected-error {{expected '(' after 'firstprivate'}}
76 #pragma omp distribute simd firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
81 #pragma omp distribute simd firstprivate() // expected-error {{expected expression}}
86 #pragma omp distribute simd firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
91 #pragma omp distribute simd firstprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
96 #pragma omp distribute simd firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
101 #pragma omp distribute simd firstprivate(argc)
106 #pragma omp distribute simd firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
111 #pragma omp distribute simd firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
116 #pragma omp distribute sim
[all...]
H A Ddistribute_parallel_for_lastprivate_messages.cpp73 #pragma omp distribute parallel for lastprivate // expected-error {{expected '(' after 'lastprivate'}}
78 #pragma omp distribute parallel for lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
83 #pragma omp distribute parallel for lastprivate() // expected-error {{expected expression}}
88 #pragma omp distribute parallel for lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
93 #pragma omp distribute parallel for lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
98 #pragma omp distribute parallel for lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
103 #pragma omp distribute parallel for lastprivate(argc)
108 #pragma omp distribute parallel for lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
113 #pragma omp distribute parallel for lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
118 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_shared_messages.cpp62 #pragma omp distribute parallel for shared // expected-error {{expected '(' after 'shared'}}
69 #pragma omp distribute parallel for shared ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
76 #pragma omp distribute parallel for shared () // expected-error {{expected expression}}
83 #pragma omp distribute parallel for shared (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
90 #pragma omp distribute parallel for shared (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
97 #pragma omp distribute parallel for shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
104 #pragma omp distribute parallel for shared (argc)
111 #pragma omp distribute parallel for shared (S1) // expected-error {{'S1' does not refer to a value}}
118 #pragma omp distribute parallel for shared (a, b, c, d, f)
125 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_simd_lastprivate_messages.cpp73 #pragma omp distribute parallel for simd lastprivate // expected-error {{expected '(' after 'lastprivate'}}
78 #pragma omp distribute parallel for simd lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
83 #pragma omp distribute parallel for simd lastprivate() // expected-error {{expected expression}}
88 #pragma omp distribute parallel for simd lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
93 #pragma omp distribute parallel for simd lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
98 #pragma omp distribute parallel for simd lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
103 #pragma omp distribute parallel for simd lastprivate(argc)
108 #pragma omp distribute parallel for simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
113 #pragma omp distribute parallel for simd lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
118 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_simd_shared_messages.cpp62 #pragma omp distribute parallel for simd shared // expected-error {{expected '(' after 'shared'}}
69 #pragma omp distribute parallel for simd shared ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
76 #pragma omp distribute parallel for simd shared () // expected-error {{expected expression}}
83 #pragma omp distribute parallel for simd shared (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
90 #pragma omp distribute parallel for simd shared (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
97 #pragma omp distribute parallel for simd shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
104 #pragma omp distribute parallel for simd shared (argc)
111 #pragma omp distribute parallel for simd shared (S1) // expected-error {{'S1' does not refer to a value}}
118 #pragma omp distribute parallel for simd shared (a, b, c, d, f)
125 #pragma omp distribute paralle
[all...]
H A Ddistribute_simd_lastprivate_messages.cpp73 #pragma omp distribute simd lastprivate // expected-error {{expected '(' after 'lastprivate'}}
78 #pragma omp distribute simd lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
83 #pragma omp distribute simd lastprivate() // expected-error {{expected expression}}
88 #pragma omp distribute simd lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
93 #pragma omp distribute simd lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
98 #pragma omp distribute simd lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
103 #pragma omp distribute simd lastprivate(argc)
108 #pragma omp distribute simd lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
113 #pragma omp distribute simd lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
118 #pragma omp distribute sim
[all...]
H A Ddistribute_parallel_for_proc_bind_messages.cpp10 #pragma omp distribute parallel for proc_bind // expected-error {{expected '(' after 'proc_bind'}}
15 #pragma omp distribute parallel for proc_bind( // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp distribute parallel for proc_bind() // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
25 #pragma omp distribute parallel for proc_bind(master // expected-error {{expected ')'}} expected-note {{to match this '('}}
30 #pragma omp distribute parallel for proc_bind(close), proc_bind(spread) // expected-error {{directive '#pragma omp distribute parallel for' cannot contain more than one 'proc_bind' clause}}
35 #pragma omp distribute parallel for proc_bind(x) // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
41 #pragma omp distribute parallel for proc_bind(master)
48 #pragma omp distribute parallel for proc_bind(spread)
59 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_reduction_messages.cpp86 #pragma omp distribute parallel for reduction // expected-error {{expected '(' after 'reduction'}}
91 #pragma omp distribute parallel for reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp distribute parallel for' are ignored}}
96 #pragma omp distribute parallel for reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
101 #pragma omp distribute parallel for reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
106 #pragma omp distribute parallel for reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
111 #pragma omp distribute parallel for reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
116 #pragma omp distribute parallel for reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
121 #pragma omp distribute parallel for reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
126 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_simd_default_messages.cpp10 #pragma omp distribute parallel for simd default // expected-error {{expected '(' after 'default'}}
15 #pragma omp distribute parallel for simd default( // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp distribute parallel for simd default() // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
25 #pragma omp distribute parallel for simd default(none // expected-error {{expected ')'}} expected-note {{to match this '('}}
30 #pragma omp distribute parallel for simd default(shared), default(shared) // expected-error {{directive '#pragma omp distribute parallel for simd' cannot contain more than one 'default' clause}}
35 #pragma omp distribute parallel for simd default(x) // expected-error {{expected 'none' or 'shared' in OpenMP clause 'default'}}
40 #pragma omp distribute parallel for simd default(none)
47 #pragma omp distribute parallel for simd default(shared)
58 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_simd_proc_bind_messages.cpp10 #pragma omp distribute parallel for simd proc_bind // expected-error {{expected '(' after 'proc_bind'}}
15 #pragma omp distribute parallel for simd proc_bind( // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
20 #pragma omp distribute parallel for simd proc_bind() // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
25 #pragma omp distribute parallel for simd proc_bind(master // expected-error {{expected ')'}} expected-note {{to match this '('}}
30 #pragma omp distribute parallel for simd proc_bind(close), proc_bind(spread) // expected-error {{directive '#pragma omp distribute parallel for simd' cannot contain more than one 'proc_bind' clause}}
35 #pragma omp distribute parallel for simd proc_bind(x) // expected-error {{expected 'master', 'close' or 'spread' in OpenMP clause 'proc_bind'}}
41 #pragma omp distribute parallel for simd proc_bind(master)
48 #pragma omp distribute parallel for simd proc_bind(spread)
59 #pragma omp distribute paralle
[all...]
H A Ddistribute_parallel_for_simd_reduction_messages.cpp86 #pragma omp distribute parallel for simd reduction // expected-error {{expected '(' after 'reduction'}}
91 #pragma omp distribute parallel for simd reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp distribute parallel for simd' are ignored}}
96 #pragma omp distribute parallel for simd reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
101 #pragma omp distribute parallel for simd reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
106 #pragma omp distribute parallel for simd reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
111 #pragma omp distribute parallel for simd reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
116 #pragma omp distribute parallel for simd reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
121 #pragma omp distribute parallel for simd reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
126 #pragma omp distribute paralle
[all...]
H A Ddistribute_simd_reduction_messages.cpp86 #pragma omp distribute simd reduction // expected-error {{expected '(' after 'reduction'}}
91 #pragma omp distribute simd reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp distribute simd' are ignored}}
96 #pragma omp distribute simd reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
101 #pragma omp distribute simd reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
106 #pragma omp distribute simd reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
111 #pragma omp distribute simd reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
116 #pragma omp distribute simd reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
121 #pragma omp distribute simd reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
126 #pragma omp distribute sim
[all...]

Completed in 754 milliseconds

12345678