6 #include <unistd.h> // getopt
8 #include "loba_simple.h"
10 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(main);
15 std::string program_name;
16 int help_requested = 0;
17 bool version_requested = false;
19 // Simulation parameters
20 unsigned log_rate = 1;
22 // Platform and deployment
23 std::string platform_file;
24 std::string deployment_file;
26 // Automatic deployment
29 std::string topology("clique");
34 // Load balancing algorithm
35 std::string loba_algo("simple");
36 bool bookkeeping = false;
38 // Application parameters
39 cost_func comp_cost("1e9, 0"); // fixme: find better defaults
40 cost_func comm_cost("1, 0"); // fixme: find better defaults
41 unsigned maxiter = 4; // fixme
42 bool exit_on_close = false;
44 // Named parameters lists
45 loba_algorithms_type loba_algorithms;
46 loba_algorithms_type::loba_algorithms_type()
48 NOL_INSERT("none", "no load-balancing (for testing)", process);
49 NOL_INSERT("simple", "balance with least loaded neighbor", loba_simple);
52 topologies_type topologies;
53 topologies_type::topologies_type()
55 NOL_INSERT("btree", "binary tree topologym intiial load at root",
57 NOL_INSERT("clique", "all connected topology", deployment_clique);
58 NOL_INSERT("hcube", "hypercube topology", deployment_hcube);
59 NOL_INSERT("line", "line topology, initial load at one end",
61 NOL_INSERT("ring", "ring topology", deployment_ring);
62 NOL_INSERT("star", "star topology, initial load at center",
64 NOL_INSERT("torus", "torus topology", deployment_torus);
71 const char* on_off(bool b)
73 return b ? "on" : "off";
78 int opt::parse_args(int* argc, char* argv[])
82 opt::program_name = argv[0];
83 opt::program_name.erase(0, 1 + opt::program_name.find_last_of('/'));
87 while ((c = getopt(*argc, argv, "a:bc:C:ehi:l:L:N:T:V")) != -1) {
90 opt::loba_algo = optarg;
91 if (!opt::loba_algorithms.exists(opt::loba_algo)) {
92 ERROR1("unknownw load balancing algorithm -- %s",
93 opt::loba_algo.c_str());
98 opt::bookkeeping = true;
101 opt::exit_on_close = true;
104 opt::help_requested++;
107 opt::comp_cost = cost_func(optarg);
110 opt::comm_cost = cost_func(optarg);
113 std::istringstream(optarg) >> opt::maxiter;
116 std::istringstream(optarg) >> opt::log_rate;
119 std::istringstream(optarg) >> opt::auto_depl::load;
122 std::istringstream(optarg) >> opt::auto_depl::nhosts;
125 opt::auto_depl::topology = optarg;
126 if (!opt::topologies.exists(opt::auto_depl::topology)) {
127 ERROR1("unknownw topology -- %s",
128 opt::auto_depl::topology.c_str());
133 opt::version_requested = true;
136 ERROR1("invalid option -- '%c'", optopt);
142 if (opt::version_requested || opt::help_requested)
145 if (optind < *argc) {
146 opt::platform_file = argv[optind++];
148 ERROR0("missing parameter -- <plaform_file>");
151 if (optind < *argc) {
152 opt::deployment_file = argv[optind++];
154 opt::auto_depl::enabled = opt::deployment_file.empty();
156 while (optind < *argc) {
157 ERROR1("unused parameter -- \"%s\"", argv[optind++]);
166 INFO0(",----[ Simulation parameters ]");
167 INFO1("| log rate.....................: %u", opt::log_rate);
168 INFO1("| platform file................: \"%s\"", opt::platform_file.c_str());
169 if (opt::auto_depl::enabled) {
170 INFO0("| automatic deployment enabled");
171 INFO1("| - topology...................: %s", opt::auto_depl::topology.c_str());
172 INFO1("| - number of hosts............: %u", opt::auto_depl::nhosts);
173 INFO1("| - initial load...............: %g", opt::auto_depl::load);
175 INFO1("| deployment file..............: \"%s\"", opt::deployment_file.c_str());
177 INFO1("| load balancing algorithm.....: %s", opt::loba_algo.c_str());
178 INFO1("| bookkeeping..................: %s", on_off(opt::bookkeeping));
179 INFO1("| computation cost factors.....: [%s]", opt::comp_cost.to_string().c_str());
180 INFO1("| communication cost factors...: [%s]", opt::comm_cost.to_string().c_str());
181 INFO1("| maximum number of iterations.: %u", opt::maxiter);
182 INFO1("| exit on close................: %s", on_off(opt::exit_on_close));
189 #define o(opt) " " << std::setw(14) \
190 << std::left << (opt) << std::right << " "
192 #define so(subopt) std::setw(18) << (subopt) << " : "
194 #define so_list(name) do { \
195 name ## _type::iterator it; \
196 for (it = name.begin() ; it != name.end() ; ++it) \
197 std::clog << so(name.get_name(it)) \
198 << name.get_descr(it) << "\n"; \
202 std::clog << "Usage: " << opt::program_name
203 << " [options] <platform_file> [<deployment_file>]\n";
205 std::clog << "\nGlobal options\n";
207 << "print help and exit (use -hh or -hhh for extended help)\n";
208 if (opt::help_requested < 1)
211 std::clog << o("--help") << "print help from SimGrid framework and exit\n";
212 std::clog << o("-V") << "print version and exit\n";
214 std::clog << "\nSimulation parameters\n";
215 std::clog << o("-l value")
216 << "print current load every n-th iterations, 0 to disable"
217 << " (" << opt::log_rate << ")\n";
219 std::clog << "\nAutomatic deployment options\n";
220 std::clog << o("-T name")
221 << "enable automatic deployment with selected topology"
222 << " (" << opt::auto_depl::topology << ")\n";
223 if (opt::help_requested > 1)
224 so_list(opt::topologies);
225 std::clog << o("-L value")
226 << "total load with auto deployment, 0 for number of hosts"
227 << " (" << opt::auto_depl::load << ")\n";
228 std::clog << o("-N value")
229 << "number of hosts to use with auto deployment,"
230 << " 0 for max. (" << opt::auto_depl::nhosts << ")\n";
232 std::clog << "\nLoad balancing algorithm\n";
233 std::clog << o("-a name") << "load balancing algorithm"
234 << " (" << opt::loba_algo << ")\n";
235 if (opt::help_requested > 1)
236 so_list(opt::loba_algorithms);
237 std::clog << o("-b") << "enable bookkeeping\n";
239 std::clog << "\nApplication parameters\n";
240 std::clog << o("-c [fn,...]f0")
241 << "polynomial factors for computation cost"
242 << " (" << opt::comp_cost.to_string() << ")\n";
243 std::clog << o("-C [fn,...]f0")
244 << "polynomial factors for communication cost"
245 << " (" << opt::comm_cost.to_string() << ")\n";
246 std::clog << o("-e") << "exit on reception of \"close\" message\n";
247 std::clog << o("-i value")
248 << "maximum number of iterations, 0 for infinity"
249 << " (" << opt::maxiter << ")\n";
251 if (opt::help_requested < 3)
254 std::clog << "\nLogging support\n"
255 << " See SimGrid documentation on:\n"
256 << " http://simgrid.gforge.inria.fr/doc/group__XBT__log.html#log_user\n"
257 << " Existing categories are:\n"
258 << " simu : root of following categories\n"
259 << " main : messages from global infrastructure\n"
260 << " depl : messages from auto deployment (inherited from main)\n"
261 << " comm : messages from asynchronous pipes\n"
262 << " proc : messages from base process class\n"
263 << " loba : messages from load-balancer\n";