~gcrosswhite/charon/projects-ParallelIO

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//@+leo-ver=4-thin
//@+node:gcross.20081204190733.2:@thin matmulspeed.ci
//@@language C++

#include "charon_macros.h"
#include "matrix_multiplication_macros.h"

mainmodule matmulspeed {

    extern module charon;
    extern module matrix_multiplication;

    mainchare matmulspeed {
        entry matmulspeed();
        entry [threaded] void runTest();
    };

    usingArray(double,2)
    array[3D] MatrixMultiplier<double>;

}
//@-node:gcross.20081204190733.2:@thin matmulspeed.ci
//@-leo