Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (467 Bytes)

1
#include <stdio.h>
2

    
3
void prthead( void )
4
{
5
  char * perc = "%";
6

    
7
// ---------------------------------------------------------------------
8
  printf( "Program mod2as: Sparse (CRS) Matrix-vector Multiply\n" );
9
  printf( "-------------------------------------------------------\n" );
10
  printf( " #Rows | #Cols |" );
11
  printf( " %s", perc );
12
  printf( "Fill |   Time(s)   |   Mflop/s   |OK|\n" );
13
  printf( "-------------------------------------------------------\n" );
14
}