Home | History | Annotate | Download | only in OpenMP

Lines Matching refs:schedule

14   #pragma omp for simd schedule // expected-error {{expected '(' after 'schedule'}}
16 #pragma omp for simd schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp for simd schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}}
20 #pragma omp for simd schedule (auto // expected-error {{expected ')'}} expected-note {{to match this '('}}
22 #pragma omp for simd schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
24 #pragma omp for simd schedule (auto, // expected-error {{expected ')'}} expected-note {{to match this '('}}
26 #pragma omp for simd schedule (runtime, 3) // expected-error {{expected ')'}} expected-note {{to match this '('}}
29 #pragma omp for simd schedule (guided argc
31 // expected-error@+1 2 {{argument to 'schedule' clause must be a strictly positive integer value}}
32 #pragma omp for simd schedule (static, ST // expected-error {{expected ')'}} expected-note {{to match this '('}}
34 #pragma omp for simd schedule (dynamic, 1)) // expected-warning {{extra tokens at the end of '#pragma omp for simd' are ignored}}
36 #pragma omp for simd schedule (guided, (ST > 0) ? 1 + ST : 2)
38 // expected-error@+2 2 {{directive '#pragma omp for simd' cannot contain more than one 'schedule' clause}}
39 // expected-error@+1 {{argument to 'schedule' clause must be a strictly positive integer value}}
40 #pragma omp for simd schedule (static, foobool(argc)), schedule (dynamic, true), schedule (guided, -5)
42 #pragma omp for simd schedule (static, S) // expected-error {{'S' does not refer to a value}}
45 #pragma omp for simd schedule (guided, argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}}
47 #pragma omp for simd schedule (dynamic, 1)
49 #pragma omp for simd schedule (static, N) // expected-error {{argument to 'schedule' clause must be a strictly positive integer value}}
55 #pragma omp for simd schedule // expected-error {{expected '(' after 'schedule'}}
57 #pragma omp for simd schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
59 #pragma omp for simd schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}}
61 #pragma omp for simd schedule (auto // expected-error {{expected ')'}} expected-note {{to match this '('}}
63 #pragma omp for simd schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
65 #pragma omp for simd schedule (auto, // expected-error {{expected ')'}} expected-note {{to match this '('}}
67 #pragma omp for simd schedule (runtime, 3) // expected-error {{expected ')'}} expected-note {{to match this '('}}
69 #pragma omp for simd schedule (guided, 4 // expected-error {{expected ')'}} expected-note {{to match this '('}}
71 #pragma omp for simd schedule (static, 2+2)) // expected-warning {{extra tokens at the end of '#pragma omp for simd' are ignored}}
73 #pragma omp for simd schedule (dynamic, foobool(1) > 0 ? 1 : 2)
75 // expected-error@+2 2 {{directive '#pragma omp for simd' cannot contain more than one 'schedule' clause}}
76 // expected-error@+1 {{argument to 'schedule' clause must be a strictly positive integer value}}
77 #pragma omp for simd schedule (guided, foobool(argc)), schedule (static, true), schedule (dynamic, -5)
79 #pragma omp for simd schedule (guided, S1) // expected-error {{'S1' does not refer to a value}}
82 #pragma omp for simd schedule (static, argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}}
86 #pragma omp for simd schedule(dynamic, schedule(tmain<int, char, -1, -2>(argc, argv) // expected-error 2 {{expected ')'}} expected-note 2 {{to match this '('}}