Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
64176fae17475fbfa91cc1f280f2bfb649dd1a5b
[simgrid.git] / docs / source / tuto_s4u / master-workers-lab2.cpp
1 /* Copyright (c) 2010-2020. 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  *
8  *     This is our solution to the second lab of the S4U tutorial
9  * (available online at https://simgrid.frama.io/simgrid/tuto_s4u.html)
10  *
11  *    Reading this further before taking the tutorial will SPOIL YOU!!!
12  *
13  ****************************************************************************/
14
15 #include <simgrid/s4u.hpp>
16
17 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_app_masterworker, "Messages specific for this example");
18
19 static void worker()
20 {
21   const std::string mailbox_name   = std::string("worker-") + std::to_string(simgrid::s4u::this_actor::get_pid());
22   simgrid::s4u::Mailbox* mailbox   = simgrid::s4u::Mailbox::by_name(mailbox_name);
23
24   double compute_cost;
25   do {
26     double* msg  = static_cast<double*>(mailbox->get());
27     compute_cost = *msg;
28     delete msg;
29
30     if (compute_cost > 0) /* If compute_cost is valid, execute a computation of that cost */
31       simgrid::s4u::this_actor::execute(compute_cost);
32
33   } while (compute_cost > 0); /* Stop when receiving an invalid compute_cost */
34
35   XBT_INFO("Exiting now.");
36 }
37
38 static void master(std::vector<std::string> args)
39 {
40   xbt_assert(args.size() == 4, "The master function expects 3 arguments");
41
42   long tasks_count          = std::stol(args[1]);
43   double compute_cost       = std::stod(args[2]);
44   double communication_cost = std::stod(args[3]);
45
46   std::vector<simgrid::s4u::ActorPtr> actors;
47
48   for (auto* host : simgrid::s4u::Engine::get_instance()->get_all_hosts()) {
49     simgrid::s4u::ActorPtr act = simgrid::s4u::Actor::create(std::string("Worker-") + host->get_name(), host, worker);
50     actors.push_back(act);
51   }
52
53   XBT_INFO("Got %ld tasks to process", tasks_count);
54
55   for (int i = 0; i < tasks_count; i++) { /* For each task to be executed: */
56     /* - Select a worker in a round-robin way */
57     aid_t worker_pid                 = actors.at(i % actors.size())->get_pid();
58     std::string mailbox_name         = std::string("worker-") + std::to_string(worker_pid);
59     simgrid::s4u::Mailbox* mailbox   = simgrid::s4u::Mailbox::by_name(mailbox_name);
60
61     /* - Send the computation cost to that worker */
62     XBT_INFO("Sending task %d of %ld to mailbox '%s'", i, tasks_count, mailbox->get_cname());
63     mailbox->put(new double(compute_cost), communication_cost);
64   }
65
66   XBT_INFO("All tasks have been dispatched. Request all workers to stop.");
67   for (unsigned long i = 0; i < actors.size(); i++) {
68     /* The workers stop when receiving a negative compute_cost */
69     std::string mailbox_name         = std::string("worker-") + std::to_string(actors.at(i)->get_pid());
70     simgrid::s4u::Mailbox* mailbox   = simgrid::s4u::Mailbox::by_name(mailbox_name);
71
72     mailbox->put(new double(-1.0), 0);
73   }
74 }
75
76 int main(int argc, char* argv[])
77 {
78   simgrid::s4u::Engine e(&argc, argv);
79   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n", argv[0]);
80
81   /* Register the functions representing the actors */
82   e.register_function("master", &master);
83
84   /* Load the platform description and then deploy the application */
85   e.load_platform(argv[1]);
86   e.load_deployment(argv[2]);
87
88   /* Run the simulation */
89   e.run();
90
91   XBT_INFO("Simulation is over");
92
93   return 0;
94 }