X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b7ed19dfcc221d7b3eca182abb5c4a3946671172..f9436b840852218b39dce22d6057b6f223168daa:/src/smpi/colls/scatter/scatter-ompi.cpp diff --git a/src/smpi/colls/scatter/scatter-ompi.cpp b/src/smpi/colls/scatter/scatter-ompi.cpp index 04bf1aefec..9fc81d4da6 100644 --- a/src/smpi/colls/scatter/scatter-ompi.cpp +++ b/src/smpi/colls/scatter/scatter-ompi.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 @@ -23,6 +23,9 @@ #include "../colls_private.h" #include "../coll_tuned_topo.h" +namespace simgrid{ +namespace smpi{ + int Coll_scatter_ompi_binomial::scatter(void *sbuf, int scount, @@ -156,7 +159,7 @@ Coll_scatter_ompi_binomial::scatter(void *sbuf, int scount, if (NULL != tempbuf) smpi_free_tmp_buffer(tempbuf); - //!FIXME : store the tree, as done in ompi, instead of calculating it each time ? + // not FIXME : store the tree, as done in ompi, instead of calculating it each time ? xbt_free(bmtree); return MPI_SUCCESS; @@ -249,3 +252,6 @@ Coll_scatter_ompi_basic_linear::scatter(void *sbuf, int scount, return MPI_SUCCESS; } + +} +}