X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6633f5c4d1b7d52fa54306ee3fb7eb573daeb274..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/src/smpi/colls/allgather/allgather-bruck.cpp diff --git a/src/smpi/colls/allgather/allgather-bruck.cpp b/src/smpi/colls/allgather/allgather-bruck.cpp index 0aa067c6b6..df58663e03 100644 --- a/src/smpi/colls/allgather/allgather-bruck.cpp +++ b/src/smpi/colls/allgather/allgather-bruck.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. +/* Copyright (c) 2013-2023. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -49,7 +49,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *****************************************************************************/ - /***************************************************************************** * Function: allgather_bruck * return: int @@ -63,20 +62,17 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * comm: communication * Descrp: Function realizes the allgather operation using the bruck * algorithm. - * Auther: MPICH + * Author: MPICH * Comment: Original bruck algorithm from MPICH is slightly modified by * Ahmad Faraj. ****************************************************************************/ -namespace simgrid{ -namespace smpi{ - - +namespace simgrid::smpi { -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) +int allgather__bruck(const void *send_buff, int send_count, + MPI_Datatype send_type, void *recv_buff, + int recv_count, MPI_Datatype recv_type, + MPI_Comm comm) { // MPI variables MPI_Status status; @@ -138,6 +134,4 @@ int Coll_allgather_bruck::allgather(const void *send_buff, int send_count, return MPI_SUCCESS; } - -} -} +} // namespace simgrid::smpi