Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SAMPI] Update the sampi_loadbalancer code
[simgrid.git] / examples / smpi / load_balancer / load_balancer.cpp
index 61e1413..e9722af 100644 (file)
@@ -34,18 +34,7 @@ int main(int argc, char* argv[])
   AMPI_Migrate(MPI_COMM_WORLD);
   if (rank != 0)
   free(pointer);
-  /* Connect your callback function to the "blah" event in the trace files */
-  //xbt_replay_action_register("blah", action_blah);
 
-  /* The send action is an override, so we have to first save its previous value in a global */
-  //int rank;
-  //MPI_Comm_rank(MPI_COMM_WORLD, &rank);
-  //if (rank == 0) {
-    //previous_send = xbt_replay_action_get("send");
-    //xbt_replay_action_register("send", overriding_send);
-  //}
-  /* The regular run of the replayer */
-  //smpi_replay_main(&argc, &argv);
   MPI_Finalize();
   return 0;
 }