Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / docs / source / tuto_s4u / master-workers-lab4.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 fourth 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(std::string category)
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   while (true) { // Master forcefully kills the workers by the end of the simulation
25     double* msg         = static_cast<double*>(mailbox->get());
26     double compute_cost = *msg;
27     delete msg;
28
29     // simgrid::s4u::this_actor::exec_init(compute_cost)->set_tracing_category(category)->wait();
30     /* Long form:*/
31     simgrid::s4u::ExecPtr exec = simgrid::s4u::this_actor::exec_init(compute_cost);
32     exec->set_tracing_category(category);
33     exec->wait();
34   }
35 }
36
37 static void master(std::vector<std::string> args)
38 {
39   xbt_assert(args.size() == 4, "The master function expects 3 arguments");
40
41   double simulation_duration = std::stod(args[1]);
42   double compute_cost        = std::stod(args[2]);
43   double communication_cost  = std::stod(args[3]);
44
45   std::vector<simgrid::s4u::ActorPtr> actors;
46
47   simgrid::s4u::Engine* e = simgrid::s4u::Engine::get_instance();
48   std::string my_name     = std::string("master-") + std::to_string(simgrid::s4u::this_actor::get_pid());
49
50   XBT_INFO("Asked to run for %.1f seconds", simulation_duration);
51
52   for (auto* host : e->get_all_hosts()) {
53     simgrid::s4u::ActorPtr act =
54         simgrid::s4u::Actor::create(std::string("Worker-") + host->get_name(), host, worker, my_name);
55     actors.push_back(act);
56   }
57
58   int task_id = 0;
59   while (e->get_clock() < simulation_duration) { /* For each task: */
60     /* - Select a worker in a round-robin way */
61     aid_t worker_pid                 = actors.at(task_id % actors.size())->get_pid();
62     std::string mailbox_name         = std::string("worker-") + std::to_string(worker_pid);
63     simgrid::s4u::Mailbox* mailbox   = simgrid::s4u::Mailbox::by_name(mailbox_name);
64
65     /* - Send the computation cost to that worker */
66     XBT_DEBUG("Sending task %d to mailbox '%s'", task_id, mailbox->get_cname());
67     mailbox->put(new double(compute_cost), communication_cost);
68
69     task_id++;
70   }
71
72   XBT_INFO("Time is up. Forcefully kill all workers.");
73   for (unsigned long i = 0; i < actors.size(); i++) {
74     actors.at(i)->kill();
75   }
76 }
77
78 int main(int argc, char* argv[])
79 {
80   simgrid::s4u::Engine e(&argc, argv);
81   xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n", argv[0]);
82
83   /* Register the functions representing the actors */
84   e.register_function("master", &master);
85
86   /* Load the platform description and then deploy the application */
87   e.load_platform(argv[1]);
88   e.load_deployment(argv[2]);
89
90   /* Run the simulation */
91   e.run();
92
93   XBT_INFO("Simulation is over");
94
95   return 0;
96 }