]> AND Public Git Repository - simgrid.git/blobdiff - src/smpi/colls/allgather/allgather-GB.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / smpi / colls / allgather / allgather-GB.cpp
index a0a320aab26d8d1d8612233f29c2fc9690250c7a..ee5e1b06cfaa3feb1f05a1396ff173503cafeb5f 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013-2019. The SimGrid Team.
+/* Copyright (c) 2013-2021. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -16,9 +16,8 @@ int allgather__GB(const void *send_buff, int send_count,
 {
   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;
 }