Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add some new pt2pt tests from mpich
[simgrid.git] / src / smpi / colls / allgather / allgather-GB.cpp
index 1a107b02c99efbdb3d3df5e64b864fd6b2fa009a..18f7a4786c4f7ed1c47cc82ba85799e22198b4e4 100644 (file)
@@ -1,22 +1,24 @@
-/* Copyright (c) 2013-2014. 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
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include "../colls_private.h"
+#include "../colls_private.hpp"
 
+namespace simgrid::smpi {
 // Allgather - gather/bcast algorithm
-int smpi_coll_tuned_allgather_GB(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();
-  mpi_coll_gather_fun(send_buff, send_count, send_type, recv_buff, recv_count, recv_type,
-             0, comm);
-  mpi_coll_bcast_fun(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