Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
one last verbose
authorAugustin Degomme <augustin.degomme@unibas.ch>
Tue, 13 Mar 2018 07:11:31 +0000 (08:11 +0100)
committerAugustin Degomme <augustin.degomme@unibas.ch>
Tue, 13 Mar 2018 07:11:55 +0000 (08:11 +0100)
teshsuite/smpi/mpich3-test/perf/non_zero_root.c

index 553c2db..0ab6f41 100644 (file)
@@ -13,8 +13,6 @@
 
 #define ERROR_MARGIN 0.5
 
-static int verbose = 0;
-
 int main(int argc, char *argv[])
 {
     char *sbuf, *rbuf;
@@ -27,9 +25,6 @@ int main(int argc, char *argv[])
     MPI_Comm_rank(MPI_COMM_WORLD, &rank);
     MPI_Comm_size(MPI_COMM_WORLD, &size);
 
-    if (getenv("MPITEST_VERBOSE"))
-        verbose = 1;
-
     /* Allocate memory regions to communicate */
     sbuf = (char *) malloc(SIZE);
     rbuf = (char *) malloc(size * SIZE);