X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a92d7b716f51a53dea7f59db8524d4add713b910..488dda0c43d26f0a770e1d5b47f73148e153949b:/src/smpi/colls/allgather/allgather-bruck.cpp?ds=sidebyside diff --git a/src/smpi/colls/allgather/allgather-bruck.cpp b/src/smpi/colls/allgather/allgather-bruck.cpp index f2fd8b8b9f..1e7cf374b8 100644 --- a/src/smpi/colls/allgather/allgather-bruck.cpp +++ b/src/smpi/colls/allgather/allgather-bruck.cpp @@ -1,10 +1,10 @@ -/* Copyright (c) 2013-2017. The SimGrid Team. +/* Copyright (c) 2013-2019. 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" +#include "../colls_private.hpp" /***************************************************************************** @@ -65,7 +65,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * algorithm. * Auther: MPICH * Comment: Original bruck algorithm from MPICH is slightly modified by - * Ahmad Faraj. + * Ahmad Faraj. ****************************************************************************/ namespace simgrid{ @@ -73,7 +73,7 @@ namespace smpi{ -int Coll_allgather_bruck::allgather(void *send_buff, int send_count, +int Coll_allgather_bruck::allgather(const void *send_buff, int send_count, MPI_Datatype send_type, void *recv_buff, int recv_count, MPI_Datatype recv_type, MPI_Comm comm) @@ -92,7 +92,7 @@ int Coll_allgather_bruck::allgather(void *send_buff, int send_count, char *send_ptr = (char *) send_buff; char *recv_ptr = (char *) recv_buff; - // get size of the communicator, followed by rank + // get size of the communicator, followed by rank num_procs = comm->size(); rank = comm->rank();