X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5eb856761d5f073b07eac25c05012cfa8075e1f1..fabf70a9d566725d01d925f83fae02ab82a95547:/src/smpi/colls/allgather/allgather-GB.cpp diff --git a/src/smpi/colls/allgather/allgather-GB.cpp b/src/smpi/colls/allgather/allgather-GB.cpp index 88bc100e85..e87cae55cc 100644 --- a/src/smpi/colls/allgather/allgather-GB.cpp +++ b/src/smpi/colls/allgather/allgather-GB.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,6 +6,8 @@ #include "../colls_private.h" +namespace simgrid{ +namespace smpi{ // Allgather - gather/bcast algorithm int Coll_allgather_GB::allgather(void *send_buff, int send_count, MPI_Datatype send_type, void *recv_buff, @@ -20,3 +22,6 @@ int Coll_allgather_GB::allgather(void *send_buff, int send_count, return MPI_SUCCESS; } + +} +}