HomeSort by relevance Sort by last modified time
    Searched refs:S2sc (Results 26 - 50 of 58) sorted by null

12 3

  /external/clang/test/OpenMP/
target_parallel_for_simd_lastprivate_messages.cpp 21 static const float S2sc;
23 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
194 #pragma omp target parallel for simd lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivate}}
taskloop_lastprivate_messages.cpp 21 static const float S2sc;
23 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
231 #pragma omp taskloop lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivate}}
for_reduction_messages.cpp 22 static const float S2sc;
24 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
170 #pragma omp for reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
327 #pragma omp for reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
for_simd_reduction_messages.cpp 22 static const float S2sc;
24 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
169 #pragma omp for simd reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
318 #pragma omp for simd reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
parallel_for_reduction_messages.cpp 22 static const float S2sc;
24 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
147 #pragma omp parallel for reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
269 #pragma omp parallel for reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
parallel_for_simd_reduction_messages.cpp 22 static const float S2sc;
24 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
147 #pragma omp parallel for simd reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
269 #pragma omp parallel for simd reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
sections_reduction_messages.cpp 22 static const float S2sc;
24 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
190 #pragma omp sections reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
370 #pragma omp sections reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
simd_reduction_messages.cpp 22 static const float S2sc;
24 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
147 #pragma omp simd reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
272 #pragma omp simd reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
target_parallel_for_reduction_messages.cpp 22 static const float S2sc;
24 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
147 #pragma omp target parallel for reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
269 #pragma omp target parallel for reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
target_parallel_for_simd_reduction_messages.cpp 22 static const float S2sc;
24 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
147 #pragma omp target parallel for simd reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
269 #pragma omp target parallel for simd reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
teams_reduction_messages.cpp 22 static const float S2sc;
24 const float S2::S2sc = 0; // expected-note 2 {{'S2sc' defined here}}
148 #pragma omp teams reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
278 #pragma omp teams reduction(&& : S2::S2sc) // expected-error {{const-qualified list item cannot be reduction}}
target_data_use_device_ptr_messages.cpp 87 static const float S2sc;
89 const float S2::S2sc = 0;
target_is_device_ptr_messages.cpp 95 static const float S2sc;
97 const float S2::S2sc = 0;
target_parallel_for_map_messages.cpp 18 static const float S2sc; // expected-note 4 {{mappable type cannot contain static members}}
20 const float S2::S2sc = 0;
95 #pragma omp target parallel for map(S2::S2sc)
125 #pragma omp target parallel for map(S2::S2sc)
229 #pragma omp target parallel for map(S2::S2sc)
target_parallel_for_simd_map_messages.cpp 18 static const float S2sc; // expected-note 4 {{mappable type cannot contain static members}}
20 const float S2::S2sc = 0;
95 #pragma omp target parallel for simd map(S2::S2sc)
125 #pragma omp target parallel for simd map(S2::S2sc)
229 #pragma omp target parallel for simd map(S2::S2sc)
distribute_parallel_for_firstprivate_messages.cpp 19 static const float S2sc;
21 const float S2::S2sc = 0;
273 #pragma omp distribute parallel for firstprivate(S2::S2sc) // OK
distribute_parallel_for_lastprivate_messages.cpp 21 static const float S2sc;
23 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
263 #pragma omp distribute parallel for lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivate}}
distribute_parallel_for_simd_lastprivate_messages.cpp 21 static const float S2sc;
23 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
263 #pragma omp distribute parallel for simd lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivate}}
distribute_simd_firstprivate_messages.cpp 19 static const float S2sc;
21 const float S2::S2sc = 0;
273 #pragma omp distribute simd firstprivate(S2::S2sc) // OK
distribute_simd_lastprivate_messages.cpp 21 static const float S2sc;
23 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
263 #pragma omp distribute simd lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivate}}
for_firstprivate_messages.cpp 19 static const float S2sc;
21 const float S2::S2sc = 0;
241 #pragma omp for firstprivate(S2::S2sc) // OK
for_simd_firstprivate_messages.cpp 19 static const float S2sc;
21 const float S2::S2sc = 0;
238 #pragma omp for simd firstprivate(S2::S2sc) // OK
parallel_for_simd_firstprivate_messages.cpp 19 static const float S2sc;
21 const float S2::S2sc = 0;
205 #pragma omp parallel for simd firstprivate(S2::S2sc) // OK
target_parallel_for_firstprivate_messages.cpp 19 static const float S2sc;
21 const float S2::S2sc = 0;
203 #pragma omp target parallel for firstprivate(S2::S2sc) // OK
target_parallel_for_simd_firstprivate_messages.cpp 19 static const float S2sc;
21 const float S2::S2sc = 0;
203 #pragma omp target parallel for simd firstprivate(S2::S2sc) // OK

Completed in 934 milliseconds

12 3