Logo AND Algorithmique Numérique Distribuée

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