Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bbe37f7460473445badf54444ef83cde58a8a47b
[simgrid.git] / examples / s4u / exec-remote / s4u-exec-remote.cpp
1 /* Copyright (c) 2007-2017. 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 #include "simgrid/forward.h"
8 #include "simgrid/s4u/forward.hpp"
9
10 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
11
12 static void wizard()
13 {
14   simgrid::s4u::Host* fafard  = simgrid::s4u::Host::by_name("Fafard");
15   simgrid::s4u::Host* ginette = simgrid::s4u::Host::by_name("Ginette");
16
17   XBT_INFO("I'm a wizard! I can run a task on the Fafard host from the Ginette one! Look!");
18   simgrid::s4u::ExecPtr activity = simgrid::s4u::this_actor::exec_init(48.492e6);
19   activity->setHost(ginette);
20   activity->start();
21   XBT_INFO("It started. Running 48.492Mf takes exactly one second on Ginette (but not on Fafard).");
22
23   simgrid::s4u::this_actor::sleep_for(0.1);
24   XBT_INFO("Load on Fafard: %e flops/s; Load on Ginette: %e flops/s.", fafard->getLoad(), ginette->getLoad());
25
26   activity->wait();
27
28   XBT_INFO("Done!");
29 }
30
31 int main(int argc, char* argv[])
32 {
33   simgrid::s4u::Engine e(&argc, argv);
34   e.loadPlatform(argv[1]);
35   simgrid::s4u::Actor::createActor("test", simgrid::s4u::Host::by_name("Fafard"), wizard);
36
37   e.run();
38
39   return 0;
40 }