X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/a77431693d24e104822393392f1f089e306c29f2..03a16acd38dfaa266986de5d73f4a90c0ddbfeb1:/main.cpp?ds=sidebyside diff --git a/main.cpp b/main.cpp index aa964bb..80a43d9 100644 --- a/main.cpp +++ b/main.cpp @@ -245,11 +245,18 @@ int main(int argc, char* argv[]) opt::auto_depl::nhosts = hostdata::size(); } if (opt::auto_depl::load == 0.0) { - XBT_WARN("Initial load is zero! Falling back on old behaviour."); + XBT_WARN("Initial load is zero! " + "Falling back on old behaviour (load = nhosts)."); opt::auto_depl::load = opt::auto_depl::nhosts; } else if (opt::auto_depl::load < 0.0) opt::auto_depl::load = -opt::auto_depl::load * opt::auto_depl::nhosts; + double iload = trunc(opt::auto_depl::load); + if (opt::integer_transfer && opt::auto_depl::load != iload) { + XBT_WARN("Total load %g is not an integer. Truncate it.", + opt::auto_depl::load); + opt::auto_depl::load = iload; + } MY_launch_application(); // it is already opt::* aware... } else { MSG_launch_application(opt::deployment_file.c_str());