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::bind(&process::load_balance_loop, this));
63 e_xbt_log_priority_t logp = xbt_log_priority_verbose;
64 if (!LOG_ISENABLED(logp))
66 std::ostringstream oss;
67 oss << neigh.size() << " neighbor";
69 oss << ESSE(neigh.size()) << ": ";
70 std::transform(neigh.begin(), neigh.end() - 1,
71 std::ostream_iterator<const char*>(oss, ", "),
72 std::mem_fn(&neighbor::get_name));
73 oss << neigh.back().get_name();
75 XBT_LOG(logp, "Got %s.", oss.str().c_str());
76 print_loads(false, logp);
82 total_load_exit += real_load;
83 if (opt::log_rate < 0)
85 XBT_INFO("Final load after %d:%d iterations: %g",
86 lb_iter, comp_iter, real_load);
87 XBT_VERB("Expected load was: %g", expected_load);
88 XBT_VERB("Total computation for this process: %g", get_comp_amount());
93 if (opt::log_rate >= 0) {
94 XBT_INFO("Initial load: %g", real_load);
95 XBT_VERB("Initial expected load: %g", expected_load);
97 XBT_VERB("Starting...");
100 while (lb_iter <= opt::comp_iter_delay)
103 double sleep_duration = opt::comp_time_delay - MSG_get_clock();
104 if (sleep_duration > 0.0)
105 MSG_process_sleep(sleep_duration);
112 void process::load_balance_loop()
114 using std::placeholders::_1;
116 double next_iter_after_date = MSG_get_clock() + opt::min_lb_iter_duration;
117 while (still_running()) {
118 if (lb_iter == opt::comp_iter_delay) {
128 if (!opt::bookkeeping)
129 expected_load = real_load - get_sum_of_to_send();
130 // nothing to do with opt::bookkeeping
132 if (opt::log_rate && lb_iter % opt::log_rate == 0) {
133 XBT_INFO("(%u:%u) current load: %g", lb_iter, comp_iter, real_load);
134 XBT_VERB("... expected load: %g", expected_load);
137 if (expected_load > 0.0)
140 print_loads(true, xbt_log_priority_debug);
143 comm.ctrl_flush(false);
144 std::for_each(neigh.begin(), neigh.end(),
145 std::bind(&process::ctrl_send, this, _1));
146 prev_load_broadcast = expected_load;
149 sleep_until_date(next_iter_after_date, opt::min_lb_iter_duration);
153 XBT_VERB("Going to finalize for %s...", __func__);
154 XBT_DEBUG("send CTRL_CLOSE to %zu neighbor%s",
155 neigh.size(), ESSE(neigh.size()));
156 std::for_each(neigh.begin(), neigh.end(),
157 std::bind(&process::ctrl_close, this, _1));
158 while (ctrl_close_pending) {
159 comm.ctrl_flush(false);
160 XBT_DEBUG("waiting for %d CTRL CLOSE", ctrl_close_pending);
163 comm.ctrl_flush(true);
166 void process::compute_loop()
168 using std::placeholders::_1;
170 double next_iter_after_date = MSG_get_clock() + opt::min_comp_iter_duration;
171 while (still_running()) {
177 data_receive(opt::min_comp_iter_duration);
181 comm.data_flush(false);
183 std::for_each(neigh.begin(), neigh.end(),
184 std::bind(&process::data_send, this, _1));
187 if (real_load == 0.0)
192 double flops = opt::comp_cost(real_load);
193 m_task_t task = MSG_task_create("computation", flops, 0.0, NULL);
194 TRACE_msg_set_task_category(task, TRACE_CAT_COMP);
195 XBT_DEBUG("compute %g flop%s", flops, ESSE(flops));
196 MSG_task_execute(task);
197 add_comp_amount(flops);
198 MSG_task_destroy(task);
200 sleep_until_date(next_iter_after_date, opt::min_comp_iter_duration);
203 XBT_VERB("Going to finalize for %s...", __func__);
204 // last send, for not losing load scheduled to be sent
205 std::for_each(neigh.begin(), neigh.end(),
206 std::bind(&process::data_send, this, _1));
208 total_load_running -= real_load;
209 XBT_DEBUG("send DATA_CLOSE to %zu neighbor%s",
210 neigh.size(), ESSE(neigh.size()));
211 std::for_each(neigh.begin(), neigh.end(),
212 std::bind(&process::data_close, this, _1));
213 while (data_close_pending) {
214 comm.data_flush(false);
215 XBT_DEBUG("waiting for %d DATA CLOSE", data_close_pending);
218 comm.data_flush(true);
221 bool process::still_running()
223 static bool last_status = true;
228 } else if (opt::exit_request) {
229 XBT_VERB("Global exit requested");
232 } else if (opt::time_limit && MSG_get_clock() >= opt::time_limit) {
233 XBT_VERB("Reached time limit: %g/%g", MSG_get_clock(), opt::time_limit);
236 } else if (opt::lb_maxiter && lb_iter >= opt::lb_maxiter) {
237 XBT_VERB("Reached lb_maxiter: %d/%d", lb_iter, opt::lb_maxiter);
240 } else if (opt::comp_maxiter && comp_iter >= opt::comp_maxiter) {
241 XBT_VERB("Reached comp_maxiter: %d/%d", comp_iter, opt::comp_maxiter);
244 } else if (opt::exit_on_close && close_received) {
245 XBT_VERB("Close received");
248 } else if (real_load == 0.0 && !data_close_pending) {
249 XBT_VERB("I'm a poor lonesome process, and I have no load...");
252 } else if (100.0 * total_load_running / total_load_init <=
253 opt::load_ratio_threshold) {
254 // fixme: this check should be implemented with a distributed
255 // algorithm, and not a shared global variable!
256 XBT_VERB("No more load to balance in system.");
263 double process::get_sum_of_to_send() const
265 using std::placeholders::_1;
266 using std::placeholders::_2;
268 return std::accumulate(neigh.begin(), neigh.end(), 0.0,
269 std::bind(std::plus<double>(), _1,
270 std::bind(&neighbor::get_to_send, _2)));
273 void process::load_balance()
275 if (lb_iter == 1) // warn only once
276 XBT_WARN("process::load_balance() is a no-op!");
279 void process::send(neighbor& nb, double amount)
281 expected_load -= amount;
282 nb.set_to_send(nb.get_to_send() + amount);
283 nb.set_load(nb.get_load() + amount);
286 void process::ctrl_send(neighbor& nb)
288 double info_to_send = expected_load;
290 if (opt::bookkeeping) { // bookkeeping
291 debt_to_send = nb.get_to_send();
292 if (debt_to_send > 0.0) {
294 nb.set_debt(nb.get_debt() + debt_to_send);
296 } else { // !bookkeeping
299 if (info_to_send != prev_load_broadcast || debt_to_send > 0.0) {
300 message* msg = new message(message::CTRL, info_to_send, debt_to_send);
301 add_ctrl_send_mesg(msg->get_size());
302 comm.ctrl_send(nb.get_ctrl_mbox(), msg);
306 void process::data_send(neighbor& nb)
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;
318 load_to_send = nb.get_to_send();
319 if (load_to_send >= opt::min_transfer_amount) {
321 real_load -= load_to_send;
326 while (load_to_send > 0.0) {
328 if (opt::max_transfer_amount)
329 amount = std::min(load_to_send, opt::max_transfer_amount);
331 amount = load_to_send;
332 message* msg = new message(message::DATA, amount);
333 add_data_send_mesg(msg->get_size());
334 comm.data_send(nb.get_data_mbox(), msg);
335 load_to_send -= amount;
339 void process::ctrl_close(neighbor& nb)
341 comm.ctrl_send(nb.get_ctrl_mbox(), new message(message::CTRL_CLOSE, 0.0));
344 void process::data_close(neighbor& nb)
346 comm.data_send(nb.get_data_mbox(), new message(message::DATA_CLOSE, 0.0));
349 void process::ctrl_receive(double timeout)
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);
363 void process::data_receive(double timeout)
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);
377 void process::handle_message(message* msg, m_host_t from)
379 switch (msg->get_type()) {
380 case message::CTRL: {
381 neighbor* n = rev_neigh[from];
382 n->set_load(msg->get_amount() + n->get_to_send());
383 expected_load += msg->get_credit(); // may be 0.0 if !opt::bookkeeping
386 case message::DATA: {
387 double ld = msg->get_amount();
390 total_load_running -= ld;
393 case message::CTRL_CLOSE:
394 ctrl_close_pending--;
395 close_received = true;
397 case message::DATA_CLOSE:
398 data_close_pending--;
399 close_received = true;
405 #define print_loads_generic(vec, verbose, logp, cat) \
406 if (_XBT_LOG_ISENABLEDV((*cat), logp)) { \
407 using std::placeholders::_1; \
408 XBT_XCLOG(cat, logp, "My load: %g (real); %g (expected). " \
409 "Neighbor loads:", real_load, expected_load); \
410 std::for_each(vec.begin(), vec.end(), \
411 std::bind(&neighbor::print, _1, verbose, logp, cat)); \
414 void process::print_loads(bool verbose,
415 e_xbt_log_priority_t logp,
416 xbt_log_category_t cat) const
418 print_loads_generic(neigh, verbose, logp, cat);
421 void process::print_loads_p(bool verbose,
422 e_xbt_log_priority_t logp,
423 xbt_log_category_t cat) const
425 print_loads_generic(pneigh, verbose, logp, cat);
428 #undef print_loads_generic