X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/645128cb5c244346bc2723e88da128723c327621..1687df79d61a9418bba830bbd0ab7de16e457090:/src/smpi/colls/allgatherv-GB.c diff --git a/src/smpi/colls/allgatherv-GB.c b/src/smpi/colls/allgatherv-GB.c index 5c643faeae..1dd6103c6b 100644 --- a/src/smpi/colls/allgatherv-GB.c +++ b/src/smpi/colls/allgatherv-GB.c @@ -1,3 +1,9 @@ +/* Copyright (c) 2013-2014. The SimGrid Team. + * All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + #include "colls_private.h" // Allgather - gather/bcast algorithm @@ -12,9 +18,10 @@ int smpi_coll_tuned_allgatherv_GB(void *send_buff, int send_count, num_procs = smpi_comm_size(comm); for (i = 0; i < num_procs; i++) { current = recv_disps[i] + recv_counts[i]; - if (current > max) max = current; + if (current > max) + max = current; } - mpi_coll_bcast_fun(recv_buff, current, recv_type, 0, comm); + mpi_coll_bcast_fun(recv_buff, max, recv_type, 0, comm); return MPI_SUCCESS; }