Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (525 Bytes)

1
#include <stdio.h>
2

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

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