Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (728 Bytes)

1
#include <stdio.h>
2

    
3
void prthead( int nodes )
4
{
5
   printf( "Program mod2f computes 1-D, complex-to-complex FFTs:\n" );
6
   printf( "----------------------------------------------------\n" );
7
   printf( "No. of processes = %d\n", nodes );
8
   printf( "        FFT results, Radix-4 algorithm\n" );
9
   printf( "------------------------------------------------------------" );
10
   printf( "------------\n" );
11
   printf( " Length |  Total Time  |    Speed     |  Comm. Time  |" );
12
   printf( "  Frac.  | Check |\n" );
13
   printf( "   n =  |     (sec)    |  (Mflop/s)   |     (sec)    |" );
14
   printf( "    (%)  |   OK  |\n" );
15
   printf( "------------------------------------------------------------" );
16
   printf( "------------\n" );
17
}