X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/763ea0fa6120d18f99e2e5e8164a4cf5821c547c..f35db13138682b1be530a509d1eeadeafff84ca7:/src/smpi/colls/smpi_mpich_selector.cpp diff --git a/src/smpi/colls/smpi_mpich_selector.cpp b/src/smpi/colls/smpi_mpich_selector.cpp index 8a9ffcd40e..550023941c 100644 --- a/src/smpi/colls/smpi_mpich_selector.cpp +++ b/src/smpi/colls/smpi_mpich_selector.cpp @@ -56,6 +56,8 @@ End Algorithm: MPI_Allreduce */ +namespace simgrid{ +namespace smpi{ int Coll_allreduce_mpich::allreduce(void *sbuf, void *rbuf, int count, MPI_Datatype dtype, MPI_Op op, MPI_Comm comm) { @@ -646,8 +648,6 @@ int Coll_allgatherv_mpich::allgatherv(void *sbuf, int scount, End Algorithm: MPI_Gather */ -namespace simgrid{ -namespace smpi{ int Coll_gather_mpich::gather(void *sbuf, int scount, MPI_Datatype sdtype, @@ -662,9 +662,6 @@ int Coll_gather_mpich::gather(void *sbuf, int scount, root, comm); } -} -} - /* This is the default implementation of scatter. The algorithm is: Algorithm: MPI_Scatter @@ -707,4 +704,6 @@ int Coll_scatter_mpich::scatter(void *sbuf, int scount, } return ret; } +} +}