Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
smpi: many classes died tonight, but that will save kitten on the long term.
[simgrid.git] / src / smpi / colls / allgatherv / allgatherv-GB.cpp
index d3de949c9caa27a7eb803de0ee04a1b78672212a..d6f9e517aaaddf21ca4b1abdd5c9cdf5b6ea1ec4 100644 (file)
@@ -10,10 +10,10 @@ namespace simgrid{
 namespace smpi{
 
 // Allgather - gather/bcast algorithm
-int Coll_allgatherv_GB::allgatherv(const void *send_buff, int send_count,
-                                 MPI_Datatype send_type, void *recv_buff,
-                                 const int *recv_counts, const int *recv_disps, MPI_Datatype recv_type,
-                                 MPI_Comm comm)
+int allgatherv__GB(const void *send_buff, int send_count,
+                   MPI_Datatype send_type, void *recv_buff,
+                   const int *recv_counts, const int *recv_disps, MPI_Datatype recv_type,
+                   MPI_Comm comm)
 {
   Colls::gatherv(send_buff, send_count, send_type, recv_buff, recv_counts, recv_disps, recv_type, 0, comm);
   int num_procs, i, current, max = 0;