X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a8b5faafecff77b1540810d84fc0b387f85952a5..cc63d7b267be4c20633a0be7db63b3d88030bee6:/teshsuite/smpi/mpich3-test/pt2pt/sendall.c diff --git a/teshsuite/smpi/mpich3-test/pt2pt/sendall.c b/teshsuite/smpi/mpich3-test/pt2pt/sendall.c index 2f87e47eb0..d344e24f61 100644 --- a/teshsuite/smpi/mpich3-test/pt2pt/sendall.c +++ b/teshsuite/smpi/mpich3-test/pt2pt/sendall.c @@ -28,7 +28,6 @@ int main ( int argc, char *argv[] ) int i; int count, size; int self, npes; - double secs; MPI_Request request[MAXPES]; MPI_Status status; @@ -44,7 +43,6 @@ int main ( int argc, char *argv[] ) } for (size = 1; size <= MYBUFSIZE ; size += size) { - secs = -MPI_Wtime (); for (count = 0; count < NUM_RUNS; count++) { MPI_Barrier (MPI_COMM_WORLD); @@ -66,10 +64,8 @@ int main ( int argc, char *argv[] ) } MPI_Barrier (MPI_COMM_WORLD); - secs += MPI_Wtime (); if (self == 0) { - secs = secs / (double) NUM_RUNS; MTestPrintfMsg( 1, "length = %d ints\n", size ); } }