X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a2f1b23687f04169144f4ffb4f20dc4fc5c28395..860a17e0269e19f713cc922cf8c26d6fb8b764b5:/src/smpi/colls/allgather-GB.c diff --git a/src/smpi/colls/allgather-GB.c b/src/smpi/colls/allgather-GB.c index b9df40e577..5783741dca 100644 --- a/src/smpi/colls/allgather-GB.c +++ b/src/smpi/colls/allgather-GB.c @@ -1,4 +1,4 @@ -#include "colls.h" +#include "colls_private.h" // Allgather - gather/bcast algorithm int smpi_coll_tuned_allgather_GB(void *send_buff, int send_count, @@ -7,10 +7,10 @@ int smpi_coll_tuned_allgather_GB(void *send_buff, int send_count, MPI_Comm comm) { int num_procs; - MPI_Comm_size(comm, &num_procs); - MPI_Gather(send_buff, send_count, send_type, recv_buff, recv_count, recv_type, + num_procs = smpi_comm_size(comm); + mpi_coll_gather_fun(send_buff, send_count, send_type, recv_buff, recv_count, recv_type, 0, comm); - MPI_Bcast(recv_buff, (recv_count * num_procs), recv_type, 0, comm); + mpi_coll_bcast_fun(recv_buff, (recv_count * num_procs), recv_type, 0, comm); return MPI_SUCCESS; }