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

Public GIT Repository
remove unused attribute name_ and method set_name()
[simgrid.git] / src / smpi / colls / allreduce / allreduce-redbcast.cpp
index 8c967ce14c46852cb2993f7e76bd46e5d72c90bc..9a7d66bdd8ad42bbc1475eca77bffad06326b4cf 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013-2019. The SimGrid Team.
+/* Copyright (c) 2013-2020. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -11,8 +11,8 @@ int allreduce__redbcast(const void *buf, void *buf2, int count,
                         MPI_Datatype datatype, MPI_Op op,
                         MPI_Comm comm)
 {
-  Colls::reduce(buf, buf2, count, datatype, op, 0, comm);
-  Colls::bcast(buf2, count, datatype, 0, comm);
+  colls::reduce(buf, buf2, count, datatype, op, 0, comm);
+  colls::bcast(buf2, count, datatype, 0, comm);
   return MPI_SUCCESS;
 }
 }