Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (287 Bytes)

1
#include <stdio.h>
2

    
3
void prtspeed( int nsize, double time, double mflops, int ok )
4
{
5
// -----------------------------------------------------------------
6
   printf( "%8d|%13.5e|%13.5g| ", nsize, time, mflops );
7
   if ( ok == 0 )
8
      printf( "T|\n" );
9
   else
10
      printf( "F|\n" );
11
}