Home | History | Annotate | Download | only in OpenMP

Lines Matching refs:marr

7   double marr[10][10][10];
9 #pragma omp target map(marr[2][0:2][0:2]) // expected-error {{array section does not specify contiguous storage}}
11 #pragma omp target map(marr[:][0:][:])
13 #pragma omp target map(marr[:][1:][:]) // expected-error {{array section does not specify contiguous storage}}
15 #pragma omp target map(marr[:][n:][:])
102 double marr[10][10][10];
116 #pragma omp target map(marr[2][0:2][0:2]) // expected-error {{array section does not specify contiguous storage}}
118 #pragma omp target map(marr[:][0:2][0:2]) // expected-error {{array section does not specify contiguous storage}}
120 #pragma omp target map(marr[2][3][0:2])
122 #pragma omp target map(marr[:][:][:])
124 #pragma omp target map(marr[:2][:][:])
126 #pragma omp target map(marr[arg:][:][:])
128 #pragma omp target map(marr[arg:])
130 #pragma omp target map(marr[arg:][:arg][:]) // correct if arg is the size of dimension 2
132 #pragma omp target map(marr[:arg][:])
134 #pragma omp target map(marr[:arg][n:])
136 #pragma omp target map(marr[:][:arg][n:]) // correct if arg is the size of dimension 2
138 #pragma omp target map(marr[:][:m][n:]) // expected-error {{array section does not specify contiguous storage}}
140 #pragma omp target map(marr[n:m][:arg][n:])
142 #pragma omp target map(marr[:2][:1][:]) // expected-error {{array section does not specify contiguous storage}}
144 #pragma omp target map(marr[:2][1:][:]) // expected-error {{array section does not specify contiguous storage}}
146 #pragma omp target map(marr[:2][:][:1]) // expected-error {{array section does not specify contiguous storage}}
148 #pragma omp target map(marr[:2][:][1:]) // expected-error {{array section does not specify contiguous storage}}
150 #pragma omp target map(marr[:1][:2][:])
152 #pragma omp target map(marr[:1][0][:])
154 #pragma omp target map(marr[:arg][:2][:]) // correct if arg is 1
156 #pragma omp target map(marr[:1][3:1][:2])
158 #pragma omp target map(marr[:1][3:arg][:2]) // correct if arg is 1
160 #pragma omp target map(marr[:1][3:2][:2]) // expected-error {{array section does not specify contiguous storage}}
162 #pragma omp target map(marr[:2][:10][:])
164 #pragma omp target map(marr[:2][:][:5+5])
166 #pragma omp target map(marr[:2][2+2-4:][0:5+5])
169 #pragma omp target map(marr[:1][:2][0]) // expected-error {{array section does not specify contiguous storage}}