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 = 0.0)
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));
51 prev_load_broadcast = -1; // force sending of load on first send_all()
52 expected_load = real_load;
53 total_load_running += real_load;
54 total_load_init += real_load;
56 ctrl_close_pending = data_close_pending = neigh.size();
57 close_received = false;
60 comp_iter = lb_iter = 0;
62 lb_thread = new_msg_thread("loba",
63 std::tr1::bind(&process::load_balance_loop,
66 e_xbt_log_priority_t logp = xbt_log_priority_verbose;
67 if (!LOG_ISENABLED(logp))
69 std::ostringstream oss;
70 oss << neigh.size() << " neighbor";
72 oss << ESSE(neigh.size()) << ": ";
73 std::transform(neigh.begin(), neigh.end() - 1,
74 std::ostream_iterator<const char*>(oss, ", "),
75 std::tr1::mem_fn(&neighbor::get_name));
76 oss << neigh.back().get_name();
78 XBT_LOG(logp, "Got %s.", oss.str().c_str());
79 print_loads(false, logp);
85 total_load_exit += real_load;
86 if (opt::log_rate < 0)
88 XBT_INFO("Final load after %d:%d iterations: %g",
89 lb_iter, comp_iter, real_load);
90 XBT_VERB("Expected load was: %g", expected_load);
91 XBT_VERB("Total computation for this process: %g", comp);
96 if (opt::log_rate >= 0) {
97 XBT_INFO("Initial load: %g", real_load);
98 XBT_VERB("Initial expected load: %g", expected_load);
100 XBT_VERB("Starting...");
103 while (lb_iter <= opt::comp_iter_delay)
106 double sleep_duration = opt::comp_time_delay - MSG_get_clock();
107 if (sleep_duration > 0.0)
108 MSG_process_sleep(sleep_duration);
115 void process::load_balance_loop()
117 using std::tr1::bind;
118 using std::tr1::placeholders::_1;
120 double next_iter_after_date = MSG_get_clock() + opt::min_lb_iter_duration;
121 while (still_running()) {
122 if (lb_iter == opt::comp_iter_delay) {
131 if (!opt::bookkeeping)
132 expected_load = real_load - get_sum_of_to_send();
133 // nothing to do with opt::bookkeeping
135 if (opt::log_rate && lb_iter % opt::log_rate == 0) {
136 XBT_INFO("(%u:%u) current load: %g", lb_iter, comp_iter, real_load);
137 XBT_VERB("... expected load: %g", expected_load);
140 if (expected_load > 0.0)
143 print_loads(true, xbt_log_priority_debug);
146 std::for_each(neigh.begin(), neigh.end(),
147 bind(&process::ctrl_send, this, _1));
148 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()) {
180 data_receive(opt::min_comp_iter_duration);
182 comm.data_flush(false);
184 if (real_load == 0.0)
188 std::for_each(neigh.begin(), neigh.end(),
189 bind(&process::data_send, this, _1));
193 double flops = opt::comp_cost(real_load);
194 m_task_t task = MSG_task_create("computation", flops, 0.0, NULL);
195 TRACE_msg_set_task_category(task, TRACE_CAT_COMP);
196 XBT_DEBUG("compute %g flop%s", flops, ESSE(flops));
197 MSG_task_execute(task);
199 MSG_task_destroy(task);
201 sleep_until_date(next_iter_after_date, opt::min_comp_iter_duration);
204 XBT_VERB("Going to finalize for %s...", __func__);
205 // last send, for not losing load scheduled to be sent
206 std::for_each(neigh.begin(), neigh.end(),
207 bind(&process::data_send, this, _1));
209 total_load_running -= real_load;
210 XBT_DEBUG("send DATA_CLOSE to %zu neighbor%s",
211 neigh.size(), ESSE(neigh.size()));
212 std::for_each(neigh.begin(), neigh.end(),
213 bind(&process::data_close, this, _1));
214 while (data_close_pending) {
215 comm.data_flush(false);
216 XBT_DEBUG("waiting for %d DATA CLOSE", data_close_pending);
219 comm.data_flush(true);
222 bool process::still_running()
224 static bool last_status = true;
229 } else if (opt::time_limit && MSG_get_clock() >= opt::time_limit) {
230 XBT_VERB("Reached time limit: %g/%g", MSG_get_clock(), opt::time_limit);
233 } else if (opt::lb_maxiter && lb_iter >= opt::lb_maxiter) {
234 XBT_VERB("Reached lb_maxiter: %d/%d", lb_iter, opt::lb_maxiter);
237 } else if (opt::comp_maxiter && comp_iter >= opt::comp_maxiter) {
238 XBT_VERB("Reached comp_maxiter: %d/%d", comp_iter, opt::comp_maxiter);
241 } else if (opt::exit_on_close && close_received) {
242 XBT_VERB("Close received");
245 } else if (real_load == 0.0 && !data_close_pending) {
246 XBT_VERB("I'm a poor lonesome process, and I have no load...");
249 } else if (100.0 * total_load_running / total_load_init <=
250 opt::load_ratio_threshold) {
251 // fixme: this check should be implemented with a distributed
252 // algorithm, and not a shared global variable!
253 XBT_VERB("No more load to balance in system.");
260 double process::get_sum_of_to_send() const
262 using std::tr1::bind;
263 using std::tr1::placeholders::_1;
264 using std::tr1::placeholders::_2;
266 return std::accumulate(neigh.begin(), neigh.end(), 0.0,
267 bind(std::plus<double>(),
268 _1, bind(&neighbor::get_to_send, _2)));
271 void process::load_balance()
273 if (lb_iter == 1) // warn only once
274 XBT_WARN("process::load_balance() is a no-op!");
277 void process::send(neighbor& nb, double amount)
279 expected_load -= amount;
280 nb.set_to_send(nb.get_to_send() + amount);
281 nb.set_load(nb.get_load() + amount);
284 void process::ctrl_send(neighbor& nb)
286 double info_to_send = expected_load;
287 if (info_to_send != prev_load_broadcast)
288 comm.ctrl_send(nb.get_ctrl_mbox(),
289 new message(message::INFO, info_to_send));
290 if (opt::bookkeeping) {
291 double debt_to_send = nb.get_to_send();
292 if (debt_to_send > 0.0) {
294 nb.set_debt(nb.get_debt() + debt_to_send);
295 comm.ctrl_send(nb.get_ctrl_mbox(),
296 new message(message::CREDIT, debt_to_send));
301 void process::data_send(neighbor& nb)
304 if (opt::bookkeeping) {
305 load_to_send = std::min(real_load, nb.get_debt());
306 if (load_to_send >= opt::min_transfer_amount) {
307 nb.set_debt(nb.get_debt() - load_to_send);
308 real_load -= load_to_send;
313 load_to_send = nb.get_to_send();
314 if (load_to_send >= opt::min_transfer_amount) {
316 real_load -= load_to_send;
321 while (load_to_send > 0.0) {
323 if (opt::max_transfer_amount)
324 amount = std::min(load_to_send, opt::max_transfer_amount);
326 amount = load_to_send;
327 comm.data_send(nb.get_data_mbox(), new message(message::LOAD, amount));
328 load_to_send -= amount;
332 void process::ctrl_close(neighbor& nb)
334 comm.ctrl_send(nb.get_ctrl_mbox(), new message(message::CTRL_CLOSE, 0.0));
337 void process::data_close(neighbor& nb)
339 comm.data_send(nb.get_data_mbox(), new message(message::DATA_CLOSE, 0.0));
342 void process::ctrl_receive(double timeout)
347 XBT_DEBUG("%sblocking receive on ctrl (%g)", "\0non-" + !timeout, timeout);
348 while (ctrl_close_pending && comm.ctrl_recv(msg, from, timeout)) {
349 handle_message(msg, from);
354 void process::data_receive(double timeout)
359 XBT_DEBUG("%sblocking receive on data (%g)", "\0non-" + !timeout, timeout);
360 while (data_close_pending && comm.data_recv(msg, from, timeout)) {
361 handle_message(msg, from);
366 void process::handle_message(message* msg, m_host_t from)
368 switch (msg->get_type()) {
369 case message::INFO: {
370 neighbor* n = rev_neigh[from];
371 n->set_load(msg->get_amount() + n->get_to_send());
374 case message::CREDIT:
375 expected_load += msg->get_amount();
377 case message::LOAD: {
378 double ld = msg->get_amount();
381 total_load_running -= ld;
384 case message::CTRL_CLOSE:
385 ctrl_close_pending--;
386 close_received = true;
388 case message::DATA_CLOSE:
389 data_close_pending--;
390 close_received = true;
396 #define print_loads_generic(vec, verbose, logp, cat) \
397 if (_XBT_LOG_ISENABLEDV((*cat), logp)) { \
398 using std::tr1::bind; \
399 using std::tr1::placeholders::_1; \
400 XBT_XCLOG(cat, logp, "My load: %g (real); %g (expected). " \
401 "Neighbor loads:", real_load, expected_load); \
402 std::for_each(vec.begin(), vec.end(), \
403 bind(&neighbor::print, _1, verbose, logp, cat)); \
406 void process::print_loads(bool verbose,
407 e_xbt_log_priority_t logp,
408 xbt_log_category_t cat) const
410 print_loads_generic(neigh, verbose, logp, cat);
413 void process::print_loads_p(bool verbose,
414 e_xbt_log_priority_t logp,
415 xbt_log_category_t cat) const
417 print_loads_generic(pneigh, verbose, logp, cat);
420 #undef print_loads_generic