Browse Source

mpi/examples/cholesky: display results on stdout

Nathalie Furmento 12 years ago
parent
commit
95a1565e5a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mpi/examples/cholesky/mpi_cholesky_codelets.c

+ 1 - 1
mpi/examples/cholesky/mpi_cholesky_codelets.c

@@ -168,7 +168,7 @@ void dw_cholesky(float ***matA, unsigned size, unsigned ld, unsigned nblocks, in
 		fprintf(stdout, "Computation time (in ms): %2.2f\n", timing/1000);
 
 		double flop = (1.0f*size*size*size)/3.0f;
-		fprintf(stderr, "Synthetic GFlops : %2.2f\n", (flop/timing/1000.0f));
+		fprintf(stdout, "Synthetic GFlops : %2.2f\n", (flop/timing/1000.0f));
 	}
 }