blob: c9f6475eeb911d090976b752020cdec4b2771905 (
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
|
// See also '../libgomp.oacc-c++/pr96835-1.C'.
#ifndef ALWAYS_INLINE
# define ALWAYS_INLINE
#endif
#pragma omp declare target
template<int sz>
struct vector {
int values_[sz];
vector();
ALWAYS_INLINE
vector(int const& init_val);
ALWAYS_INLINE
int dot(vector o) {
int res = 0;
for (int i = 0; i < sz; ++ i)
res += values_[i] * o.values_[i];
return res;
}
};
template<int sz>
vector<sz>::vector(int const& init_val) {
for (int i = 0; i < sz; ++ i) values_[i] = init_val;
}
template<int sz>
vector<sz>::vector() : vector(0) {
}
#pragma omp end declare target
int main() {
int res = 0;
#pragma omp target map(from:res)
#pragma acc serial copyout(res)
{
vector<4> v1(1);
vector<4> v2(2);
res = v1.dot(v2);
}
if (res != 8)
__builtin_abort();
return 0;
}
|