X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b7ed19dfcc221d7b3eca182abb5c4a3946671172..a92d7b716f51a53dea7f59db8524d4add713b910:/src/smpi/colls/allreduce/allreduce-redbcast.cpp diff --git a/src/smpi/colls/allreduce/allreduce-redbcast.cpp b/src/smpi/colls/allreduce/allreduce-redbcast.cpp index 35e40f17d9..9ed2084a73 100644 --- a/src/smpi/colls/allreduce/allreduce-redbcast.cpp +++ b/src/smpi/colls/allreduce/allreduce-redbcast.cpp @@ -1,11 +1,12 @@ -/* 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 * under the terms of the license (GNU LGPL) which comes with this package. */ #include "../colls_private.h" - +namespace simgrid{ +namespace smpi{ int Coll_allreduce_redbcast::allreduce(void *buf, void *buf2, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) @@ -14,3 +15,5 @@ int Coll_allreduce_redbcast::allreduce(void *buf, void *buf2, int count, Colls::bcast(buf2, count, datatype, 0, comm); return MPI_SUCCESS; } +} +}