Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (315 Bytes)

1
#include <stdio.h>
2

    
3
void prtspeed( int n, double time1, double mflops, double time2, 
4
               double frac, int ok )
5
{
6
   printf( "%8d|  %11.4g |  %11.4g |  %11.4g | %7.3f |",
7
            n, time1, mflops, time2, frac );
8
   if ( ok == 0 )
9
      printf( "   T   |\n" );
10
   else
11
      printf( "   F   |\n" );
12
}