X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/163710a75e5fa3857adc02a9851287b8d08f058a..076194816ead5f5e2a4afff5999e728c5b5396a3:/examples/smpi/reduce.c diff --git a/examples/smpi/reduce.c b/examples/smpi/reduce.c index 85bfa1ee4b..bd4e151f24 100644 --- a/examples/smpi/reduce.c +++ b/examples/smpi/reduce.c @@ -79,7 +79,7 @@ int main(int argc, char **argv) value = rank + 1; /* easy to verify that sum= (size*(size+1))/2; */ - printf("[%d] has value %d\n", rank, value); + //printf("[%d] has value %d\n", rank, value); MPI_Reduce(&value, &sum, 1, MPI_INT, MPI_SUM, root, MPI_COMM_WORLD); MPI_Reduce(&value, &sum_mirror, 1, MPI_INT, MPI_SUM, root, MPI_COMM_WORLD);