Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / examples / cpp / exec-unassigned / s4u-exec-unassigned.cpp
1 /* Copyright (c) 2007-2022. 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 <vector>
8
9 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
10
11 static void worker()
12 {
13   // Define an amount of work that should take 1 second to execute.
14   double computation_amount = simgrid::s4u::this_actor::get_host()->get_speed();
15
16   // Create an unassigned activity and start it
17   simgrid::s4u::ExecPtr exec =
18       simgrid::s4u::Exec::init()->set_flops_amount(computation_amount)->set_name("exec")->vetoable_start();
19
20   // Wait for a while
21   simgrid::s4u::this_actor::sleep_for(10);
22
23   // Assign the activity to the current host. This triggers its start, then waits for it completion.
24   exec->set_host(simgrid::s4u::Host::current())->wait();
25   XBT_INFO("Exec '%s' is complete", exec->get_cname());
26 }
27
28 int main(int argc, char* argv[])
29 {
30   simgrid::s4u::Engine e(&argc, argv);
31   e.load_platform(argv[1]);
32
33   simgrid::s4u::Actor::create("worker", e.host_by_name("Fafard"), worker);
34
35   e.run();
36
37   XBT_INFO("Simulation time %g", simgrid::s4u::Engine::get_clock());
38
39   return 0;
40 }