| /llvm-project-15.0.7/clang/test/OpenMP/ |
| H A D | for_linear_messages.cpp | 60 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 D | for_simd_linear_messages.cpp | 60 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 D | parallel_for_linear_messages.cpp | 70 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 D | target_simd_linear_messages.cpp | 80 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 D | target_parallel_for_linear_messages.cpp | 79 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 D | parallel_for_simd_linear_messages.cpp | 59 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 D | target_teams_distribute_parallel_for_simd_linear_messages.cpp | 83 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 D | teams_distribute_simd_linear_messages.cpp | 85 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 D | target_teams_distribute_simd_linear_messages.cpp | 83 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 D | distribute_simd_linear_messages.cpp | 95 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 D | target_parallel_for_simd_linear_messages.cpp | 81 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 D | teams_distribute_parallel_for_simd_linear_messages.cpp | 85 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 D | for_simd_aligned_messages.cpp | 53 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 D | simd_aligned_messages.cpp | 55 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 D | simd_linear_messages.cpp | 59 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 D | distribute_parallel_for_simd_linear_messages.cpp | 95 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 D | taskloop_simd_linear_messages.cpp | 69 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 D | target_simd_aligned_messages.cpp | 53 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 D | target_parallel_for_simd_aligned_messages.cpp | 53 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 D | parallel_for_simd_aligned_messages.cpp | 53 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 D | master_taskloop_simd_aligned_messages.cpp | 53 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 D | masked_taskloop_simd_aligned_messages.cpp | 53 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 D | taskloop_simd_aligned_messages.cpp | 53 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 D | master_taskloop_simd_linear_messages.cpp | 69 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 D | masked_taskloop_simd_linear_messages.cpp | 69 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()
|