Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (394 Bytes)

1
#include <stdio.h>
2

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