Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2023.
[simgrid.git] / examples / cpp / exec-basic / s4u-exec-basic.cpp
1 /* Copyright (c) 2010-2023. 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 namespace sg4 = simgrid::s4u;
10
11 static void executor()
12 {
13   /* this_actor::execute() tells SimGrid to pause the calling actor
14    * until its host has computed the amount of flops passed as a parameter */
15   sg4::this_actor::execute(98095);
16   XBT_INFO("Done.");
17
18   /* This simple example does not do anything beyond that */
19 }
20
21 static void privileged()
22 {
23   /* This version of this_actor::execute() specifies that this execution gets a larger share of the resource.
24    *
25    * Since the priority is 2, it computes twice as fast as a regular one.
26    *
27    * So instead of a half/half sharing between the two executions, we get a 1/3 vs 2/3 sharing. */
28   sg4::this_actor::execute(98095, 2);
29   XBT_INFO("Done.");
30
31   /* Note that the timings printed when running this example are a bit misleading, because the uneven sharing only  last
32    * until the privileged actor ends. After this point, the unprivileged one gets 100% of the CPU and finishes quite
33    * quickly. */
34 }
35
36 int main(int argc, char* argv[])
37 {
38   sg4::Engine e(&argc, argv);
39   xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s platform.xml\n", argv[0], argv[0]);
40
41   e.load_platform(argv[1]);
42
43   sg4::Actor::create("executor", e.host_by_name("Tremblay"), executor);
44   sg4::Actor::create("privileged", e.host_by_name("Tremblay"), privileged);
45
46   e.run();
47
48   return 0;
49 }