aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/polybench-syn-div/linear-algebra/blas/trmm.c
blob: 3fdbc45250468dbc186bea6d1f9c5dc5529f3b34 (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
/**
 * 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
 */
/* trmm.c: this file is part of PolyBench/C */

#ifndef SYNTHESIS
  #include <stdio.h>
#endif
#define plus(i) i = i + ONE
  static
void init_array(int m, int n,
    int *alpha,
    int A[ 20 + 0][20 + 0],
    int B[ 20 + 0][30 + 0])
{
  int i, j;
  int ONE = 1;

  *alpha = 3;
  for (i = 0; i < m; plus(i)) {
    for (j = 0; j < i; plus(j)) {
      A[i][j] = (int) (((i+j) % m) / m);
    }
    A[i][i] = 1;
    for (j = 0; j < n; plus(j)) {
      B[i][j] = (int)(((n+i-j) % n) / n);
    }
  }

}




  static
int print_array(int m, int n,
    int B[ 20 + 0][30 + 0])
{
  int i, j;
  int ONE = 1;
  int res = 0;

  for (i = 0; i < m; plus(i))
    for (j = 0; j < n; plus(j)) {
      res ^= B[i][j];
    }
#ifndef SYNTHESIS
  printf("finished %u\n", res);
#endif
  return res;
}




  static
void kernel_trmm(int m, int n,
    int alpha,
    int A[ 20 + 0][20 + 0],
    int B[ 20 + 0][30 + 0])
{
  int i, j, k;
  int ONE = 1;
  for (i = 0; i < m; plus(i))
    for (j = 0; j < n; plus(j)) {
      for (k = i+ONE; k < m; plus(k))
        B[i][j] += A[k][i] * B[k][j];
      B[i][j] = alpha * B[i][j];
    }

}


int main()
{

  int m = 20;
  int n = 30;


  int alpha;
  int A[20 + 0][20 + 0]; 
  int B[20 + 0][30 + 0]; 


  init_array (m, n, &alpha, A, B);


  kernel_trmm (m, n, alpha, A, B);

  return print_array(m, n, B);

}