Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more cleanups in NAS
[simgrid.git] / examples / smpi / NAS / common / c_print_results.c
index d7417fb..942c370 100644 (file)
@@ -1,34 +1,11 @@
-/*****************************************************************/
-/******     C  _  P  R  I  N  T  _  R  E  S  U  L  T  S     ******/
-/*****************************************************************/
 #include <stdlib.h>
 #include <stdio.h>
 
-void c_print_results( char   *name,
-                      char   class,
-                      int    n1, 
-                      int    n2,
-                      int    n3,
-                      int    niter,
-                      int    nprocs_compiled,
-                      int    nprocs_total,
-                      double t,
-                      double mops,
-                     char   *optype,
-                      int    passed_verification,
-                      char   *npbversion,
-                      char   *compiletime,
-                      char   *mpicc,
-                      char   *clink,
-                      char   *cmpi_lib,
-                      char   *cmpi_inc,
-                      char   *cflags,
-                      char   *clinkflags )
+void c_print_results(char *name, char class, int n1, int n2, int n3, int niter, int nprocs_compiled, int nprocs_total,
+                     double t, double mops, char *optype, int passed_verification, char *npbversion, char *compiletime,
+                     char *mpicc, char *clink, char *cmpi_lib, char *cmpi_inc, char *cflags, char *clinkflags)
 {
-    char *evalue="1000";
-
     printf( "\n\n %s Benchmark Completed\n", name ); 
-
     printf( " Class           =                        %c\n", class );
 
     if( n3 == 0 ) {
@@ -40,18 +17,14 @@ void c_print_results( char   *name,
         printf( " Size            =              %3dx %3dx %3d\n", n1,n2,n3 );
 
     printf( " Iterations      =             %12d\n", niter );
     printf( " Time in seconds =             %12.2f\n", t );
-
     printf( " Total processes =             %12d\n", nprocs_total );
 
     if ( nprocs_compiled != 0 )
         printf( " Compiled procs  =             %12d\n", nprocs_compiled );
 
     printf( " Mop/s total     =             %12.2f\n", mops );
-
     printf( " Mop/s/process   =             %12.2f\n", mops/((float) nprocs_total) );
-
     printf( " Operation type  = %24s\n", optype);
 
     if( passed_verification )
@@ -60,27 +33,14 @@ void c_print_results( char   *name,
         printf( " Verification    =             UNSUCCESSFUL\n" );
 
     printf( " Version         =             %12s\n", npbversion );
-
     printf( " Compile date    =             %12s\n", compiletime );
-
     printf( "\n Compile options:\n" );
-
     printf( "    MPICC        = %s\n", mpicc );
-
     printf( "    CLINK        = %s\n", clink );
-
     printf( "    CMPI_LIB     = %s\n", cmpi_lib );
-
     printf( "    CMPI_INC     = %s\n", cmpi_inc );
-
     printf( "    CFLAGS       = %s\n", cflags );
-
     printf( "    CLINKFLAGS   = %s\n", clinkflags );
-#ifdef SMP
-    evalue = getenv("MP_SET_NUMTHREADS");
-    printf( "   MULTICPUS = %s\n", evalue );
-#endif
-
     printf( "\n\n" );
     printf( " Please send the results of this run to:\n\n" );
     printf( " NPB Development Team\n" );
@@ -91,4 +51,3 @@ void c_print_results( char   *name,
     printf( " Moffett Field, CA  94035-1000\n\n" );
     printf( " Fax: 650-604-3957\n\n" );
 }