Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
smpi: fix issue with message IDs. In case of persistent request reused multiple times...
[simgrid.git] / examples / cpp / app-masterworkers / s4u-app-masterworkers-fun.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 namespace sg4 = simgrid::s4u;
12
13 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_app_masterworker, "Messages specific for this example");
14
15 // master-begin
16 static void master(std::vector<std::string> args)
17 {
18   xbt_assert(args.size() > 4, "The master function expects at least 3 arguments");
19
20   long tasks_count        = std::stol(args[1]);
21   double compute_cost     = std::stod(args[2]);
22   long communication_cost = std::stol(args[3]);
23   std::vector<sg4::Mailbox*> workers;
24   for (unsigned int i = 4; i < args.size(); i++)
25     workers.push_back(sg4::Mailbox::by_name(args[i]));
26
27   XBT_INFO("Got %zu workers and %ld tasks to process", workers.size(), tasks_count);
28
29   for (int i = 0; i < tasks_count; i++) { /* For each task to be executed: */
30     /* - Select a worker in a round-robin way */
31     sg4::Mailbox* mailbox = workers[i % workers.size()];
32
33     /* - Send the computation cost to that worker */
34     XBT_INFO("Sending task %d of %ld to mailbox '%s'", i, tasks_count, mailbox->get_cname());
35     mailbox->put(new double(compute_cost), communication_cost);
36   }
37
38   XBT_INFO("All tasks have been dispatched. Request all workers to stop.");
39   for (unsigned int i = 0; i < workers.size(); i++) {
40     /* The workers stop when receiving a negative compute_cost */
41     sg4::Mailbox* mailbox = workers[i % workers.size()];
42
43     mailbox->put(new double(-1.0), 0);
44   }
45 }
46 // master-end
47
48 // worker-begin
49 static void worker(std::vector<std::string> args)
50 {
51   xbt_assert(args.size() == 1, "The worker expects no argument");
52
53   const sg4::Host* my_host = sg4::this_actor::get_host();
54   sg4::Mailbox* mailbox    = sg4::Mailbox::by_name(my_host->get_name());
55
56   double compute_cost;
57   do {
58     auto msg     = mailbox->get_unique<double>();
59     compute_cost = *msg;
60
61     if (compute_cost > 0) /* If compute_cost is valid, execute a computation of that cost */
62       sg4::this_actor::execute(compute_cost);
63   } while (compute_cost > 0); /* Stop when receiving an invalid compute_cost */
64
65   XBT_INFO("Exiting now.");
66 }
67 // worker-end
68
69 // main-begin
70 int main(int argc, char* argv[])
71 {
72   sg4::Engine e(&argc, argv);
73   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n", argv[0]);
74
75   /* Register the functions representing the actors */
76   e.register_function("master", &master);
77   e.register_function("worker", &worker);
78
79   /* Load the platform description and then deploy the application */
80   e.load_platform(argv[1]);
81   e.load_deployment(argv[2]);
82
83   /* Run the simulation */
84   e.run();
85
86   XBT_INFO("Simulation is over");
87
88   return 0;
89 }
90 // main-end