2 #include <tr1/functional>
10 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(proc);
17 double process::total_load_init = 0.0;
18 double process::total_load_running = 0.0;
19 double process::total_load_exit = 0.0;
21 process::process(int argc, char* argv[])
23 if (argc < 2 || !(std::istringstream(argv[1]) >> load))
24 throw std::invalid_argument("bad or missing initial load parameter");
26 neigh.assign(argv + 2, argv + argc);
28 pneigh.reserve(neigh.size());
29 for (unsigned i = 0 ; i < neigh.size() ; i++) {
30 neighbor* ptr = &neigh[i];
31 m_host_t host = MSG_get_host_by_name(ptr->get_name());
32 pneigh.push_back(ptr);
33 rev_neigh.insert(std::make_pair(host, ptr));
36 prev_load_broadcast = -1; // force sending of load on first send()
38 total_load_running += load;
39 total_load_init += load;
41 ctrl_close_pending = data_close_pending = neigh.size();
42 if (neigh.size() == 1) {
43 comm.next_close_on_ctrl_is_last();
44 comm.next_close_on_data_is_last();
46 close_received = false;
47 may_receive = (neigh.size() > 0); // the same as (ctrl_close_pending ||
48 // data_close_pending)
53 e_xbt_log_priority_t logp = xbt_log_priority_verbose;
54 if (!LOG_ISENABLED(logp))
56 std::ostringstream oss;
57 oss << neigh.size() << " neighbor";
59 oss << ESSE(neigh.size()) << ": ";
60 std::transform(neigh.begin(), neigh.end() - 1,
61 std::ostream_iterator<const char*>(oss, ", "),
62 std::tr1::mem_fn(&neighbor::get_name));
63 oss << neigh.back().get_name();
65 LOG1(logp, "Got %s.", oss.str().c_str());
66 print_loads(false, logp);
71 total_load_exit += load;
76 INFO1("Initial load: %g", load);
78 comp_iter = lb_iter = 0;
82 if (opt::log_rate && comp_iter % opt::log_rate == 0) {
84 INFO4("(%u:%u) current load: %g ; expected: %g",
85 comp_iter, lb_iter, load, expected_load);
87 INFO2("(%u) current load: %g",
92 expected_load -= load_balance(expected_load);
94 load -= load_balance(load);
96 print_loads(true, xbt_log_priority_debug);
102 // send load information, and load when bookkeeping
106 if (opt::comp_maxiter && comp_iter >= opt::comp_maxiter)
108 if (opt::lb_maxiter && lb_iter >= opt::lb_maxiter)
111 // block on receiving unless there is something to compute or
113 bool recv_wait = (load == 0 &&
114 ((opt::bookkeeping ? expected_load : load)
115 == prev_load_broadcast));
116 DEBUG1("CALL RECEIVE(%s)", recv_wait? "WAIT": "NO_WAIT");
117 receive(recv_wait? WAIT: NO_WAIT);
119 // one of our neighbor is finalizing
120 if (opt::exit_on_close && close_received)
123 // have no load and cannot receive anything
124 if (load == 0.0 && !may_receive)
127 // fixme: this check should be implemented with a distributed
128 // algorithm, and not a shared global variable!
129 // fixme: should this chunk be moved before call to receive() ?
130 if (100.0 * total_load_running / total_load_init <=
131 opt::load_ratio_threshold) {
132 VERB0("No more load to balance in system, stopping.");
137 VERB0("Going to finalize...");
141 * - definition of load on heterogeneous hosts ?
142 * - how to detect convergence ?
143 * - how to manage link failures ?
147 INFO3("Final load after %d iteration%s: %g",
148 comp_iter, ESSE(comp_iter), load);
149 if (opt::bookkeeping)
150 INFO1("Expected load: %g", expected_load);
154 double process::sum_of_to_send() const
156 using std::tr1::bind;
157 using std::tr1::placeholders::_1;
158 using std::tr1::placeholders::_2;
160 return std::accumulate(neigh.begin(), neigh.end(), 0.0,
161 bind(std::plus<double>(),
162 _1, bind(&neighbor::get_to_send, _2)));
165 double process::load_balance(double /*my_load*/)
167 if (lb_iter == 1) // warn only once
168 WARN0("process::load_balance is a no-op!");
172 void process::compute()
175 double duration = opt::comp_cost(load);
176 m_task_t task = MSG_task_create("computation", duration, 0.0, NULL);
177 DEBUG2("compute %g flop%s.", duration, ESSE(duration));
178 MSG_task_execute(task);
179 MSG_task_destroy(task);
181 DEBUG0("nothing to compute !");
185 void process::send1_no_bookkeeping(neighbor& nb)
187 if (load != prev_load_broadcast)
188 comm.send(nb.get_ctrl_mbox(), new message(message::INFO, load));
189 double load_to_send = nb.get_to_send();
190 if (load_to_send > 0.0) {
191 comm.send(nb.get_data_mbox(), new message(message::LOAD, load_to_send));
196 void process::send1_bookkeeping(neighbor& nb)
198 if (expected_load != prev_load_broadcast)
199 comm.send(nb.get_ctrl_mbox(),
200 new message(message::INFO, expected_load));
203 double debt_to_send = nb.get_to_send();
204 if (debt_to_send > 0.0) {
205 comm.send(nb.get_ctrl_mbox(),
206 new message(message::CREDIT, debt_to_send));
208 new_debt = nb.get_debt() + debt_to_send;
210 new_debt = nb.get_debt();
212 if (load <= new_debt) {
214 nb.set_debt(new_debt - load_to_send);
217 load_to_send = new_debt;
219 load -= load_to_send;
221 if (load_to_send > 0.0)
222 comm.send(nb.get_data_mbox(), new message(message::LOAD, load_to_send));
227 using std::tr1::bind;
228 using std::tr1::placeholders::_1;
230 if (opt::bookkeeping) {
231 std::for_each(neigh.begin(), neigh.end(),
232 bind(&process::send1_bookkeeping, this, _1));
233 prev_load_broadcast = expected_load;
235 std::for_each(neigh.begin(), neigh.end(),
236 bind(&process::send1_no_bookkeeping, this, _1));
237 prev_load_broadcast = load;
241 void process::receive(recv_wait_mode wait)
243 // DEBUG1("go for receive(%s)",
244 // "NO_WAIT\0WAIT\0\0\0\0WAIT_FOR_CLOSE" + 8 * wait);
247 bool do_wait = (wait != NO_WAIT);
248 while (may_receive && comm.recv(msg, from, do_wait)) {
249 switch (msg->get_type()) {
250 case message::INFO: {
251 neighbor* n = rev_neigh[from];
252 n->set_load(msg->get_amount());
255 case message::CREDIT:
256 expected_load += msg->get_amount();
258 case message::LOAD: {
259 double ld = msg->get_amount();
262 total_load_running -= ld;
265 case message::CTRL_CLOSE:
266 if (--ctrl_close_pending == 1)
267 comm.next_close_on_ctrl_is_last();
268 // DEBUG1("ctrl_close_pending = %d", ctrl_close_pending);
269 close_received = true;
271 case message::DATA_CLOSE:
272 if (--data_close_pending == 1)
273 comm.next_close_on_data_is_last();
274 // DEBUG1("data_close_pending = %d", data_close_pending);
275 close_received = true;
279 may_receive = (ctrl_close_pending || data_close_pending);
280 do_wait = (wait == WAIT_FOR_CLOSE);
284 void process::finalize1(neighbor& nb)
286 comm.send(nb.get_ctrl_mbox(), new message(message::CTRL_CLOSE, 0.0));
287 comm.send(nb.get_data_mbox(), new message(message::DATA_CLOSE, 0.0));
290 void process::finalize()
292 using std::tr1::bind;
293 using std::tr1::placeholders::_1;
296 total_load_running -= load;
298 DEBUG2("send CLOSE to %d neighbor%s.",
299 (int )neigh.size(), ESSE(neigh.size()));
300 std::for_each(neigh.begin(), neigh.end(),
301 bind(&process::finalize1, this, _1));
303 DEBUG2("wait for CLOSE from %d neighbor%s.",
304 (int )neigh.size(), ESSE(neigh.size()));
305 receive(WAIT_FOR_CLOSE);
310 #define print_loads_generic(vec, verbose, logp, cat) \
311 if (_XBT_LOG_ISENABLEDV((*cat), logp)) { \
312 using std::tr1::bind; \
313 using std::tr1::placeholders::_1; \
314 XCLOG0(cat, logp, "Neighbor loads:"); \
315 std::for_each(vec.begin(), vec.end(), \
316 bind(&neighbor::print, _1, verbose, logp, cat)); \
319 void process::print_loads(bool verbose,
320 e_xbt_log_priority_t logp,
321 xbt_log_category_t cat) const
323 print_loads_generic(neigh, verbose, logp, cat);
326 void process::print_loads_p(bool verbose,
327 e_xbt_log_priority_t logp,
328 xbt_log_category_t cat) const
330 print_loads_generic(pneigh, verbose, logp, cat);
333 #undef print_loads_generic