X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/40616078da72e823931c1fb884949054699ec39d..5f1dc33c9f76ee99973ba93f034f031451398ebe:/src/smpi/colls/allgather/allgather-SMP-NTS.cpp diff --git a/src/smpi/colls/allgather/allgather-SMP-NTS.cpp b/src/smpi/colls/allgather/allgather-SMP-NTS.cpp index 0ea5ff7d24..91eb582fae 100644 --- a/src/smpi/colls/allgather/allgather-SMP-NTS.cpp +++ b/src/smpi/colls/allgather/allgather-SMP-NTS.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2014. The SimGrid Team. +/* Copyright (c) 2013-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -6,7 +6,11 @@ #include "../colls_private.h" -int smpi_coll_tuned_allgather_SMP_NTS(void *sbuf, int scount, +namespace simgrid{ +namespace smpi{ + + +int Coll_allgather_SMP_NTS::allgather(void *sbuf, int scount, MPI_Datatype stype, void *rbuf, int rcount, MPI_Datatype rtype, MPI_Comm comm) @@ -41,9 +45,9 @@ int smpi_coll_tuned_allgather_SMP_NTS(void *sbuf, int scount, /* for too small number of processes, use default implementation */ if (comm_size <= num_core) { - XBT_WARN("MPI_allgather_SMP_NTS use default MPI_allgather."); - smpi_mpi_allgather(sbuf, scount, stype, rbuf, rcount, rtype, comm); - return MPI_SUCCESS; + XBT_WARN("MPI_allgather_SMP_NTS use default MPI_allgather."); + Coll_allgather_default::allgather(sbuf, scount, stype, rbuf, rcount, rtype, comm); + return MPI_SUCCESS; } // the last SMP node may have fewer number of running processes than all others @@ -74,7 +78,7 @@ int smpi_coll_tuned_allgather_SMP_NTS(void *sbuf, int scount, } - // INTER-SMP-ALLGATHER + // INTER-SMP-ALLGATHER // Every root of each SMP node post INTER-Sendrecv, then do INTRA-Bcast for each receiving message // Use logical ring algorithm @@ -157,3 +161,7 @@ int smpi_coll_tuned_allgather_SMP_NTS(void *sbuf, int scount, return MPI_SUCCESS; } + + +} +}