
Information about the PDGEMM application
----------------------------------------

This application multiplies two dense square
matrices of size n-by-n.

It uses heterogeneous COLUMN_BASED data distribution
of the matrices.

The inputs are (in parameters.h):

1). n     --- size of the matrix
2). kb    --- blocking factor

The distribution strategy used for computations is 
HDS:

In this strategy, one process is executed per
computer (the computer may have one or more processors). 
The volume of data allocated to a computer is proportional 
to the speed of the computer.

The timesofs are returned for each process arrangement.

HOW TO RUN
----------

shell$ mpcc pdgemm.mpc

shell$ mpicc -I<hmpi install directory>/include -o mxm mxm.c -L<hmpi install directory>/lib -lhmpi -lmpc

You must link the BLAS libraries.

Use 'mpirun' to run the program.

