]> AND Private Git Repository - loba.git/blob - process.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Remove unused default for 2nd parameter of sleep_until_date.
[loba.git] / process.cpp
1 #include <algorithm>
2 #include <tr1/functional>
3 #include <iterator>
4 #include <numeric>
5 #include <stdexcept>
6 #include <sstream>
7 #include <xbt/log.h>
8 #include <xbt/time.h>
9
10 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(proc);
11
12 #include "misc.h"
13 #include "options.h"
14 #include "tracing.h"
15
16 #include "process.h"
17
18 double process::total_load_init = 0.0;
19 double process::total_load_running = 0.0;
20 double process::total_load_exit = 0.0;
21
22 namespace {
23
24     void sleep_until_date(double& date, double duration)
25     {
26         double sleep_duration = date - MSG_get_clock();
27         if (sleep_duration > 0.0)
28             MSG_process_sleep(sleep_duration);
29         date = MSG_get_clock() + duration;
30     }
31
32 }
33
34 process::process(int argc, char* argv[])
35 {
36     if (argc < 2 || !(std::istringstream(argv[1]) >> real_load))
37         throw std::invalid_argument("bad or missing initial load parameter");
38
39     neigh.assign(argv + 2, argv + argc);
40
41     pneigh.reserve(neigh.size());
42     for (unsigned i = 0 ; i < neigh.size() ; i++) {
43         neighbor* ptr = &neigh[i];
44         m_host_t host = MSG_get_host_by_name(ptr->get_name());
45         pneigh.push_back(ptr);
46         rev_neigh.insert(std::make_pair(host, ptr));
47     }
48
49     prev_load_broadcast = -1;   // force sending of load on first send_all()
50     expected_load = real_load;
51     total_load_running += real_load;
52     total_load_init += real_load;
53
54     ctrl_close_pending = data_close_pending = neigh.size();
55     close_received = false;
56     finalizing = false;
57
58     comp_iter = lb_iter = 0;
59
60     lb_thread = new_msg_thread("loba",
61                                std::tr1::bind(&process::load_balance_loop,
62                                               this));
63
64     e_xbt_log_priority_t logp = xbt_log_priority_verbose;
65     if (!LOG_ISENABLED(logp))
66         return;
67     std::ostringstream oss;
68     oss << neigh.size() << " neighbor";
69     if (!neigh.empty()) {
70         oss << ESSE(neigh.size()) << ": ";
71         std::transform(neigh.begin(), neigh.end() - 1,
72                        std::ostream_iterator<const char*>(oss, ", "),
73                        std::tr1::mem_fn(&neighbor::get_name));
74         oss << neigh.back().get_name();
75     }
76     XBT_LOG(logp, "Got %s.", oss.str().c_str());
77     print_loads(false, logp);
78 }
79
80 process::~process()
81 {
82     delete lb_thread;
83     total_load_exit += real_load;
84     if (opt::log_rate < 0)
85         return;
86     XBT_INFO("Final load after %d:%d iterations: %g",
87              lb_iter, comp_iter, real_load);
88     XBT_VERB("Expected load was: %g", expected_load);
89     XBT_VERB("Total computation for this process: %g", get_comp_amount());
90 }
91
92 int process::run()
93 {
94     if (opt::log_rate >= 0) {
95         XBT_INFO("Initial load: %g", real_load);
96         XBT_VERB("Initial expected load: %g", expected_load);
97     }
98     XBT_VERB("Starting...");
99     mutex.acquire();
100     lb_thread->start();
101     while (lb_iter <= opt::comp_iter_delay)
102         cond.wait(mutex);
103     mutex.release();
104     double sleep_duration = opt::comp_time_delay - MSG_get_clock();
105     if (sleep_duration > 0.0)
106         MSG_process_sleep(sleep_duration);
107     compute_loop();
108     lb_thread->wait();
109     XBT_VERB("Done.");
110     return 0;
111 }
112
113 void process::load_balance_loop()
114 {
115     using std::tr1::bind;
116     using std::tr1::placeholders::_1;
117
118     double next_iter_after_date = MSG_get_clock() + opt::min_lb_iter_duration;
119     while (still_running()) {
120         if (lb_iter == opt::comp_iter_delay) {
121             mutex.acquire();
122             ++lb_iter;
123             cond.signal();
124             mutex.release();
125         } else {
126             ++lb_iter;
127         }
128
129         if (!opt::bookkeeping)
130             expected_load = real_load - get_sum_of_to_send();
131         // nothing to do with opt::bookkeeping
132
133         if (opt::log_rate && lb_iter % opt::log_rate == 0) {
134             XBT_INFO("(%u:%u) current load: %g", lb_iter, comp_iter, real_load);
135             XBT_VERB("... expected load: %g", expected_load);
136         }
137
138         if (expected_load > 0.0)
139             load_balance();
140
141         print_loads(true, xbt_log_priority_debug);
142
143         // send
144         std::for_each(neigh.begin(), neigh.end(),
145                       bind(&process::ctrl_send, this, _1));
146         prev_load_broadcast = expected_load;
147
148         sleep_until_date(next_iter_after_date, opt::min_lb_iter_duration);
149         ctrl_receive(0.0);
150
151         comm.ctrl_flush(false);
152     }
153
154     XBT_VERB("Going to finalize for %s...", __func__);
155     XBT_DEBUG("send CTRL_CLOSE to %zu neighbor%s",
156               neigh.size(), ESSE(neigh.size()));
157     std::for_each(neigh.begin(), neigh.end(),
158                   bind(&process::ctrl_close, this, _1));
159     while (ctrl_close_pending) {
160         comm.ctrl_flush(false);
161         XBT_DEBUG("waiting for %d CTRL CLOSE", ctrl_close_pending);
162         ctrl_receive(-1.0);
163     }
164     comm.ctrl_flush(true);
165 }
166
167 void process::compute_loop()
168 {
169     using std::tr1::bind;
170     using std::tr1::placeholders::_1;
171
172     double next_iter_after_date = MSG_get_clock() + opt::min_comp_iter_duration;
173     while (still_running()) {
174         // receive
175         if (real_load > 0.0)
176             data_receive(0.0);
177         else
178             data_receive(opt::min_comp_iter_duration);
179
180         comm.data_flush(false);
181
182         // send
183         std::for_each(neigh.begin(), neigh.end(),
184                       bind(&process::data_send, this, _1));
185
186         if (real_load == 0.0)
187             continue;
188
189         // compute
190         ++comp_iter;
191         double flops = opt::comp_cost(real_load);
192         m_task_t task = MSG_task_create("computation", flops, 0.0, NULL);
193         TRACE_msg_set_task_category(task, TRACE_CAT_COMP);
194         XBT_DEBUG("compute %g flop%s", flops, ESSE(flops));
195         MSG_task_execute(task);
196         add_comp_amount(flops);
197         MSG_task_destroy(task);
198
199         sleep_until_date(next_iter_after_date, opt::min_comp_iter_duration);
200     }
201
202     XBT_VERB("Going to finalize for %s...", __func__);
203     // last send, for not losing load scheduled to be sent
204     std::for_each(neigh.begin(), neigh.end(),
205                   bind(&process::data_send, this, _1));
206     finalizing = true;
207     total_load_running -= real_load;
208     XBT_DEBUG("send DATA_CLOSE to %zu neighbor%s",
209               neigh.size(), ESSE(neigh.size()));
210     std::for_each(neigh.begin(), neigh.end(),
211                   bind(&process::data_close, this, _1));
212     while (data_close_pending) {
213         comm.data_flush(false);
214         XBT_DEBUG("waiting for %d DATA CLOSE", data_close_pending);
215         data_receive(-1.0);
216     }
217     comm.data_flush(true);
218 }
219
220 bool process::still_running()
221 {
222     static bool last_status = true;
223
224     if (!last_status) {
225         /* nop */
226
227     } else if (opt::exit_request) {
228         XBT_VERB("Global exit requested");
229         last_status = false;
230
231     } else if (opt::time_limit && MSG_get_clock() >= opt::time_limit) {
232         XBT_VERB("Reached time limit: %g/%g", MSG_get_clock(), opt::time_limit);
233         last_status = false;
234
235     } else if (opt::lb_maxiter && lb_iter >= opt::lb_maxiter) {
236         XBT_VERB("Reached lb_maxiter: %d/%d", lb_iter, opt::lb_maxiter);
237         last_status = false;
238
239     } else if (opt::comp_maxiter && comp_iter >= opt::comp_maxiter) {
240         XBT_VERB("Reached comp_maxiter: %d/%d", comp_iter, opt::comp_maxiter);
241         last_status = false;
242
243     } else if (opt::exit_on_close && close_received) {
244         XBT_VERB("Close received");
245         last_status = false;
246
247     } else if (real_load == 0.0 && !data_close_pending) {
248         XBT_VERB("I'm a poor lonesome process, and I have no load...");
249         last_status = false;
250
251     } else if (100.0 * total_load_running / total_load_init <=
252                opt::load_ratio_threshold) {
253         // fixme: this check should be implemented with a distributed
254         // algorithm, and not a shared global variable!
255         XBT_VERB("No more load to balance in system.");
256         last_status = false;
257     }
258
259     return last_status;
260 }
261
262 double process::get_sum_of_to_send() const
263 {
264     using std::tr1::bind;
265     using std::tr1::placeholders::_1;
266     using std::tr1::placeholders::_2;
267
268     return std::accumulate(neigh.begin(), neigh.end(), 0.0,
269                            bind(std::plus<double>(),
270                                 _1, bind(&neighbor::get_to_send, _2)));
271 }
272
273 void process::load_balance()
274 {
275     if (lb_iter == 1)           // warn only once
276         XBT_WARN("process::load_balance() is a no-op!");
277 }
278
279 void process::send(neighbor& nb, double amount)
280 {
281     expected_load -= amount;
282     nb.set_to_send(nb.get_to_send() + amount);
283     nb.set_load(nb.get_load() + amount);
284 }
285
286 void process::ctrl_send(neighbor& nb)
287 {
288     double info_to_send = expected_load;
289     if (info_to_send != prev_load_broadcast) {
290         message* msg = new message(message::INFO, info_to_send);
291         add_ctrl_send_mesg(msg->get_size());
292         comm.ctrl_send(nb.get_ctrl_mbox(), msg);
293     }
294     if (opt::bookkeeping) {
295         double debt_to_send = nb.get_to_send();
296         if (debt_to_send > 0.0) {
297             nb.set_to_send(0.0);
298             nb.set_debt(nb.get_debt() + debt_to_send);
299             message* msg = new message(message::CREDIT, debt_to_send);
300             add_ctrl_send_mesg(msg->get_size());
301             comm.ctrl_send(nb.get_ctrl_mbox(), msg);
302         }
303     }
304 }
305
306 void process::data_send(neighbor& nb)
307 {
308     double load_to_send;
309     if (opt::bookkeeping) {
310         load_to_send = std::min(real_load, nb.get_debt());
311         if (load_to_send >= opt::min_transfer_amount) {
312             nb.set_debt(nb.get_debt() - load_to_send);
313             real_load -= load_to_send;
314         } else {
315             load_to_send = 0.0;
316         }
317     } else {
318         load_to_send = nb.get_to_send();
319         if (load_to_send >= opt::min_transfer_amount) {
320             nb.set_to_send(0.0);
321             real_load -= load_to_send;
322         } else {
323             load_to_send = 0.0;
324         }
325     }
326     while (load_to_send > 0.0) {
327         double amount;
328         if (opt::max_transfer_amount)
329             amount = std::min(load_to_send, opt::max_transfer_amount);
330         else
331             amount = load_to_send;
332         message* msg = new message(message::LOAD, amount);
333         add_data_send_mesg(msg->get_size());
334         comm.data_send(nb.get_data_mbox(), msg);
335         load_to_send -= amount;
336     }
337 }
338
339 void process::ctrl_close(neighbor& nb)
340 {
341     comm.ctrl_send(nb.get_ctrl_mbox(), new message(message::CTRL_CLOSE, 0.0));
342 }
343
344 void process::data_close(neighbor& nb)
345 {
346     comm.data_send(nb.get_data_mbox(), new message(message::DATA_CLOSE, 0.0));
347 }
348
349 void process::ctrl_receive(double timeout)
350 {
351     message* msg;
352     m_host_t from;
353
354     XBT_DEBUG("%sblocking receive on ctrl (%g)", "\0non-" + !timeout, timeout);
355     while (ctrl_close_pending && comm.ctrl_recv(msg, from, timeout)) {
356         if (msg->get_type() != message::CTRL_CLOSE)
357             add_ctrl_recv_mesg(msg->get_size());
358         handle_message(msg, from);
359         timeout = 0.0;
360     }
361 }
362
363 void process::data_receive(double timeout)
364 {
365     message* msg;
366     m_host_t from;
367
368     XBT_DEBUG("%sblocking receive on data (%g)", "\0non-" + !timeout, timeout);
369     while (data_close_pending && comm.data_recv(msg, from, timeout)) {
370         if (msg->get_type() != message::DATA_CLOSE)
371             add_data_recv_mesg(msg->get_size());
372         handle_message(msg, from);
373         timeout = 0.0;
374     }
375 }
376
377 void process::handle_message(message* msg, m_host_t from)
378 {
379     switch (msg->get_type()) {
380     case message::INFO: {
381         neighbor* n = rev_neigh[from];
382         n->set_load(msg->get_amount() + n->get_to_send());
383         break;
384     }
385     case message::CREDIT:
386         expected_load += msg->get_amount();
387         break;
388     case message::LOAD: {
389         double ld = msg->get_amount();
390         real_load += ld;
391         if (finalizing)
392             total_load_running -= ld;
393         break;
394     }
395     case message::CTRL_CLOSE:
396         ctrl_close_pending--;
397         close_received = true;
398         break;
399     case message::DATA_CLOSE:
400         data_close_pending--;
401         close_received = true;
402         break;
403     }
404     delete msg;
405 }
406
407 #define print_loads_generic(vec, verbose, logp, cat)                    \
408     if (_XBT_LOG_ISENABLEDV((*cat), logp)) {                            \
409         using std::tr1::bind;                                           \
410         using std::tr1::placeholders::_1;                               \
411         XBT_XCLOG(cat, logp, "My load: %g (real); %g (expected).  "     \
412                   "Neighbor loads:", real_load, expected_load);         \
413         std::for_each(vec.begin(), vec.end(),                           \
414                       bind(&neighbor::print, _1, verbose, logp, cat));  \
415     } else ((void)0)
416
417 void process::print_loads(bool verbose,
418                           e_xbt_log_priority_t logp,
419                           xbt_log_category_t cat) const
420 {
421     print_loads_generic(neigh, verbose, logp, cat);
422 }
423
424 void process::print_loads_p(bool verbose,
425                             e_xbt_log_priority_t logp,
426                             xbt_log_category_t cat) const
427 {
428     print_loads_generic(pneigh, verbose, logp, cat);
429 }
430
431 #undef print_loads_generic
432
433 // Local variables:
434 // mode: c++
435 // End: