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
     190
     191
     192
     193
     194
     195
     196
     197
     198
     199
     200
     201
     202
     203
     204
     205
     206
     207
     208
     209
     210
     211
     212
     213
     214
     215
     216
     217
     218
     219
     220
     221
     222
     223
     224
     225
     226
     227
     228
     229
     230
     231
     232
     233
     234
     235
     236
     237
     238
     239
     240
     241
     242
     243
     244
     245
     246
     247
     248
     249
     250
     251
     252
     253
     254
     255
     256
     257
     258
     259
     260
     261
     262
     263
     264
     265
     266
     267
     268
     269
     270
     271
     272
     273
     274
     275
     276
     277
     278
     279
     280
     281
     282
     283
     284
     285
     286
     287
     288
     289
     290
     291
     292
     293
     294
     295
     296
     297
     298
     299
     300
     301
     302
     303
     304
     305
     306
     307
     308
     309
     310
     311
     312
     313
     314
     315
     316
     317
     318
     319
     320
     321
     322
     323
     324
     325
     326
     327
     328
     329
     330
     331
     332
     333
     334
     335
     336
     337
     338
     339
     340
     341
     342
     343
     344
     345
     346
     347
     348
     349
     350
     351
     352
     353
     354
     355
     356
     357
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/times.h>
#include <unistd.h>

#ifndef COLMAJOR
#define COLMAJOR 1
#endif

#ifndef MAXDIM_M
#define MAXDIM_M    4000
#endif

#ifndef MAXDIM_N
#define MAXDIM_N    4000
#endif

#ifndef MAXDIM_K
#define MAXDIM_K    4000
#endif

#ifndef MIN_M
#define MIN_M   100
#endif

#ifndef MIN_N
#define MIN_N   100
#endif

#ifndef MIN_K
#define MIN_K   100
#endif

#ifndef MAX_M
#define MAX_M   7000
#endif

#ifndef MAX_N
#define MAX_N   7000
#endif

#ifndef MAX_K
#define MAX_K   7000
#endif

#ifndef INC_M
#define INC_M   100
#endif

#ifndef INC_N
#define INC_N   100
#endif

#ifndef INC_K
#define INC_K   100
#endif

#ifndef ALPHA
#define ALPHA   1.5
#endif

#ifndef BETA
#define BETA    1.5
#endif


//==============================================================================
// bench
//==============================================================================


//------------------------------------------------------------------------------
// Auxiliary data for benchmarking
//------------------------------------------------------------------------------


double A_bench[MAXDIM_M*MAXDIM_K];
double B_bench[MAXDIM_K*MAXDIM_N];

double C1_bench[MAXDIM_M*MAXDIM_N];
double C2_bench[MAXDIM_M*MAXDIM_N];

//------------------------------------------------------------------------------
// Auxiliary functions for benchmarking
//------------------------------------------------------------------------------

double
walltime_bench()
{
   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_bench(long m, long n, double *A, long incRowA, long incColA)
{
    long 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;
        }
    }
}

double
dasumDiffMatrix_bench(long m, long n,
                      const double *A, long incRowA, long incColA,
                      double *B, long incRowB, long incColB)
{
    long 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;
}


//==============================================================================
// ulmBLAS
//==============================================================================

//------------------------------------------------------------------------------
// A <- B
//------------------------------------------------------------------------------

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

//------------------------------------------------------------------------------
// Y <- Y + alpha*Y
//------------------------------------------------------------------------------

void
dgeaxpy_ulmBLAS(long m, long n,
                double alpha,
                const double *X, long incRowX, long incColX,
                double       *Y, long incRowY, long incColY)
{
    long i, j;

    for (i=0; i<m; ++i) {
        for (j=0; j<n; ++j) {
            Y[i*incRowY+j*incColY] += alpha*X[i*incRowX+j*incColX];
        }
    }
}

//------------------------------------------------------------------------------
// A <- alpha * A
//------------------------------------------------------------------------------

void
dgescal_ulmBLAS(long m, long n,
                double alpha,
                double *X, long incRowX, long incColX)
{
    long i, j;

    if (alpha!=1.0) {
        for (i=0; i<m; ++i) {
            for (j=0; j<n; ++j) {
                X[i*incRowX+j*incColX] *= alpha;
            }
        }
    }
}

//==============================================================================
// refColMajor
//==============================================================================

void
dgemm_refColMajor(long m, long n, long k,
                  double alpha,
                  const double *A, long incRowA, long incColA,
                  const double *B, long incRowB, long incColB,
                  double beta,
                  double *C, long incRowC, long incColC)
{
    long i, j, l;

    dgescal_ulmBLAS(m, n, beta, C, incRowC, incColC);
    for (j=0; j<n; ++j) {
        for (l=0; l<k; ++l) {
            for (i=0; i<m; ++i) {
                C[i*incRowC+j*incColC] += alpha*A[i*incRowA+l*incColA]
                                               *B[l*incRowB+j*incColB];
            }
        }
    }
}

//==============================================================================
// simpleBuffer
//==============================================================================

#ifndef SIMPLE_PUFFER_MC
#define SIMPLE_PUFFER_MC 256
#endif

#ifndef SIMPLE_PUFFER_KC
#define SIMPLE_PUFFER_KC 256
#endif

#ifndef SIMPLE_PUFFER_NC
#define SIMPLE_PUFFER_NC 1024
#endif

double A_simpleBuffer[SIMPLE_PUFFER_MC*SIMPLE_PUFFER_KC];
double B_simpleBuffer[SIMPLE_PUFFER_KC*SIMPLE_PUFFER_NC];
double C_simpleBuffer[SIMPLE_PUFFER_MC*SIMPLE_PUFFER_NC];

void
dgemm_simpleBuffer(long m, long n, long k,
                   double alpha,
                   const double *A, long incRowA, long incColA,
                   const double *B, long incRowB, long incColB,
                   double beta,
                   double *C, long incRowC, long incColC)
{
    long i, j, l;

    long MC = SIMPLE_PUFFER_MC;
    long NC = SIMPLE_PUFFER_NC;
    long KC = SIMPLE_PUFFER_KC;

    long mb = m / MC;
    long nb = n / NC;
    long kb = k / KC;

    long mr = m % MC;
    long nr = n % NC;
    long kr = k % KC;

    dgescal_ulmBLAS(m, n, beta, C, incRowC, incColC);

    for (j=0; j<=nb; ++j) {
        long N = (j<nb || nr==0) ? NC : nr;

        for (l=0; l<=kb; ++l) {
            long K = (l<kb || kr==0) ? KC : kr;

            dgecopy_ulmBLAS(K, N,
                            &B[l*KC*incRowB+j*NC*incColB], incRowB, incColB,
                            B_simpleBuffer, 1, KC);

            for (i=0; i<=mb; ++i) {
                long M = (i<mb || mr==0) ? MC : mr;

                dgecopy_ulmBLAS(M, K,
                                &A[i*MC*incRowA+l*KC*incColA], incRowA, incColA,
                                A_simpleBuffer, 1, MC);

                dgemm_refColMajor(M, N, K,
                                  1.0,
                                  A_simpleBuffer, 1, MC,
                                  B_simpleBuffer, 1, KC,
                                  0.0,
                                  C_simpleBuffer, 1, MC);

                dgeaxpy_ulmBLAS(M, N,
                                alpha,
                                C_simpleBuffer, 1, MC,
                                &C[i*MC*incRowC+j*NC*incColC], incRowC, incColC);
            }
        }
    }
}

int
main()
{
    initMatrix_bench(MAXDIM_M, MAXDIM_K, A_bench, 1, MAXDIM_M);
    initMatrix_bench(MAXDIM_K, MAXDIM_N, B_bench, 1, MAXDIM_K);
    initMatrix_bench(MAXDIM_M, MAXDIM_N, C1_bench, 1, MAXDIM_M);
    dgecopy_ulmBLAS(MAXDIM_M, MAXDIM_N,
                    C1_bench, 1, MAXDIM_M,
                    C2_bench, 1, MAXDIM_M);

    long m, n, k;

    // Header-Zeile für die Ausgabe
    printf("%5s %5s %5s ", "m", "n", "k");
    printf("%5s %5s ", "IRA", "ICA");
    printf("%5s %5s ", "IRB", "ICB");
    printf("%5s %5s ", "IRC", "ICC");
    printf("%20s %9s", "refColMajor: t", "MFLOPS");
    printf("%20s %9s %9s", "refSimpleBuffer: t", "MFLOPS", "diff");
    printf("\n");

    for (m = MIN_M, n = MIN_N, k = MIN_K;
         m <=MAX_M && n <= MAX_N && k <= MAX_K;
         m += INC_M, n += INC_N, k += INC_K)
    {
        double t0, t1, diff;

        long incRowA = (COLMAJOR) ? 1 : k;
        long incColA = (COLMAJOR) ? m : 1;

        long incRowB = (COLMAJOR) ? 1 : n;
        long incColB = (COLMAJOR) ? k : 1;

        long incRowC = (COLMAJOR) ? 1 : n;
        long incColC = (COLMAJOR) ? m : 1;

        printf("%5ld %5ld %5ld ", m, n, k);
        printf("%5ld %5ld ", incRowA, incColA);
        printf("%5ld %5ld ", incRowB, incColB);
        printf("%5ld %5ld ", incRowC, incColC);

        t0 = walltime_bench();
        dgemm_refColMajor(m, n, k, ALPHA,
                          A_bench, incRowA, incColA,
                          B_bench, incRowB, incColB,
                          BETA,
                          C1_bench, incRowC, incColC);
        t1 = walltime_bench() - t0;
        printf("%20.4lf %9.2lf", t1, 2.*m/1000*n/1000*k/t1);

        t0 = walltime_bench();
        dgemm_simpleBuffer(m, n, k, ALPHA,
                           A_bench, incRowA, incColA,
                           B_bench, incRowB, incColB,
                           BETA,
                           C2_bench, incRowC, incColC);
        t1 = walltime_bench() - t0;
        diff = dasumDiffMatrix_bench(m, n,
                                     C1_bench, incRowC, incColC,
                                     C2_bench, incRowC, incColC);
        printf("%20.4lf %9.2lf %9.1e", t1, 2.*m/1000*n/1000*k/t1, diff);
        printf("\n");
    }
    return 0;
}