Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d9c43afd5598afa2ed8ff7b84520fc70d81217f8
[simgrid.git] / examples / s4u / exec-remote / s4u-exec-remote.cpp
1 /* Copyright (c) 2007-2018. 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 #include "simgrid/s4u.hpp"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
9
10 static void wizard()
11 {
12   simgrid::s4u::Host* fafard  = simgrid::s4u::Host::by_name("Fafard");
13   simgrid::s4u::Host* ginette = simgrid::s4u::Host::by_name("Ginette");
14   simgrid::s4u::Host* boivin  = simgrid::s4u::Host::by_name("Boivin");
15
16   XBT_INFO("I'm a wizard! I can run a task on the Fafard host from the Ginette one! Look!");
17   simgrid::s4u::ExecPtr exec = simgrid::s4u::this_actor::exec_init(48.492e6);
18   exec->setHost(ginette);
19   exec->start();
20   XBT_INFO("It started. Running 48.492Mf takes exactly one second on Ginette (but not on Fafard).");
21
22   simgrid::s4u::this_actor::sleep_for(0.1);
23   XBT_INFO("Loads in flops/s: Boivin=%.0f; Fafard=%.0f; Ginette=%.0f",
24       boivin->getLoad(), fafard->getLoad(), ginette->getLoad());
25
26   exec->wait();
27
28   XBT_INFO("Done!");
29   XBT_INFO("And now, harder. Start a remote task on Ginette and move it to Boivin after 0.5 sec");
30   exec = simgrid::s4u::this_actor::exec_init(73293500)->setHost(ginette);
31   exec->start();
32
33   simgrid::s4u::this_actor::sleep_for(0.5);
34   XBT_INFO("Loads before the move: Boivin=%.0f; Fafard=%.0f; Ginette=%.0f",
35       boivin->getLoad(), fafard->getLoad(), ginette->getLoad());
36
37   exec->setHost(boivin);
38
39   simgrid::s4u::this_actor::sleep_for(0.1);
40   XBT_INFO("Loads after the move: Boivin=%.0f; Fafard=%.0f; Ginette=%.0f",
41       boivin->getLoad(), fafard->getLoad(), ginette->getLoad());
42
43   exec->wait();
44   XBT_INFO("Done!");
45 }
46
47 int main(int argc, char* argv[])
48 {
49   simgrid::s4u::Engine e(&argc, argv);
50   e.load_platform(argv[1]);
51   simgrid::s4u::Actor::create("test", simgrid::s4u::Host::by_name("Fafard"), wizard);
52
53   e.run();
54
55   return 0;
56 }