Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Implement simcall_HANDLER_execution_waitany_for into ExecImpl::wait_any_for.
[simgrid.git] / src / smpi / colls / smpi_intel_mpi_selector.cpp
index 20c1c6fc446de12b62cfab049007a80fba4dbbfa..3b1d1fdb3904351ccf39ff4d71bcab2b05cb6bbd 100644 (file)
@@ -1,6 +1,6 @@
 /* selector for collective algorithms based on openmpi's default coll_tuned_decision_fixed selector */
 
-/* Copyright (c) 2009-2020. The SimGrid Team.
+/* Copyright (c) 2009-2021. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -658,9 +658,9 @@ MPI_Barrier
 
 */
 static int intel_barrier_gather_scatter(MPI_Comm comm){
-    //our default barrier performs a antibcast/bcast
-    barrier__default(comm);
-    return MPI_SUCCESS;
+  // our default barrier performs an antibcast/bcast
+  barrier__default(comm);
+  return MPI_SUCCESS;
 }
 
 int (*intel_barrier_functions_table[])(MPI_Comm comm) ={