2 #include <tr1/functional>
10 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(proc);
18 double process::total_load_init = 0.0;
19 double process::total_load_running = 0.0;
20 double process::total_load_exit = 0.0;
24 void sleep_until_date(double& date, double duration)
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;
34 process::process(int argc, char* argv[])
36 if (argc < 2 || !(std::istringstream(argv[1]) >> real_load))
37 throw std::invalid_argument("bad or missing initial load parameter");
39 neigh.assign(argv + 2, argv + argc);
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));
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;
54 ctrl_close_pending = data_close_pending = neigh.size();
55 close_received = false;
58 comp_iter = lb_iter = 0;
60 lb_thread = new_msg_thread("loba",
61 std::tr1::bind(&process::load_balance_loop,
64 e_xbt_log_priority_t logp = xbt_log_priority_verbose;
65 if (!LOG_ISENABLED(logp))
67 std::ostringstream oss;
68 oss << neigh.size() << " neighbor";
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();
76 XBT_LOG(logp, "Got %s.", oss.str().c_str());
77 print_loads(false, logp);
83 total_load_exit += real_load;
84 if (opt::log_rate < 0)
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());
94 if (opt::log_rate >= 0) {
95 XBT_INFO("Initial load: %g", real_load);
96 XBT_VERB("Initial expected load: %g", expected_load);
98 XBT_VERB("Starting...");
101 while (lb_iter <= opt::comp_iter_delay)
104 double sleep_duration = opt::comp_time_delay - MSG_get_clock();
105 if (sleep_duration > 0.0)
106 MSG_process_sleep(sleep_duration);
113 void process::load_balance_loop()
115 using std::tr1::bind;
116 using std::tr1::placeholders::_1;
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) {
130 if (!opt::bookkeeping)
131 expected_load = real_load - get_sum_of_to_send();
132 // nothing to do with opt::bookkeeping
134 if (opt::log_rate && lb_iter % opt::log_rate == 0) {
135 XBT_INFO("(%u:%u) current load: %g", lb_iter, comp_iter, real_load);
136 XBT_VERB("... expected load: %g", expected_load);
139 if (expected_load > 0.0)
142 print_loads(true, xbt_log_priority_debug);
145 std::for_each(neigh.begin(), neigh.end(),
146 bind(&process::ctrl_send, this, _1));
147 prev_load_broadcast = expected_load;
150 sleep_until_date(next_iter_after_date, opt::min_lb_iter_duration);
153 comm.ctrl_flush(false);
156 XBT_VERB("Going to finalize for %s...", __func__);
157 XBT_DEBUG("send CTRL_CLOSE to %zu neighbor%s",
158 neigh.size(), ESSE(neigh.size()));
159 std::for_each(neigh.begin(), neigh.end(),
160 bind(&process::ctrl_close, this, _1));
161 while (ctrl_close_pending) {
162 comm.ctrl_flush(false);
163 XBT_DEBUG("waiting for %d CTRL CLOSE", ctrl_close_pending);
166 comm.ctrl_flush(true);
169 void process::compute_loop()
171 using std::tr1::bind;
172 using std::tr1::placeholders::_1;
174 double next_iter_after_date = MSG_get_clock() + opt::min_comp_iter_duration;
175 while (still_running()) {
181 data_receive(opt::min_comp_iter_duration);
184 comm.data_flush(false);
188 std::for_each(neigh.begin(), neigh.end(),
189 bind(&process::data_send, this, _1));
192 if (real_load == 0.0)
197 double flops = opt::comp_cost(real_load);
198 m_task_t task = MSG_task_create("computation", flops, 0.0, NULL);
199 TRACE_msg_set_task_category(task, TRACE_CAT_COMP);
200 XBT_DEBUG("compute %g flop%s", flops, ESSE(flops));
201 MSG_task_execute(task);
202 add_comp_amount(flops);
203 MSG_task_destroy(task);
205 sleep_until_date(next_iter_after_date, opt::min_comp_iter_duration);
208 XBT_VERB("Going to finalize for %s...", __func__);
209 // last send, for not losing load scheduled to be sent
210 std::for_each(neigh.begin(), neigh.end(),
211 bind(&process::data_send, this, _1));
213 total_load_running -= real_load;
214 XBT_DEBUG("send DATA_CLOSE to %zu neighbor%s",
215 neigh.size(), ESSE(neigh.size()));
216 std::for_each(neigh.begin(), neigh.end(),
217 bind(&process::data_close, this, _1));
218 while (data_close_pending) {
219 comm.data_flush(false);
220 XBT_DEBUG("waiting for %d DATA CLOSE", data_close_pending);
223 comm.data_flush(true);
226 bool process::still_running()
228 static bool last_status = true;
233 } else if (opt::exit_request) {
234 XBT_VERB("Global exit requested");
237 } else if (opt::time_limit && MSG_get_clock() >= opt::time_limit) {
238 XBT_VERB("Reached time limit: %g/%g", MSG_get_clock(), opt::time_limit);
241 } else if (opt::lb_maxiter && lb_iter >= opt::lb_maxiter) {
242 XBT_VERB("Reached lb_maxiter: %d/%d", lb_iter, opt::lb_maxiter);
245 } else if (opt::comp_maxiter && comp_iter >= opt::comp_maxiter) {
246 XBT_VERB("Reached comp_maxiter: %d/%d", comp_iter, opt::comp_maxiter);
249 } else if (opt::exit_on_close && close_received) {
250 XBT_VERB("Close received");
253 } else if (real_load == 0.0 && !data_close_pending) {
254 XBT_VERB("I'm a poor lonesome process, and I have no load...");
257 } else if (100.0 * total_load_running / total_load_init <=
258 opt::load_ratio_threshold) {
259 // fixme: this check should be implemented with a distributed
260 // algorithm, and not a shared global variable!
261 XBT_VERB("No more load to balance in system.");
268 double process::get_sum_of_to_send() const
270 using std::tr1::bind;
271 using std::tr1::placeholders::_1;
272 using std::tr1::placeholders::_2;
274 return std::accumulate(neigh.begin(), neigh.end(), 0.0,
275 bind(std::plus<double>(),
276 _1, bind(&neighbor::get_to_send, _2)));
279 void process::load_balance()
281 if (lb_iter == 1) // warn only once
282 XBT_WARN("process::load_balance() is a no-op!");
285 void process::send(neighbor& nb, double amount)
287 expected_load -= amount;
288 nb.set_to_send(nb.get_to_send() + amount);
289 nb.set_load(nb.get_load() + amount);
292 void process::ctrl_send(neighbor& nb)
294 double info_to_send = expected_load;
295 if (info_to_send != prev_load_broadcast) {
296 message* msg = new message(message::INFO, info_to_send);
297 add_ctrl_send_mesg(msg->get_size());
298 comm.ctrl_send(nb.get_ctrl_mbox(), msg);
300 if (opt::bookkeeping) {
301 double debt_to_send = nb.get_to_send();
302 if (debt_to_send > 0.0) {
304 nb.set_debt(nb.get_debt() + debt_to_send);
305 message* msg = new message(message::CREDIT, debt_to_send);
306 add_ctrl_send_mesg(msg->get_size());
307 comm.ctrl_send(nb.get_ctrl_mbox(), msg);
312 void process::data_send(neighbor& nb)
315 if (opt::bookkeeping) {
316 load_to_send = std::min(real_load, nb.get_debt());
317 if (load_to_send >= opt::min_transfer_amount) {
318 nb.set_debt(nb.get_debt() - load_to_send);
319 real_load -= load_to_send;
324 load_to_send = nb.get_to_send();
325 if (load_to_send >= opt::min_transfer_amount) {
327 real_load -= load_to_send;
332 while (load_to_send > 0.0) {
334 if (opt::max_transfer_amount)
335 amount = std::min(load_to_send, opt::max_transfer_amount);
337 amount = load_to_send;
338 message* msg = new message(message::LOAD, amount);
339 add_data_send_mesg(msg->get_size());
340 comm.data_send(nb.get_data_mbox(), msg);
341 load_to_send -= amount;
345 void process::ctrl_close(neighbor& nb)
347 comm.ctrl_send(nb.get_ctrl_mbox(), new message(message::CTRL_CLOSE, 0.0));
350 void process::data_close(neighbor& nb)
352 comm.data_send(nb.get_data_mbox(), new message(message::DATA_CLOSE, 0.0));
355 void process::ctrl_receive(double timeout)
360 XBT_DEBUG("%sblocking receive on ctrl (%g)", "\0non-" + !timeout, timeout);
361 while (ctrl_close_pending && comm.ctrl_recv(msg, from, timeout)) {
362 if (msg->get_type() != message::CTRL_CLOSE)
363 add_ctrl_recv_mesg(msg->get_size());
364 handle_message(msg, from);
369 void process::data_receive(double timeout)
374 XBT_DEBUG("%sblocking receive on data (%g)", "\0non-" + !timeout, timeout);
375 while (data_close_pending && comm.data_recv(msg, from, timeout)) {
376 if (msg->get_type() != message::DATA_CLOSE)
377 add_data_recv_mesg(msg->get_size());
378 handle_message(msg, from);
383 void process::handle_message(message* msg, m_host_t from)
385 switch (msg->get_type()) {
386 case message::INFO: {
387 neighbor* n = rev_neigh[from];
388 n->set_load(msg->get_amount() + n->get_to_send());
391 case message::CREDIT:
392 expected_load += msg->get_amount();
394 case message::LOAD: {
395 double ld = msg->get_amount();
398 total_load_running -= ld;
401 case message::CTRL_CLOSE:
402 ctrl_close_pending--;
403 close_received = true;
405 case message::DATA_CLOSE:
406 data_close_pending--;
407 close_received = true;
413 #define print_loads_generic(vec, verbose, logp, cat) \
414 if (_XBT_LOG_ISENABLEDV((*cat), logp)) { \
415 using std::tr1::bind; \
416 using std::tr1::placeholders::_1; \
417 XBT_XCLOG(cat, logp, "My load: %g (real); %g (expected). " \
418 "Neighbor loads:", real_load, expected_load); \
419 std::for_each(vec.begin(), vec.end(), \
420 bind(&neighbor::print, _1, verbose, logp, cat)); \
423 void process::print_loads(bool verbose,
424 e_xbt_log_priority_t logp,
425 xbt_log_category_t cat) const
427 print_loads_generic(neigh, verbose, logp, cat);
430 void process::print_loads_p(bool verbose,
431 e_xbt_log_priority_t logp,
432 xbt_log_category_t cat) const
434 print_loads_generic(pneigh, verbose, logp, cat);
437 #undef print_loads_generic