X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b4ace96f8a501a6659817d9741aeb103cbcfd2c4..149c63f36e15b8500b1e826bda5138318ff7ba2b:/src/smpi/plugins/sampi_loadbalancer.cpp diff --git a/src/smpi/plugins/sampi_loadbalancer.cpp b/src/smpi/plugins/sampi_loadbalancer.cpp index c58d907eaf..be546b33fe 100644 --- a/src/smpi/plugins/sampi_loadbalancer.cpp +++ b/src/smpi/plugins/sampi_loadbalancer.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2018-2020. 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. */ @@ -54,7 +54,7 @@ public: simgrid::s4u::Host* cur_host = simgrid::s4u::this_actor::get_host(); simgrid::s4u::Host* migrate_to_host; - TRACE_migration_call(my_proc_id, nullptr); + TRACE_migration_call(get_pid(), nullptr); // We only migrate every "cfg_migration_frequency"-times, not at every call migration_call_counter[simgrid::s4u::Actor::self()]++; @@ -68,7 +68,7 @@ public: static bool was_executed = false; if (not was_executed) { was_executed = true; - XBT_DEBUG("Process %li runs the load balancer", my_proc_id); + XBT_DEBUG("Process %li runs the load balancer", get_pid()); smpi_bench_begin(); lb.run(); smpi_bench_end(); @@ -82,18 +82,18 @@ public: if (cur_host != migrate_to_host) { // Origin and dest are not the same -> migrate std::vector migration_hosts = {cur_host, migrate_to_host}; std::vector comp_amount = {0, 0}; - std::vector comm_amount = {0, /*must not be 0*/ std::max(args.memory_consumption, 1.0), 0, 0}; + std::vector comm_amount = {0, /*must not be 0*/ std::max(get_args().memory_consumption, 1.0), 0, 0}; xbt_os_timer_t timer = smpi_process()->timer(); xbt_os_threadtimer_start(timer); - simgrid::s4u::this_actor::parallel_execute(migration_hosts, comp_amount, comm_amount, -1.0); + simgrid::s4u::this_actor::parallel_execute(migration_hosts, comp_amount, comm_amount); xbt_os_threadtimer_stop(timer); smpi_execute(xbt_os_timer_elapsed(timer)); // Update the process and host mapping in SimGrid. - XBT_DEBUG("Migrating process %li from %s to %s", my_proc_id, cur_host->get_cname(), migrate_to_host->get_cname()); - TRACE_smpi_process_change_host(my_proc_id, migrate_to_host); - simgrid::s4u::this_actor::migrate(migrate_to_host); + XBT_DEBUG("Migrating process %li from %s to %s", get_pid(), cur_host->get_cname(), migrate_to_host->get_cname()); + TRACE_smpi_process_change_host(get_pid(), migrate_to_host); + simgrid::s4u::this_actor::set_host(migrate_to_host); } smpilb_bar.wait(); @@ -137,7 +137,6 @@ void sg_load_balancer_plugin_init() if (!done) { done = true; simgrid::s4u::Exec::on_completion.connect([](simgrid::s4u::Actor const& actor, simgrid::s4u::Exec const& exec) { - simgrid::smpi::plugin::lb.record_actor_computation(actor, exec.get_cost()); });