Home | History | Annotate | Download | only in OpenMP

Lines Matching refs:device

13   #pragma omp target device // expected-error {{expected '(' after 'device'}}
15 #pragma omp target device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target device () // expected-error {{expected expression}}
19 #pragma omp target device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
21 #pragma omp target device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
23 #pragma omp target device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
25 #pragma omp target device (argc + argc)
27 #pragma omp target device (argc), device (argc+1) // expected-error {{directive '#pragma omp target' cannot contain more than one 'device' clause}}
29 #pragma omp target device (S1) // expected-error {{'S1' does not refer to a value}}
31 #pragma omp target device (-2) // expected-error {{argument to 'device' clause must be a non-negative integer value}}
33 #pragma omp target device (-10u)
35 #pragma omp target device (3.14) // expected-error {{expression must have integral or unscoped enumeration type, not 'double'}}