blob: 5e87139ccfb1b71d563cf6670c57408061be95af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/* PR middle-end/101167 */
extern
#ifdef __cplusplus
"C"
#endif
void abort (void);
struct S { int a, b, c[2]; };
void
init (struct S *x)
{
x->a = 0;
x->b = 0;
x->c[0] = 0;
x->c[1] = 0;
}
void
merge (struct S *x, struct S *y)
{
x->a += y->a;
x->b += y->b;
}
#pragma omp declare reduction (+: struct S : merge (&omp_out, &omp_in)) initializer (init (&omp_priv))
void
foo (struct S x)
{
#pragma omp taskgroup task_reduction (+: x)
{
#pragma omp task in_reduction (+: x)
{
x.a++;
x.b++;
}
#pragma omp task in_reduction (+: x)
{
x.a += 4;
x.b += 14;
}
#pragma omp task in_reduction (+: x)
{
x.a += 9;
x.b += 19;
}
}
if (x.a != 56 || x.b != 86)
abort ();
}
int
main ()
{
struct S x = { 42, 52 };
#pragma omp parallel master num_threads(3)
foo (x);
return 0;
}
|