Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'xbt_random' into 'master'
[simgrid.git] / src / smpi / colls / allgather / allgather-GB.cpp
index 1303878..a0a320a 100644 (file)
@@ -1,4 +1,4 @@
-/* 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
@@ -9,10 +9,10 @@
 namespace simgrid{
 namespace smpi{
 // Allgather - gather/bcast algorithm
-int Coll_allgather_GB::allgather(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();