From: Christian Heinrich Date: Thu, 19 Jul 2018 09:03:46 +0000 (+0200) Subject: [SMPI/LB] Check migration counter before the LB execution X-Git-Tag: v3_21~327 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f47deaf4eadbed4cf8c31d97100d444cc978799f?ds=sidebyside [SMPI/LB] Check migration counter before the LB execution --- diff --git a/src/smpi/plugins/sampi_loadbalancer.cpp b/src/smpi/plugins/sampi_loadbalancer.cpp index f367edea5f..a9f81ac230 100644 --- a/src/smpi/plugins/sampi_loadbalancer.cpp +++ b/src/smpi/plugins/sampi_loadbalancer.cpp @@ -47,13 +47,18 @@ public: explicit MigrateAction() : ReplayAction("Migrate") {} void kernel(simgrid::xbt::ReplayAction& action) { - static std::map migration_counter; + static std::map migration_call_counter; static simgrid::s4u::Barrier smpilb_bar(smpi_process_count()); simgrid::s4u::Host* cur_host = simgrid::s4u::this_actor::get_host(); simgrid::s4u::Host* migrate_to_host; TRACE_migration_call(my_proc_id, NULL); + 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; + } + // TODO cheinrich: Why do we need this barrier? smpilb_bar.wait(); @@ -69,13 +74,8 @@ public: // This barrier is required to ensure that the mapping has been computed and is available smpilb_bar.wait(); was_executed = false; // Must stay behind this barrier so that all processes have passed the if clause - migration_counter[simgrid::s4u::Actor::self()]++; - if ((migration_counter[simgrid::s4u::Actor::self()] % simgrid::config::get_value(cfg_migration_frequency.get_name())) != 0) { - return; - } migrate_to_host = lb.get_mapping(); - if (cur_host != migrate_to_host) { // Origin and dest are not the same -> migrate sg_host_t migration_hosts[2] = {cur_host, migrate_to_host}; // Changing this to double[2] ... will cause trouble with parallel_execute, because that fct is trying to call free().