Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add gatherv test
[simgrid.git] / src / smpi / colls / smpi_default_selector.cpp
index 8d449de47c840b223b8a6af29745cd38a5ecc2d4..d3419b203959c487507332c5d6da0592752f74b6 100644 (file)
@@ -1,6 +1,6 @@
-/* selector with default/naive Simgrid algorithms. These should not be trusted for performance evaluations */
+/* selector with default/naive SimGrid algorithms. These should not be trusted for performance evaluations */
 
-/* Copyright (c) 2009-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2009-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -8,8 +8,7 @@
 #include "colls_private.hpp"
 #include "src/smpi/include/smpi_actor.hpp"
 
-namespace simgrid{
-namespace smpi{
+namespace simgrid::smpi {
 
 int bcast__default(void *buf, int count, MPI_Datatype datatype, int root, MPI_Comm comm)
 {
@@ -131,6 +130,4 @@ int alltoallv__default(const void *sendbuf, const int *sendcounts, const int *se
   return Request::wait(&request, MPI_STATUS_IGNORE);
 }
 
-}
-}
-
+} // namespace simgrid::smpi