X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/40616078da72e823931c1fb884949054699ec39d..ae0e5607956f1b19a4605d297bc6d51e5e18f845:/src/smpi/colls/bcast/bcast-flattree.cpp diff --git a/src/smpi/colls/bcast/bcast-flattree.cpp b/src/smpi/colls/bcast/bcast-flattree.cpp index 2a307f5f17..f89bd94f34 100644 --- a/src/smpi/colls/bcast/bcast-flattree.cpp +++ b/src/smpi/colls/bcast/bcast-flattree.cpp @@ -1,13 +1,14 @@ -/* 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 -smpi_coll_tuned_bcast_flattree(void *buff, int count, MPI_Datatype data_type, +Coll_bcast_flattree::bcast(void *buff, int count, MPI_Datatype data_type, int root, MPI_Comm comm) { MPI_Request *req_ptr; @@ -41,3 +42,6 @@ smpi_coll_tuned_bcast_flattree(void *buff, int count, MPI_Datatype data_type, } return MPI_SUCCESS; } + +} +}