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 = 10; // fixme: find better defaults
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);
69 int opt::parse_args(int* argc, char* argv[])
73 opt::program_name = argv[0];
74 opt::program_name.erase(0, 1 + opt::program_name.find_last_of('/'));
78 while ((c = getopt(*argc, argv, "a:bc:C:ehi:l:L:N:T:V")) != -1) {
81 opt::loba_algo = optarg;
82 if (!opt::loba_algorithms.exists(opt::loba_algo)) {
83 ERROR1("unknownw load balancing algorithm -- %s",
84 opt::loba_algo.c_str());
89 opt::bookkeeping = true;
92 opt::exit_on_close = true;
95 opt::help_requested++;
98 opt::comp_cost = cost_func(optarg);
101 opt::comm_cost = cost_func(optarg);
104 std::istringstream(optarg) >> opt::maxiter;
107 std::istringstream(optarg) >> opt::log_rate;
110 std::istringstream(optarg) >> opt::auto_depl::load;
113 std::istringstream(optarg) >> opt::auto_depl::nhosts;
116 opt::auto_depl::topology = optarg;
117 if (!opt::topologies.exists(opt::auto_depl::topology)) {
118 ERROR1("unknownw topology -- %s",
119 opt::auto_depl::topology.c_str());
124 opt::version_requested = true;
127 ERROR1("invalid option -- '%c'", optopt);
133 if (opt::version_requested || opt::help_requested)
136 if (optind < *argc) {
137 opt::platform_file = argv[optind++];
139 ERROR0("missing parameter -- <plaform_file>");
142 if (optind < *argc) {
143 opt::deployment_file = argv[optind++];
145 opt::auto_depl::enabled = opt::deployment_file.empty();
147 while (optind < *argc) {
148 ERROR1("unused parameter -- \"%s\"", argv[optind++]);
157 // some helper functions for opt::print()
159 const char* on_off(bool b)
161 return b ? "on" : "off";
164 template <typename T>
165 const char* val_or_string(const T& val, const char* str, const T& deflt = 0)
167 static std::string res;
169 std::ostringstream oss;
182 INFO0(",----[ Simulation parameters ]");
183 INFO1("| log rate.....................: %s",
184 val_or_string(opt::log_rate, "disabled"));
185 INFO1("| platform file................: \"%s\"", opt::platform_file.c_str());
186 if (opt::auto_depl::enabled) {
187 INFO0("| automatic deployment enabled");
188 INFO1("| - topology...................: %s", opt::auto_depl::topology.c_str());
189 INFO1("| - number of hosts............: %s",
190 val_or_string(opt::auto_depl::nhosts, "auto"));
191 INFO1("| - initial load...............: %s",
192 val_or_string(opt::auto_depl::load, "auto"));
194 INFO1("| deployment file..............: \"%s\"", opt::deployment_file.c_str());
196 INFO1("| load balancing algorithm.....: %s", opt::loba_algo.c_str());
197 INFO1("| bookkeeping..................: %s", on_off(opt::bookkeeping));
198 INFO1("| computation cost factors.....: [%s]", opt::comp_cost.to_string().c_str());
199 INFO1("| communication cost factors...: [%s]", opt::comm_cost.to_string().c_str());
200 INFO1("| maximum number of iterations.: %s",
201 val_or_string(opt::maxiter, "infinity"));
202 INFO1("| exit on close................: %s", on_off(opt::exit_on_close));
209 #define o(opt) " " << std::setw(14) \
210 << std::left << (opt) << std::right << " "
212 #define so(subopt) std::setw(18) << (subopt) << " : "
214 #define so_list(name) do { \
215 name ## _type::iterator it; \
216 for (it = name.begin() ; it != name.end() ; ++it) \
217 std::clog << so(name.get_name(it)) \
218 << name.get_descr(it) << "\n"; \
222 std::clog << "Usage: " << opt::program_name
223 << " [options] <platform_file> [<deployment_file>]\n";
225 std::clog << "\nGlobal options\n";
227 << "print help and exit (use -hh or -hhh for extended help)\n";
228 if (opt::help_requested < 1)
231 std::clog << o("--help") << "print help from SimGrid framework and exit\n";
232 std::clog << o("-V") << "print version and exit\n";
234 std::clog << "\nSimulation parameters\n";
235 std::clog << o("-l value")
236 << "print current load every n-th iterations, 0 to disable"
237 << " (" << opt::log_rate << ")\n";
239 std::clog << "\nAutomatic deployment options\n";
240 std::clog << o("-T name")
241 << "enable automatic deployment with selected topology"
242 << " (" << opt::auto_depl::topology << ")\n";
243 if (opt::help_requested > 1)
244 so_list(opt::topologies);
245 std::clog << o("-L value")
246 << "total load with auto deployment, 0 for number of hosts"
247 << " (" << opt::auto_depl::load << ")\n";
248 std::clog << o("-N value")
249 << "number of hosts to use with auto deployment,"
250 << " 0 for max. (" << opt::auto_depl::nhosts << ")\n";
252 std::clog << "\nLoad balancing algorithm\n";
253 std::clog << o("-a name") << "load balancing algorithm"
254 << " (" << opt::loba_algo << ")\n";
255 if (opt::help_requested > 1)
256 so_list(opt::loba_algorithms);
257 std::clog << o("-b") << "enable bookkeeping\n";
259 std::clog << "\nApplication parameters\n";
260 std::clog << o("-c [fn,...]f0")
261 << "polynomial factors for computation cost"
262 << " (" << opt::comp_cost.to_string() << ")\n";
263 std::clog << o("-C [fn,...]f0")
264 << "polynomial factors for communication cost"
265 << " (" << opt::comm_cost.to_string() << ")\n";
266 std::clog << o("-e") << "exit on reception of \"close\" message\n";
267 std::clog << o("-i value")
268 << "maximum number of iterations, 0 for infinity"
269 << " (" << opt::maxiter << ")\n";
271 if (opt::help_requested < 3)
274 std::clog << "\nLogging support\n"
275 << " See SimGrid documentation on:\n"
276 << " http://simgrid.gforge.inria.fr/doc/group__XBT__log.html#log_user\n"
277 << " Existing categories are:\n"
278 << " simu : root of following categories\n"
279 << " main : messages from global infrastructure\n"
280 << " depl : messages from auto deployment (inherited from main)\n"
281 << " comm : messages from asynchronous pipes\n"
282 << " proc : messages from base process class\n"
283 << " loba : messages from load-balancer\n";