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
     103
     104
     105
     106
     107
     108
     109
     110
     111
     112
     113
     114
     115
     116
     117
     118
     119
     120
     121
     122
     123
     124
     125
     126
     127
     128
     129
     130
     131
     132
     133
     134
     135
     136
     137
     138
     139
     140
     141
     142
     143
     144
     145
     146
     147
     148
     149
     150
     151
     152
     153
     154
     155
     156
     157
     158
     159
     160
     161
     162
     163
     164
     165
     166
     167
     168
     169
     170
     171
     172
     173
     174
     175
     176
     177
     178
     179
     180
     181
     182
     183
     184
     185
     186
     187
     188
     189
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/times.h>
#include <unistd.h>

#ifndef MIN_M
#define MIN_M 1000
#endif

#ifndef MIN_N
#define MIN_N 1000
#endif

#ifndef MAX_M
#define MAX_M 10000
#endif

#ifndef MAX_N
#define MAX_N 10000
#endif

#ifndef INCX
#define INCX 1
#endif

#ifndef INCY
#define INCY 1
#endif

#ifndef ALPHA
#define ALPHA 1
#endif

#ifndef BETA
#define BETA 1
#endif

#ifndef T_MIN
#define T_MIN 1
#endif

double A1[MAX_M*MAX_N];
double A2[MAX_M*MAX_N];
double X[MAX_N*INCX];
double Y[MAX_M*INCY];
double Y1[MAX_M*INCY];
double Y2[MAX_M*INCY];

double
walltime()
{
   struct tms    ts;
   static double ClockTick=0.0;

   if (ClockTick==0.0) {
        ClockTick = 1.0 / ((double) sysconf(_SC_CLK_TCK));
   }
   return ((double) times(&ts)) * ClockTick;
}

void
initMatrix(long m, long n, double *A, long incRowA, long incColA)
{
    int i, j;
    for (j=0; j<n; ++j) {
        for (i=0; i<m; ++i) {
            A[i*incRowA+j*incColA] = ((double)rand() - RAND_MAX/2)*200/RAND_MAX;
        }
    }
}

void
copyMatrix(long m, long n,
           const double *A, long incRowA, long incColA,
           double *B, long incRowB, long incColB)
{
    int i, j;
    for (j=0; j<n; ++j) {
        for (i=0; i<m; ++i) {
            B[i*incRowB+j*incColB] = A[i*incRowA+j*incColA];
        }
    }
}

double
asumDiffMatrix(long m, long n,
               const double *A, long incRowA, long incColA,
               double *B, long incRowB, long incColB)
{
    int i, j;

    double asum = 0;

    for (j=0; j<n; ++j) {
        for (i=0; i<m; ++i) {
            asum += fabs(B[i*incRowB+j*incColB] - A[i*incRowA+j*incColA]);
        }
    }
    return asum;
}

//------------------------------------------------------------------------------

void
dgemv(long m, long n,
      double alpha,
      const double *A, long incRowA, long incColA,
      const double *x, long incX,
      double beta,
      double *y, long incY)
{
    /* to be done */
}

//------------------------------------------------------------------------------

int
main()
{
    long runs, i, m, n, incRowA, incColA;
    double t0, t1, t2;
    double diff;
    double alpha = ALPHA;
    double beta  = BETA;

    initMatrix(MAX_M, MAX_N, A1, 1, MAX_M); /* col major */
    initMatrix(MAX_N, 1, X, INCX, 1);
    initMatrix(MAX_M, 1, Y, INCY, 1);

    printf("RUN     M     N");
    printf("  col major  row major");
    printf("  col major  row major");
    printf("       DIFF");
    printf("\n");
    printf("               ");
    printf("   (t in s)   (t in s)");
    printf("   (GFLOPS)   (GFLOPS)");
    printf("           ");
    printf("\n");

    for (i=0, m=MIN_M, n=MIN_M; m<=MAX_M && n<=MAX_N; ++i, m+=100, n+=100) {
        /* col major */
        incRowA = 1; incColA = m;
        t1   = 0;
        runs = 0;
        while (t1<=T_MIN) {
            copyMatrix(MAX_M, 1, Y, INCY, 1, Y1, INCY, 1);
            t0 = walltime();
            dgemv(m, n, alpha,
                  A1, incRowA, incColA,
                  X, INCX,
                  beta,
                  Y1, INCY);
            t1 += walltime() - t0;
            ++runs;
        }
        t1 /= runs;

        /* row major */
        incRowA = n; incColA = 1;
        copyMatrix(m, n, A1, 1, m, A2, n, 1); /* convert to row major */
        t2   = 0;
        runs = 0;
        while (t2<=T_MIN) {
            copyMatrix(MAX_M, 1, Y, INCY, 1, Y2, INCY, 1);
            t0 = walltime();
            dgemv(m, n, alpha,
                  A2, incRowA, incColA,
                  X, INCX,
                  beta,
                  Y2, INCY);
            t2 += walltime() - t0;
            ++runs;
        }
        t2 /= runs;

        diff = asumDiffMatrix(m, 1, Y1, INCY, 1, Y2, INCY, 1);

        printf("%3ld %5ld %5ld ", i, m, n);
        printf("%10.4lf %10.4lf ", t1, t2);
        printf("%10.4lf ", 2*(m/1000.0)*(n/1000.0)/t1);
        printf("%10.4lf ", 2*(m/1000.0)*(n/1000.0)/t2);
        printf("%10.4lf ", diff);
        printf("\n");
    }

    return 0;
}