Statistics
| Branch: | Revision:

root / synthbench / euroben-ports / base / C-MPI / mod2am / prthead.c @ 0:839f52ef7657

History | View | Annotate | Download (446 Bytes)

1
#include <stdio.h>
2

    
3
void prthead( int nodes )
4
{
5
   printf( "mod2am: Matrix-matrix multiply test C(m,n) = A(m,l)*B(l,n)\n" );
6
   printf( "No. of processes = %d\n", nodes );
7
   printf( "-------------------------------------------------\n" );
8
   printf( "   Problem size  |            |            |    |\n" );
9
   printf( "  m  |  l  |  n  |  Time (s)  |  (Mflop/s) | OK?|\n" );
10
   printf( "-------------------------------------------------\n" );
11
}