aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/polybench-syn/linear-algebra/solvers/durbin.c
blob: 677c23cda12a5c25bbd9021c6f35e9851897bea3 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/**
 * This version is stamped on May 10, 2016
 *
 * Contact:
 *   Louis-Noel Pouchet <pouchet.ohio-state.edu>
 *   Tomofumi Yuki <tomofumi.yuki.fr>
 *
 * Web address: http://polybench.sourceforge.net
 */
/* durbin.c: this file is part of PolyBench/C */


#define plus(i) i = i + ONE
/* Include polybench common header. */
static
void init_array (int n,
   int r[ 40 + 0])
{
  int ONE = 1;
  int i, j;

  for (i = 0; i < n; plus(i))
    {
      r[i] = (n+ONE-i);
    }
}



static
int print_array(int n,
   int y[ 40 + 0])

{
  int ONE = 1;
  int i;
  int res = 0;

  for (i = 0; i < n; plus(i)) {
    res  += y[i];
  }
  return res;
}

static
void kernel_durbin(int n,
     int r[ 40 + 0],
     int y[ 40 + 0])
{
 int z[40];
 int alpha;
 int beta;
 int sum;

  int ONE = 1;
 int i,k;

#pragma scop
 y[0] = -r[0];
 beta = 1;
 alpha = -r[0];

 for (k = 1; k < n; plus(k)) {
   beta = (ONE-alpha*alpha)*beta;
   sum = 0;
   for (i=0; i<k; plus(i)) {
      sum += r[k-i-ONE]*y[i];
   }
   alpha = - (r[k] + sum)/beta;

   for (i=0; i<k; plus(i)) {
      z[i] = y[i] + alpha*y[k-i-ONE];
   }
   for (i=0; i<k; plus(i)) {
     y[i] = z[i];
   }
   y[k] = alpha;
 }
#pragma endscop

}


int main()
{

  int n = 40;


  int r[40 + 0]; 
  int y[40 + 0]; 


  init_array (n, r);

  kernel_durbin (n,
   r,
   y);

  return print_array(n, y);

}