Using drand48() for an uniform distribution.
-* Implement some random initial distribution of load
- Options -r seed, -R [algo ?]
-
* Support heterogeneous platforms?
Not sure yet.
Should be doable if each process also sends its speed to its neighbors.
+#include <algorithm>
+#include <cstdlib>
+#include <tr1/functional>
#include <iomanip>
+#include <numeric>
#include <sstream>
+#include <vector>
#include <msg/msg.h>
#include <xbt/dynar.h>
#include <xbt/log.h>
deployment_generator* gen;
gen = opt::topologies.new_instance(opt::auto_depl::topology);
gen->generate();
+ gen->distribute_load();
gen->deploy();
delete gen;
}
deployment_generator::deployment_generator()
: hosts(opt::auto_depl::nhosts)
{
- set_load(0, opt::auto_depl::load);
}
void deployment_generator::set_load(int host, double load)
set_neighbor(host2, host1);
}
+void deployment_generator::distribute_load()
+{
+ using std::tr1::bind;
+ using std::tr1::placeholders::_1;
+
+ if (!opt::auto_depl::random_distribution) {
+ set_load(0, opt::auto_depl::load);
+ return;
+ }
+ srand48(opt::auto_depl::random_seed);
+ std::vector<double> loads(hosts.size());
+ std::generate(loads.begin(), loads.end(), drand48);
+ double factor = opt::auto_depl::load /
+ std::accumulate(loads.begin(), loads.end(), 0.0);
+ std::transform(loads.begin(), loads.end(), loads.begin(),
+ bind(std::multiplies<double>(), _1, factor));
+ for (unsigned i = 0 ; i < hosts.size() ; ++i)
+ set_load(i, loads[i]);
+}
+
void deployment_generator::deploy()
{
xbt_dynar_t args = xbt_dynar_new(sizeof(const char*), NULL);
void set_link(int host1, int host2);
virtual void generate() = 0;
+ void distribute_load();
void deploy();
private:
+#include <ctime>
#include <iomanip>
#include <iostream>
#include <sstream>
std::string topology("clique");
unsigned nhosts = 0;
double load = 0.0;
+ bool random_distribution = false;
+ unsigned long random_seed = 0;
}
// Load balancing algorithm
int c;
opterr = 0;
while ((c = getopt(*argc, argv,
- "a:bc:C:d:D:ehi:I:l:L:m:M:N:s:S:t:T:vV")) != -1) {
+ "a:bc:C:d:D:ehi:I:l:L:m:M:N:r:Rs:S:t:T:vV")) != -1) {
switch (c) {
case 'a':
opt::loba_algo = optarg;
case 'N':
PARSE_ARG(opt::auto_depl::nhosts);
break;
+ case 'r':
+ PARSE_ARG(opt::auto_depl::random_seed);
+ break;
+ case 'R':
+ opt::auto_depl::random_distribution =
+ !opt::auto_depl::random_distribution;
+ break;
case 's':
PARSE_ARG(opt::min_lb_iter_duration);
break;
result = false;
}
+ if (!opt::auto_depl::random_seed)
+ opt::auto_depl::random_seed = time(NULL);
+
return result;
}
"auto"));
DESCR("- initial load", "%s", h.val_or_string(auto_depl::load,
"auto"));
+ DESCR("- random initial load distribution", "%s",
+ h.on_off(auto_depl::random_distribution));
+ DESCR("- random seed", "%s",
+ h.val_or_string(auto_depl::random_seed, "time based"));
} else {
DESCR("deployment file", "\"%s\"", deployment_file.c_str());
}
std::clog << o("-N value")
<< "number of hosts to use with auto deployment, 0 for max."
<< " [" << opt::auto_depl::nhosts << "]\n";
+ std::clog << o("-R")
+ << "toggle random initial load distribution"
+ << " [" << opt_helper::on_off(opt::auto_depl::random_distribution)
+ << "]\n";
+ std::clog << o("-r value")
+ << "random seed, 0 for using it on time()"
+ << " [" << opt::auto_depl::random_seed << "]\n";
std::clog << "\nLoad balancing algorithm\n";
std::clog << o("-a name") << "load balancing algorithm"
extern std::string topology;
extern unsigned nhosts;
extern double load;
+ extern bool random_distribution;
+ extern unsigned long random_seed;
}
// Load balancing algorithm