Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2023.
[simgrid.git] / examples / cpp / app-masterworkers / s4u-app-masterworkers-class.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 /* ************************************************************************* */
7 /* Take this tutorial online: https://simgrid.org/doc/latest/Tutorial_Algorithms.html */
8 /* ************************************************************************* */
9
10 #include <simgrid/s4u.hpp>
11
12 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_app_masterworker, "Messages specific for this s4u example");
13 namespace sg4 = simgrid::s4u;
14
15 class Master {
16   long tasks_count      = 0;
17   double compute_cost   = 0;
18   long communicate_cost = 0;
19   std::vector<sg4::Mailbox*> workers;
20
21 public:
22   explicit Master(std::vector<std::string> args)
23   {
24     xbt_assert(args.size() > 4, "The master function expects 3 arguments plus the workers' names");
25
26     tasks_count      = std::stol(args[1]);
27     compute_cost     = std::stod(args[2]);
28     communicate_cost = std::stol(args[3]);
29     for (unsigned int i = 4; i < args.size(); i++)
30       workers.push_back(sg4::Mailbox::by_name(args[i]));
31
32     XBT_INFO("Got %zu workers and %ld tasks to process", workers.size(), tasks_count);
33   }
34
35   void operator()()
36   {
37     for (int i = 0; i < tasks_count; i++) { /* For each task to be executed: */
38       /* - Select a worker in a round-robin way */
39       sg4::Mailbox* mailbox = workers[i % workers.size()];
40
41       /* - Send the computation amount to the worker */
42       if (tasks_count < 10000 || (tasks_count < 100000 && i % 10000 == 0) || i % 100000 == 0)
43         XBT_INFO("Sending task %d of %ld to mailbox '%s'", i, tasks_count, mailbox->get_cname());
44       mailbox->put(new double(compute_cost), communicate_cost);
45     }
46
47     XBT_INFO("All tasks have been dispatched. Request all workers to stop.");
48     for (unsigned int i = 0; i < workers.size(); i++) {
49       /* The workers stop when receiving a negative compute_cost */
50       sg4::Mailbox* mailbox = workers[i % workers.size()];
51       mailbox->put(new double(-1.0), 0);
52     }
53   }
54 };
55
56 class Worker {
57   sg4::Mailbox* mailbox = nullptr;
58
59 public:
60   explicit Worker(std::vector<std::string> args)
61   {
62     xbt_assert(args.size() == 1, "The worker expects to not get any argument");
63
64     mailbox = sg4::Mailbox::by_name(sg4::this_actor::get_host()->get_name());
65   }
66
67   void operator()()
68   {
69     double compute_cost;
70     do {
71       auto msg     = mailbox->get_unique<double>();
72       compute_cost = *msg;
73
74       if (compute_cost > 0) /* If compute_cost is valid, execute a computation of that cost */
75         sg4::this_actor::execute(compute_cost);
76     } while (compute_cost > 0); /* Stop when receiving an invalid compute_cost */
77
78     XBT_INFO("Exiting now.");
79   }
80 };
81
82 int main(int argc, char* argv[])
83 {
84   sg4::Engine e(&argc, argv);
85   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n", argv[0]);
86
87   /* Register the classes representing the actors */
88   e.register_actor<Master>("master");
89   e.register_actor<Worker>("worker");
90
91   /* Load the platform description and then deploy the application */
92   e.load_platform(argv[1]);
93   e.load_deployment(argv[2]);
94
95   /* Run the simulation */
96   e.run();
97
98   XBT_INFO("Simulation is over");
99
100   return 0;
101 }