X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fe304706848f0a64477d4687b3ea97d5b9a0c35c..72d32c4e88a57f4786f62fec48a1bfa454adbff9:/src/smpi/colls/allgather/allgather-GB.cpp diff --git a/src/smpi/colls/allgather/allgather-GB.cpp b/src/smpi/colls/allgather/allgather-GB.cpp index 26ded0b233..b99d9dfdaa 100644 --- a/src/smpi/colls/allgather/allgather-GB.cpp +++ b/src/smpi/colls/allgather/allgather-GB.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. +/* Copyright (c) 2013-2022. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -6,22 +6,19 @@ #include "../colls_private.hpp" -namespace simgrid{ -namespace smpi{ +namespace simgrid::smpi { // Allgather - gather/bcast algorithm -int Coll_allgather_GB::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__GB(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 num_procs; num_procs = comm->size(); - Colls::gather(send_buff, send_count, send_type, recv_buff, recv_count, recv_type, - 0, comm); - Colls::bcast(recv_buff, (recv_count * num_procs), recv_type, 0, comm); + colls::gather(send_buff, send_count, send_type, recv_buff, recv_count, recv_type, 0, comm); + colls::bcast(recv_buff, (recv_count * num_procs), recv_type, 0, comm); return MPI_SUCCESS; } -} -} +} // namespace simgrid::smpi