X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d53d00d608a60a6f05e77ea7b7cd5c4e544d7ab1..8e43c615b2475d0174be55f95f930ca30988279e:/src/smpi/colls/allgather-NTSLR-NB.cpp diff --git a/src/smpi/colls/allgather-NTSLR-NB.cpp b/src/smpi/colls/allgather-NTSLR-NB.cpp index 2cabbcd81a..cfb643f35b 100644 --- a/src/smpi/colls/allgather-NTSLR-NB.cpp +++ b/src/smpi/colls/allgather-NTSLR-NB.cpp @@ -18,8 +18,8 @@ smpi_coll_tuned_allgather_NTSLR_NB(void *sbuf, int scount, MPI_Datatype stype, int send_offset, recv_offset; int tag = COLL_TAG_ALLGATHER; - rank = smpi_comm_rank(comm); - size = smpi_comm_size(comm); + rank = comm->rank(); + size = comm->size(); rextent = smpi_datatype_get_extent(rtype); sextent = smpi_datatype_get_extent(stype); MPI_Request *rrequest_array;