X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a35a3a5fbfe60dbfa9aa9b12dc37de596f47387b..ad9a39aa493c53ac054adad0a6b1e54f2a951de7:/src/smpi/plugins/sampi_loadbalancer.cpp diff --git a/src/smpi/plugins/sampi_loadbalancer.cpp b/src/smpi/plugins/sampi_loadbalancer.cpp index bddb6c90ea..e32317e51d 100644 --- a/src/smpi/plugins/sampi_loadbalancer.cpp +++ b/src/smpi/plugins/sampi_loadbalancer.cpp @@ -54,8 +54,9 @@ public: simgrid::s4u::Host* cur_host = simgrid::s4u::this_actor::get_host(); simgrid::s4u::Host* migrate_to_host; - TRACE_migration_call(my_proc_id, NULL); + TRACE_migration_call(my_proc_id, nullptr); + // We only migrate every "cfg_migration_frequency"-times, not at every call migration_call_counter[simgrid::s4u::Actor::self()]++; if ((migration_call_counter[simgrid::s4u::Actor::self()] % simgrid::config::get_value(cfg_migration_frequency.get_name())) != 0) { return; @@ -67,8 +68,8 @@ public: static bool was_executed = false; if (not was_executed) { was_executed = true; + XBT_DEBUG("Process %u runs the load balancer", my_proc_id); smpi_bench_begin(); - XBT_INFO("RUNNING THE LB"); lb.run(); smpi_bench_end(); }