Home
last modified time | relevance | path

Searched refs:ind2 (Results 1 – 25 of 39) sorted by relevance

12

/llvm-project-15.0.7/clang/test/OpenMP/
H A Dfor_linear_messages.cpp60 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
62 #pragma omp for linear(ind2:L) in test_template()
64 T cur = arr[(int)ind2]; in test_template()
65 ind2 += L; in test_template()
72 int ind2 = 0; in test_warn() local
74 #pragma omp for linear(ind2:LEN) in test_warn()
76 ind2 += LEN; in test_warn()
78 return ind2; in test_warn()
H A Dfor_simd_linear_messages.cpp60 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
62 #pragma omp for simd linear(ind2:L) in test_template()
64 T cur = arr[(int)ind2]; in test_template()
65 ind2 += L; in test_template()
72 int ind2 = 0; in test_warn() local
74 #pragma omp for simd linear(ind2:LEN) in test_warn()
76 ind2 += LEN; in test_warn()
78 return ind2; in test_warn()
H A Dparallel_for_linear_messages.cpp70 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
72 #pragma omp parallel for linear(ind2 : L) in test_template()
74 T cur = arr[(int)ind2]; in test_template()
75 ind2 += L; in test_template()
83 int ind2 = 0; in test_warn() local
85 #pragma omp parallel for linear(ind2 : LEN) in test_warn()
87 ind2 += LEN; in test_warn()
89 return ind2; in test_warn()
H A Dtarget_simd_linear_messages.cpp80 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
82 #pragma omp target simd linear(ind2 : L) in test_template()
84 T cur = arr[(int)ind2]; in test_template()
85 ind2 += L; in test_template()
93 int ind2 = 0; in test_warn() local
95 #pragma omp target simd linear(ind2 : LEN) in test_warn()
97 ind2 += LEN; in test_warn()
99 return ind2; in test_warn()
H A Dtarget_parallel_for_linear_messages.cpp79 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
81 #pragma omp target parallel for linear(ind2 : L) in test_template()
83 T cur = arr[(int)ind2]; in test_template()
84 ind2 += L; in test_template()
92 int ind2 = 0; in test_warn() local
94 #pragma omp target parallel for linear(ind2 : LEN) in test_warn()
96 ind2 += LEN; in test_warn()
98 return ind2; in test_warn()
H A Dparallel_for_simd_linear_messages.cpp59 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
61 #pragma omp parallel for simd linear(ind2:L) in test_template()
63 T cur = arr[(int)ind2]; in test_template()
64 ind2 += L; in test_template()
71 int ind2 = 0; in test_warn() local
73 #pragma omp parallel for simd linear(ind2:LEN) in test_warn()
75 ind2 += LEN; in test_warn()
77 return ind2; in test_warn()
H A Dtarget_teams_distribute_parallel_for_simd_linear_messages.cpp83 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
85 #pragma omp target teams distribute parallel for simd linear(ind2:L) // expected-error {{argument o… in test_template()
87 T cur = arr[(int)ind2]; in test_template()
88 ind2 += L; in test_template()
95 int ind2 = 0; in test_warn() local
97 …#pragma omp target teams distribute parallel for simd linear(ind2:LEN) // expected-warning {{zero … in test_warn()
99 ind2 += LEN; in test_warn()
101 return ind2; in test_warn()
H A Dteams_distribute_simd_linear_messages.cpp85 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
88 #pragma omp teams distribute simd linear(ind2:L) // expected-error {{argument of a linear clause sh… in test_template()
90 T cur = arr[(int)ind2]; in test_template()
91 ind2 += L; in test_template()
98 int ind2 = 0; in test_warn() local
101 …#pragma omp teams distribute simd linear(ind2:LEN) // expected-warning {{zero linear step (ind2 sh… in test_warn()
103 ind2 += LEN; in test_warn()
105 return ind2; in test_warn()
H A Dtarget_teams_distribute_simd_linear_messages.cpp83 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
85 #pragma omp target teams distribute simd linear(ind2:L) // expected-error {{argument of a linear cl… in test_template()
87 T cur = arr[(int)ind2]; in test_template()
88 ind2 += L; in test_template()
95 int ind2 = 0; in test_warn() local
97 …#pragma omp target teams distribute simd linear(ind2:LEN) // expected-warning {{zero linear step (… in test_warn()
99 ind2 += LEN; in test_warn()
101 return ind2; in test_warn()
H A Ddistribute_simd_linear_messages.cpp95 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
99 #pragma omp distribute simd linear(ind2:L) // expected-error {{argument of a linear clause should b… in test_template()
101 T cur = arr[(int)ind2]; in test_template()
102 ind2 += L; in test_template()
109 int ind2 = 0; in test_warn() local
112 …#pragma omp parallel for simd linear(ind2:LEN) // expected-warning {{zero linear step (ind2 should… in test_warn()
114 ind2 += LEN; in test_warn()
116 return ind2; in test_warn()
H A Dtarget_parallel_for_simd_linear_messages.cpp81 T ind2 = -num * L; // expected-note {{'ind2' defined here}} in test_template() local
83 #pragma omp target parallel for simd linear(ind2 : L) in test_template()
85 T cur = arr[(int)ind2]; in test_template()
86 ind2 += L; in test_template()
94 int ind2 = 0; in test_warn() local
96 #pragma omp target parallel for simd linear(ind2 : LEN) in test_warn()
98 ind2 += LEN; in test_warn()
100 return ind2; in test_warn()
H A Dteams_distribute_parallel_for_simd_linear_messages.cpp85 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
88 #pragma omp teams distribute parallel for simd linear(ind2:L) // expected-error {{argument of a lin… in test_template()
90 T cur = arr[(int)ind2]; in test_template()
91 ind2 += L; in test_template()
98 int ind2 = 0; in test_warn() local
101 …#pragma omp teams distribute parallel for simd linear(ind2:LEN) // expected-warning {{zero linear … in test_warn()
103 ind2 += LEN; in test_warn()
105 return ind2; in test_warn()
H A Dfor_simd_aligned_messages.cpp53 T ind2 = - num * L; in test_template() local
58 T cur = arr[(int)ind2]; in test_template()
59 ind2 += L; in test_template()
69 int *ind2 = 0; in test_warn() local
71 #pragma omp for simd aligned(ind2:LEN) in test_warn()
73 ind2 += LEN; in test_warn()
H A Dsimd_aligned_messages.cpp55 T ind2 = - num * L; in test_template() local
60 T cur = arr[(int)ind2]; in test_template()
61 ind2 += L; in test_template()
71 int *ind2 = 0; in test_warn() local
73 #pragma omp simd aligned(ind2:LEN) in test_warn()
75 ind2 += LEN; in test_warn()
H A Dsimd_linear_messages.cpp59 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
61 #pragma omp simd linear(ind2:L) in test_template()
63 T cur = arr[(int)ind2]; in test_template()
64 ind2 += L; in test_template()
71 int ind2 = 0; in test_warn() local
73 #pragma omp simd linear(ind2:LEN) in test_warn()
75 ind2 += LEN; in test_warn()
77 return ind2; in test_warn()
H A Ddistribute_parallel_for_simd_linear_messages.cpp95 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
99 #pragma omp distribute parallel for simd linear(ind2:L) // expected-error {{argument of a linear cl… in test_template()
101 T cur = arr[(int)ind2]; in test_template()
102 ind2 += L; in test_template()
109 int ind2 = 0; in test_warn() local
112 …#pragma omp parallel for simd linear(ind2:LEN) // expected-warning {{zero linear step (ind2 should… in test_warn()
114 ind2 += LEN; in test_warn()
116 return ind2; in test_warn()
H A Dtaskloop_simd_linear_messages.cpp69 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
71 #pragma omp taskloop simd linear(ind2:L) in test_template()
73 T cur = arr[(int)ind2]; in test_template()
74 ind2 += L; in test_template()
81 int ind2 = 0; in test_warn() local
83 #pragma omp taskloop simd linear(ind2:LEN) in test_warn()
85 ind2 += LEN; in test_warn()
87 return ind2; in test_warn()
H A Dtarget_simd_aligned_messages.cpp53 T ind2 = - num * L; in test_template() local
58 T cur = arr[(int)ind2]; in test_template()
59 ind2 += L; in test_template()
69 int *ind2 = 0; in test_warn() local
71 #pragma omp target simd aligned(ind2:LEN) in test_warn()
73 ind2 += LEN; in test_warn()
H A Dtarget_parallel_for_simd_aligned_messages.cpp53 T ind2 = - num * L; in test_template() local
58 T cur = arr[(int)ind2]; in test_template()
59 ind2 += L; in test_template()
69 int *ind2 = 0; in test_warn() local
71 #pragma omp target parallel for simd aligned(ind2:LEN) in test_warn()
73 ind2 += LEN; in test_warn()
H A Dparallel_for_simd_aligned_messages.cpp53 T ind2 = - num * L; in test_template() local
58 T cur = arr[(int)ind2]; in test_template()
59 ind2 += L; in test_template()
69 int *ind2 = 0; in test_warn() local
71 #pragma omp parallel for simd aligned(ind2:LEN) in test_warn()
73 ind2 += LEN; in test_warn()
H A Dmaster_taskloop_simd_aligned_messages.cpp53 T ind2 = - num * L; in test_template() local
58 T cur = arr[(int)ind2]; in test_template()
59 ind2 += L; in test_template()
69 int *ind2 = 0; in test_warn() local
71 #pragma omp master taskloop simd aligned(ind2:LEN) in test_warn()
73 ind2 += LEN; in test_warn()
H A Dmasked_taskloop_simd_aligned_messages.cpp53 T ind2 = - num * L; in test_template() local
58 T cur = arr[(int)ind2]; in test_template()
59 ind2 += L; in test_template()
69 int *ind2 = 0; in test_warn() local
71 #pragma omp masked taskloop simd aligned(ind2:LEN) in test_warn()
73 ind2 += LEN; in test_warn()
H A Dtaskloop_simd_aligned_messages.cpp53 T ind2 = - num * L; in test_template() local
58 T cur = arr[(int)ind2]; in test_template()
59 ind2 += L; in test_template()
69 int *ind2 = 0; in test_warn() local
71 #pragma omp taskloop simd aligned(ind2:LEN) in test_warn()
73 ind2 += LEN; in test_warn()
H A Dmaster_taskloop_simd_linear_messages.cpp69 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
71 #pragma omp master taskloop simd linear(ind2:L) in test_template()
73 T cur = arr[(int)ind2]; in test_template()
74 ind2 += L; in test_template()
81 int ind2 = 0; in test_warn() local
83 #pragma omp master taskloop simd linear(ind2:LEN) in test_warn()
85 ind2 += LEN; in test_warn()
87 return ind2; in test_warn()
H A Dmasked_taskloop_simd_linear_messages.cpp69 T ind2 = - num * L; // expected-note {{'ind2' defined here}} in test_template() local
71 #pragma omp master taskloop simd linear(ind2:L) in test_template()
73 T cur = arr[(int)ind2]; in test_template()
74 ind2 += L; in test_template()
81 int ind2 = 0; in test_warn() local
83 #pragma omp master taskloop simd linear(ind2:LEN) in test_warn()
85 ind2 += LEN; in test_warn()
87 return ind2; in test_warn()

12