X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4e62e76d104a17f0c9aaf9135ac605e9c8c87141..271068c7d949ed959313b055466e13539485bc2c:/src/smpi/colls/allgather/allgather-NTSLR-NB.cpp diff --git a/src/smpi/colls/allgather/allgather-NTSLR-NB.cpp b/src/smpi/colls/allgather/allgather-NTSLR-NB.cpp index 7ffaed9739..d1cdb55c0e 100644 --- a/src/smpi/colls/allgather/allgather-NTSLR-NB.cpp +++ b/src/smpi/colls/allgather/allgather-NTSLR-NB.cpp @@ -11,9 +11,9 @@ namespace smpi{ // Allgather-Non-Topology-Specific-Logical-Ring algorithm int -Coll_allgather_NTSLR_NB::allgather(const void *sbuf, int scount, MPI_Datatype stype, - void *rbuf, int rcount, MPI_Datatype rtype, - MPI_Comm comm) +allgather__NTSLR_NB(const void *sbuf, int scount, MPI_Datatype stype, + void *rbuf, int rcount, MPI_Datatype rtype, + MPI_Comm comm) { MPI_Aint rextent, sextent; MPI_Status status, status2; @@ -31,7 +31,7 @@ Coll_allgather_NTSLR_NB::allgather(const void *sbuf, int scount, MPI_Datatype st // irregular case use default MPI fucntions if (scount * sextent != rcount * rextent) { XBT_WARN("MPI_allgather_NTSLR_NB use default MPI_allgather."); - Coll_allgather_default::allgather(sbuf, scount, stype, rbuf, rcount, rtype, comm); + allgather__default(sbuf, scount, stype, rbuf, rcount, rtype, comm); return MPI_SUCCESS; }