-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy path1.chpl
54 lines (44 loc) · 1.16 KB
/
1.chpl
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
/* The Computer Language Benchmarks Game
https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
contributed by Lydia Duncan, Albert Sidelnik, and Brad Chamberlain
derived from the GNU C version by Sebastien Loisel and the C# version
by Isaac Gouy
removed parallelization
*/
config const n = 500; // the size of A (n x n), u and v (n-vectors)
proc main() {
var tmp, u, v: [0..#n] real;
u = 1.0;
for 1..10 {
multiplyAtAv(u, tmp, v); // v = A^T*A*u
multiplyAtAv(v, tmp, u); // u = A^T*A*v
}
writef("%.9dr\n", sqrt(+ reduce (u*v) / + reduce (v*v)));
}
//
// Compute A-transpose * A * v ('AtAv').
//
proc multiplyAtAv(v, tmp, AtAv) {
multiplyAv(v, tmp);
multiplyAtv(tmp, AtAv);
}
//
// Compute A * v ('Av').
//
proc multiplyAv(v: [?Dv], Av: [?DAv]) {
for i in DAv do
Av[i] = + reduce (for j in Dv do A[i,j] * v[j]);
}
//
// Compute A-tranpose * v ('Atv').
//
proc multiplyAtv(v: [?Dv], Atv: [?DAtv]) {
for i in DAtv do
Atv[i] = + reduce (for j in Dv do A[j,i] * v[j]);
}
//
// Compute element i,j of the conceptually infinite matrix A.
//
inline proc A(i, j) {
return 1.0 / ((((i+j) * (i+j+1)) / 2) + i + 1);
}