6 A (const A &x) { t = x.t; }
15 M (const M &x) { t = x.t; }
24 B (const B &x) { t = x.t; }
47 #pragma omp declare reduction(+:A<int>:omp_out.t += omp_in.t)
48 #pragma omp declare reduction(+:A<char>:add (omp_out, omp_in)) initializer(zero (omp_priv))
49 #pragma omp declare reduction(*:M<int>:omp_out.t *= omp_in.t) initializer(omp_priv = 1)
50 #pragma omp declare reduction(|:A<unsigned long long>:orit (&omp_in, &omp_out))
51 #pragma omp declare reduction(&:B<long>:omp_out.t = omp_out.t & omp_in.t) initializer(orit (&omp_priv, &omp_orig))
52 #pragma omp declare reduction(maxb:short:omp_out = omp_in > omp_out ? omp_in : omp_out) initializer(omp_priv = -6)
57 __attribute__((noinline, noclone)) void
58 foo (A<int> (*&x)[3][N], M<int> *y, B<long> (&w)[1][N], int p1, long p2, long p3, int p4,
59 int p5, long p6, short p7)
61 A<unsigned long long> a[p7 + 4];
64 for (int i = 0; i < p7; i++)
66 #pragma omp parallel for reduction(+:x[0:p1 + 1][:p2 + N - 2], z[:p3]) \
67 reduction(*:y[:p4]) reduction(|:a[:p5 - N + 2]) \
68 reduction(&:w[0:p6 - 3 + N][:p6]) reduction(maxb:b)
69 for (int i = 0; i < 128; i++)
71 x[i / 64][i % 3][(i / 4) & 1].t += i;
78 z[i / 32].t += (i & 3);
81 a[i / 32].t |= 1ULL << (i & 30);
82 w[0][i & 1].t &= ~(1L << (i / 17 * 3));
94 for (int i = 0; i < 9; i++)
95 if (a[i].t != (i < 4 ? 0x55555555ULL : 0))
97 if (bb[0] != 78 || bb[1] != 12 || bb[N] != 22 || bb[3] != 84 || bb[4] != 127)
102 A<int> (*p3)[3][2] = &a3[1];
103 M<int> y3[5] = { 0, 1, 1, 1, 0 };
114 A<unsigned long long> a[9];
115 S() : x(p3), y(y3+1), w(w3), z(), a(), b() {}
116 __attribute__((noinline, noclone)) void foo (int, long, long, int, int, long, short);
121 S<N>::foo (int p1, long p2, long p3, int p4, int p5, long p6, short p7)
123 #pragma omp parallel for reduction(+:x[0:p1 + 1][:p2][0:N], z[:p3 + N - 2]) \
124 reduction(*:y[:p4]) reduction(|:a[:p5]) \
125 reduction(&:w[0:p6 - 3 + N][:p6]) reduction(maxb:b)
126 for (int i = 0; i < 128; i++)
128 x[i / 64][i % 3][(i / 4) & 1].t += i;
135 z[i / 32].t += (i & 3);
138 a[i / 32].t |= 1ULL << (i & 30);
139 w[0][i & 1].t &= ~(1L << (i / 17 * 3));
148 if ((i % 192) > b[4])
157 static int a2[4][3][2] = {{{ 0, 0 }, { 0, 0 }, { 0, 0 }},
158 {{ 312, 381 }, { 295, 356 }, { 337, 335 }},
159 {{ 1041, 975 }, { 1016, 1085 }, { 935, 1060 }},
160 {{ 0, 0 }, { 0, 0 }, { 0, 0 }}};
161 A<int> (*p)[3][2] = &a[1];
162 M<int> y[5] = { 0, 1, 1, 1, 0 };
163 int y2[5] = { 0, 6561, 2401, 289, 0 };
164 char z2[10] = { 48, 49, 50, 51, 0, 0, 0, 0, 0, 0 };
166 foo<2> (p, y + 1, w, 1, 3L, 4L, 3, 4, 2L, 5);
167 for (int i = 0; i < 4; i++)
168 for (int j = 0; j < 3; j++)
169 for (int k = 0; k < 2; k++)
170 if (a[i][j][k].t != a2[i][j][k])
172 for (int i = 0; i < 5; i++)
175 for (int i = 0; i < 10; i++)
178 if (w[0][0].t != ~0x249249L || w[0][1].t != ~0x249249L)
181 s.foo (1, 3L, 4L, 3, 4, 2L, 5);
182 for (int i = 0; i < 9; i++)
183 if (s.a[i].t != (i < 4 ? 0x55555555ULL : 0))
185 for (int i = 0; i < 4; i++)
186 for (int j = 0; j < 3; j++)
187 for (int k = 0; k < 2; k++)
188 if (a3[i][j][k].t != a2[i][j][k])
190 for (int i = 0; i < 5; i++)
191 if (y3[i].t != y2[i])
193 for (int i = 0; i < 10; i++)
194 if (s.z[i].t != z2[i])
196 if (w3[0][0].t != ~0x249249L || w3[0][1].t != ~0x249249L)
198 if (s.b[0] != 78 || s.b[1] != 12 || s.b[2] != 22
199 || s.b[3] != 84 || s.b[4] != 127)