Logo AND Algorithmique Numérique Distribuée

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