Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics: define and use the sg4 namespace as a shortcut to simgrid::s4u
[simgrid.git] / examples / s4u / actor-migrate / s4u-actor-migrate.cpp
1 /* Copyright (c) 2017-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 /* This example demonstrate the actor migrations.
7  *
8  * The worker actor first move by itself, and then start an execution.
9  * During that execution, the monitor migrates the worker, that wakes up on another host.
10  * The execution was of the right amount of flops to take exactly 5 seconds on the first host
11  * and 5 other seconds on the second one, so it stops after 10 seconds.
12  *
13  * Then another migration is done by the monitor while the worker is suspended.
14  *
15  * Note that worker() takes an uncommon set of parameters,
16  * and that this is perfectly accepted by create().
17  */
18
19 #include <simgrid/s4u.hpp>
20 namespace sg4 = simgrid::s4u;
21
22 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor_migration, "Messages specific for this s4u example");
23
24 static void worker(sg4::Host* first, const sg4::Host* second)
25 {
26   double flopAmount = first->get_speed() * 5 + second->get_speed() * 5;
27
28   XBT_INFO("Let's move to %s to execute %.2f Mflops (5sec on %s and 5sec on %s)", first->get_cname(), flopAmount / 1e6,
29            first->get_cname(), second->get_cname());
30
31   sg4::this_actor::set_host(first);
32   sg4::this_actor::execute(flopAmount);
33
34   XBT_INFO("I wake up on %s. Let's suspend a bit", sg4::this_actor::get_host()->get_cname());
35
36   sg4::this_actor::suspend();
37
38   XBT_INFO("I wake up on %s", sg4::this_actor::get_host()->get_cname());
39   XBT_INFO("Done");
40 }
41
42 static void monitor()
43 {
44   sg4::Host* boivin    = sg4::Host::by_name("Boivin");
45   sg4::Host* jacquelin = sg4::Host::by_name("Jacquelin");
46   sg4::Host* fafard    = sg4::Host::by_name("Fafard");
47
48   sg4::ActorPtr actor = sg4::Actor::create("worker", fafard, worker, boivin, jacquelin);
49
50   sg4::this_actor::sleep_for(5);
51
52   XBT_INFO("After 5 seconds, move the actor to %s", jacquelin->get_cname());
53   actor->set_host(jacquelin);
54
55   sg4::this_actor::sleep_until(15);
56   XBT_INFO("At t=15, move the actor to %s and resume it.", fafard->get_cname());
57   actor->set_host(fafard);
58   actor->resume();
59 }
60
61 int main(int argc, char* argv[])
62 {
63   sg4::Engine e(&argc, argv);
64   xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s ../platforms/small_platform.xml\n", argv[0], argv[0]);
65   e.load_platform(argv[1]);
66
67   sg4::Actor::create("monitor", sg4::Host::by_name("Boivin"), monitor);
68   e.run();
69
70   return 0;
71 }