Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
make examples/s4u/app-masterworkers more complex to make simplification exercises...
[simgrid.git] / examples / s4u / app-masterworkers / s4u-app-masterworkers-class.cpp
1 /* Copyright (c) 2010-2018. 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 /* This is part of the following tutorial:                                  */
7 /*    https://simgrid.frama.io/simgrid/usecase_algorithms.html              */
8
9 #include <simgrid/s4u.hpp>
10
11 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_app_masterworker, "Messages specific for this s4u example");
12
13 class Master {
14   long tasks_count                 = 0;
15   double compute_cost              = 0;
16   double communicate_cost          = 0;
17   std::vector<simgrid::s4u::MailboxPtr> workers;
18
19 public:
20   explicit Master(std::vector<std::string> args)
21   {
22     xbt_assert(args.size() > 4, "The master function expects 3 arguments plus the workers' names");
23
24     tasks_count      = std::stol(args[1]);
25     compute_cost     = std::stod(args[2]);
26     communicate_cost = std::stod(args[3]);
27     for (unsigned int i = 4; i < args.size(); i++)
28       workers.push_back(simgrid::s4u::Mailbox::by_name(args[i]));
29
30     XBT_INFO("Got %zu workers and %ld tasks to process", workers.size(), tasks_count);
31   }
32
33   void operator()()
34   {
35     for (int i = 0; i < tasks_count; i++) { /* For each task to be executed: */
36       /* - Select a worker in a round-robin way */
37       simgrid::s4u::MailboxPtr mailbox = workers[i % workers.size()];
38
39       /* - Send the computation amount to the worker */
40       if (tasks_count < 10000 || (tasks_count < 100000 && i % 10000 == 0) || i % 100000 == 0)
41         XBT_INFO("Sending task %d of %ld to mailbox '%s'", i, tasks_count, mailbox->get_cname());
42       mailbox->put(new double(compute_cost), communicate_cost);
43     }
44
45     XBT_INFO("All tasks have been dispatched. Request all workers to stop.");
46     for (unsigned int i = 0; i < workers.size(); i++) {
47       /* The workers stop when receiving a negative compute_cost */
48       simgrid::s4u::MailboxPtr mailbox = workers[i % workers.size()];
49       mailbox->put(new double(-1.0), 0);
50     }
51   }
52 };
53
54 class Worker {
55   simgrid::s4u::MailboxPtr mailbox = nullptr;
56
57 public:
58   explicit Worker(std::vector<std::string> args)
59   {
60     xbt_assert(args.size() == 1, "The worker expects to not get any argument");
61
62     mailbox = simgrid::s4u::Mailbox::by_name(simgrid::s4u::this_actor::get_host()->get_name());
63   }
64
65   void operator()()
66   {
67     double compute_cost;
68     do {
69       double* msg  = static_cast<double*>(mailbox->get());
70       compute_cost = *msg;
71       delete msg;
72
73       if (compute_cost > 0) /* If compute_cost is valid, execute a computation of that cost */
74         simgrid::s4u::this_actor::execute(compute_cost);
75
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   simgrid::s4u::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 }