Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add gatherv test
[simgrid.git] / src / smpi / colls / smpi_openmpi_selector.cpp
index d030955b1038eaff99a66f88e74e9fb7b40fdb15..51602c6134d58163de6828219d541c1b46484bd3 100644 (file)
@@ -1,7 +1,7 @@
 /* selector for collective algorithms based on openmpi's default coll_tuned_decision_fixed selector
  * Updated 02/2022                                                          */
 
-/* Copyright (c) 2009-2022. The SimGrid Team.
+/* Copyright (c) 2009-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -11,8 +11,7 @@
 
 #include <memory>
 
-namespace simgrid {
-namespace smpi {
+namespace simgrid::smpi {
 
 int allreduce__ompi(const void *sbuf, void *rbuf, int count,
                     MPI_Datatype dtype, MPI_Op op, MPI_Comm comm)
@@ -1336,5 +1335,4 @@ int scatter__ompi(const void *sbuf, int scount,
     return funcs[alg-1](sbuf, scount, sdtype, rbuf, rcount, rdtype, root, comm);
 }
 
-}
-}
+} // namespace simgrid::smpi