#include <algorithm>
+#include <cmath>
#include <functional>
#include <iterator>
#include <numeric>
if (argc < 2 || !(std::istringstream(argv[1]) >> real_load))
throw std::invalid_argument("bad or missing initial load parameter");
+ double iload = std::trunc(real_load);
+ if (opt::integer_transfer && real_load != iload) {
+ XBT_WARN("Initial load %g is not an integer. Truncate it.",
+ real_load);
+ real_load = iload;
+ }
+
neigh.assign(argv + 2, argv + argc);
pneigh.reserve(neigh.size());
lb_iter, comp_iter, real_load);
XBT_VERB("Expected load was: %g", expected_load);
XBT_VERB("Total computation for this process: %g", get_comp_amount());
+ print_loads(true, xbt_log_priority_debug);
}
int process::run()
++lb_iter;
}
+ ctrl_receive(0.0);
+
mutex.acquire();
if (!opt::bookkeeping)
expected_load = real_load - get_sum_of_to_send();
mutex.release();
sleep_until_date(next_iter_after_date, opt::min_lb_iter_duration);
- ctrl_receive(0.0);
}
XBT_VERB("Going to finalize for %s...", __func__);
}
}
+double process::compute_load_to_send(double desired)
+{
+ if (opt::integer_transfer)
+ desired = std::floor(desired);
+ return desired >= opt::min_transfer_amount ? desired : 0.0;
+}
+
void process::data_send(neighbor& nb)
{
double load_to_send;
- if (opt::bookkeeping) {
- load_to_send = std::min(real_load, nb.get_debt());
- if (load_to_send >= opt::min_transfer_amount) {
+ if (opt::bookkeeping) { // bookkeeping
+ double excess_load;
+ if (opt::egocentric)
+ excess_load = std::max(0.0, real_load - expected_load);
+ else
+ excess_load = real_load;
+ load_to_send = compute_load_to_send(std::min(excess_load,
+ nb.get_debt()));
+ if (load_to_send > 0.0)
nb.set_debt(nb.get_debt() - load_to_send);
- real_load -= load_to_send;
- } else {
- load_to_send = 0.0;
- }
- } else {
- load_to_send = nb.get_to_send();
- if (load_to_send >= opt::min_transfer_amount) {
- nb.set_to_send(0.0);
- real_load -= load_to_send;
- } else {
- load_to_send = 0.0;
- }
+ } else { // !bookkeeping
+ load_to_send = compute_load_to_send(nb.get_to_send());
+ if (load_to_send > 0.0)
+ nb.set_to_send(nb.get_to_send() - load_to_send);
}
+ real_load -= load_to_send;
while (load_to_send > 0.0) {
double amount;
if (opt::max_transfer_amount)