Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
we should not forget about the mainpage of the documentation
[simgrid.git] / doc / user_guide / doxygen / options.doc
1 /*! \page options Simgrid options and configurations
2
3 A number of options can be given at runtime to change the default
4 SimGrid behavior. For a complete list of all configuration options
5 accepted by the SimGrid version used in your simulator, simply pass
6 the --help configuration flag to your program. If some of the options
7 are not documented on this page, this is a bug that you should please
8 report so that we can fix it.
9
10 \section options_using Passing configuration options to the simulators
11
12 There is several way to pass configuration options to the simulators.
13 The most common way is to use the \c --cfg command line argument. For
14 example, to set the item \c Item to the value \c Value, simply
15 type the following: \verbatim
16 my_simulator --cfg=Item:Value (other arguments)
17 \endverbatim
18
19 Several \c --cfg command line arguments can naturally be used. If you
20 need to include spaces in the argument, don't forget to quote the
21 argument. You can even escape the included quotes (write \' for ' if
22 you have your argument between ').
23
24 Another solution is to use the \c \<config\> tag in the platform file. The
25 only restriction is that this tag must occure before the first
26 platform element (be it \c \<AS\>, \c \<cluster\>, \c \<peer\> or whatever).
27 The \c \<config\> tag takes an \c id attribute, but it is currently
28 ignored so you don't really need to pass it. The important par is that
29 within that tag, you can pass one or several \c \<prop\> tags to specify
30 the configuration to use. For example, setting \c Item to \c Value
31 can be done by adding the following to the beginning of your platform
32 file: \verbatim
33 <config>
34   <prop id="Item" value="Value"/>
35 </config>
36 \endverbatim
37
38 A last solution is to pass your configuration directly using the C
39 interface. Unfortunately, this path is not really easy to use right
40 now, and you mess directly with surf internal variables as follows. Check the
41 \ref XBT_config "relevant page" for details on all the functions you
42 can use in this context, \c _surf_cfg_set being the only configuration set
43 currently used in SimGrid. \code
44 #include <xbt/config.h>
45
46 extern xbt_cfg_t _surf_cfg_set;
47
48 int main(int argc, char *argv[]) {
49      MSG_init(&argc, argv);
50
51      xbt_cfg_set_parse(_surf_cfg_set,"Item:Value");
52
53      // Rest of your code
54 }
55 \endcode
56
57 \section options_model Configuring the platform models
58
59 \subsection options_model_select Selecting the platform models
60
61 SimGrid comes with several network and CPU models built in, and you
62 can change the used model at runtime by changing the passed
63 configuration. The three main configuration items are given below.
64 For each of these items, passing the special \c help value gives
65 you a short description of all possible values. Also, \c --help-models
66 should provide information about all models for all existing resources.
67    - \b network/model: specify the used network model
68    - \b cpu/model: specify the used CPU model
69    - \b workstation/model: specify the used workstation model
70
71 As of writting, the accepted network models are the following. Over
72 the time new models can be added, and some experimental models can be
73 removed; check the values on your simulators for an uptodate
74 information. Note that the CM02 model is described in the research report
75 <a href="ftp://ftp.ens-lyon.fr/pub/LIP/Rapports/RR/RR2002/RR2002-40.ps.gz">A
76 Network Model for Simulation of Grid Application</a> while LV08 is
77 described in
78 <a href="http://mescal.imag.fr/membres/arnaud.legrand/articles/simutools09.pdf">Accuracy Study and Improvement of Network Simulation in the SimGrid Framework</a>.
79
80   - \b LV08 (default one): Realistic network analytic model
81     (slow-start modeled by multiplying latency by 10.4, bandwidth by
82     .92; bottleneck sharing uses a payload of S=8775 for evaluating RTT)
83   - \b Constant: Simplistic network model where all communication
84     take a constant time (one second). This model provides the lowest
85     realism, but is (marginally) faster.
86   - \b SMPI: Realistic network model specifically tailored for HPC
87     settings (accurate modeling of slow start with correction factors on
88     three intervals: < 1KiB, < 64 KiB, >= 64 KiB). See also \ref
89     options_model_network_coefs "this section" for more info.
90   - \b CM02: Legacy network analytic model (Very similar to LV08, but
91     without corrective factors. The timings of small messages are thus
92     poorly modeled)
93   - \b Reno: Model from Steven H. Low using lagrange_solve instead of
94     lmm_solve (experts only; check the code for more info).
95   - \b Reno2: Model from Steven H. Low using lagrange_solve instead of
96     lmm_solve (experts only; check the code for more info).
97   - \b Vegas: Model from Steven H. Low using lagrange_solve instead of
98     lmm_solve (experts only; check the code for more info).
99
100 If you compiled SimGrid accordingly, you can use packet-level network
101 simulators as network models (see \ref pls). In that case, you have
102 two extra models, described below, and some \ref options_pls "specific
103 additional configuration flags".
104   - \b GTNets: Network pseudo-model using the GTNets simulator instead
105     of an analytic model
106   - \b NS3: Network pseudo-model using the NS3 tcp model instead of an
107     analytic model
108
109 Concerning the CPU, we have only one model for now:
110   - \b Cas01: Simplistic CPU model (time=size/power)
111
112 The workstation concept is the aggregation of a CPU with a network
113 card. Three models exists, but actually, only 2 of them are
114 interesting. The "compound" one is simply due to the way our internal
115 code is organized, and can easily be ignored. So at the end, you have
116 two workstation models: The default one allows to aggregate an
117 existing CPU model with an existing network model, but does not allow
118 parallel tasks because these beasts need some collaboration between
119 the network and CPU model. That is why, ptask_07 is used by default
120 when using SimDag.
121   - \b default: Default workstation model. Currently, CPU:Cas01 and
122     network:LV08 (with cross traffic enabled)
123   - \b compound: Workstation model that is automatically chosen if
124     you change the network and CPU models
125   - \b ptask_L07: Workstation model somehow similar to Cas01+CM02 but
126     allowing parallel tasks
127
128 \subsection options_model_optim Optimization level of the platform models
129
130 The network and CPU models that are based on lmm_solve (that
131 is, all our analytical models) accept specific optimization
132 configurations.
133   - items \b network/optim and \b CPU/optim (both default to 'Lazy'):
134     - \b Lazy: Lazy action management (partial invalidation in lmm +
135       heap in action remaining).
136     - \b TI: Trace integration. Highly optimized mode when using
137       availability traces (only available for the Cas01 CPU model for
138       now).
139     - \b Full: Full update of remaining and variables. Slow but may be
140       useful when debugging.
141   - items \b network/maxmin_selective_update and
142     \b cpu/maxmin_selective_update: configure whether the underlying
143     should be lazily updated or not. It should have no impact on the
144     computed timings, but should speed up the computation.
145
146 It is still possible to disable the \c maxmin_selective_update feature
147 because it can reveal counter-productive in very specific scenarios
148 where the interaction level is high. In particular, if all your
149 communication share a given backbone link, you should disable it:
150 without \c maxmin_selective_update, every communications are updated
151 at each step through a simple loop over them. With that feature
152 enabled, every communications will still get updated in this case
153 (because of the dependency induced by the backbone), but through a
154 complicated pattern aiming at following the actual dependencies.
155
156 \subsection options_model_precision Numerical precision of the platform models
157
158 The analytical models handle a lot of floating point values. It is
159 possible to change the epsilon used to update and compare them through
160 the \b maxmin/precision item (default value: 0.00001). Changing it
161 may speedup the simulation by discarding very small actions, at the
162 price of a reduced numerical precision.
163
164 \subsection options_model_nthreads Parallel threads for model updates
165
166 By default, Surf computes the analytical models sequentially to share their
167 resources and update their actions. It is possible to run them in parallel,
168 using the \b surf/nthreads item (default value: 1). If you use a
169 negative value, the amount of available cores is automatically
170 detected  and used instead.
171
172 Depending on the workload of the models and their complexity, you may get a
173 speedup or a slowdown because of the synchronization costs of threads.
174
175 \subsection options_model_network Configuring the Network model
176
177 \subsubsection options_model_network_gamma Maximal TCP window size
178
179 The analytical models need to know the maximal TCP window size to take
180 the TCP congestion mechanism into account. This is set to 20000 by
181 default, but can be changed using the \b network/TCP_gamma item.
182
183 On linux, this value can be retrieved using the following
184 commands. Both give a set of values, and you should use the last one,
185 which is the maximal size.\verbatim
186 cat /proc/sys/net/ipv4/tcp_rmem # gives the sender window
187 cat /proc/sys/net/ipv4/tcp_wmem # gives the receiver window
188 \endverbatim
189
190 \subsubsection options_model_network_coefs Corrective simulation factors
191
192 These factors allow to betterly take the slow start into account.
193 The corresponding values were computed through data fitting one the
194 timings of packet-level simulators. You should not change these values
195 unless you are really certain of what you are doing. See
196 <a href="http://mescal.imag.fr/membres/arnaud.legrand/articles/simutools09.pdf">Accuracy Study and Improvement of Network Simulation in the SimGrid Framework</a>
197 for more informations about these coeficients.
198
199 If you are using the SMPI model, these correction coeficients are
200 themselves corrected by constant values depending on the size of the
201 exchange. Again, only hardcore experts should bother about this fact.
202
203 \subsubsection options_model_network_crosstraffic Simulating cross-traffic
204
205 As of SimGrid v3.7, cross-traffic effects can be taken into account in
206 analytical simulations. It means that ongoing and incoming
207 communication flows are treated independently. In addition, the LV08
208 model adds 0.05 of usage on the opposite direction for each new
209 created flow. This can be useful to simulate some important TCP
210 phenomena such as ack compression.
211
212 For that to work, your platform must have two links for each
213 pair of interconnected hosts. An example of usable platform is
214 available in <tt>examples/msg/gtnets/crosstraffic-p.xml</tt>.
215
216 This is activated through the \b network/crosstraffic item, that
217 can be set to 0 (disable this feature) or 1 (enable it).
218
219 Note that with the default workstation model this option is activated by default.
220
221 \subsubsection options_model_network_coord Coordinated-based network models
222
223 When you want to use network coordinates, as it happens when you use
224 an \<AS\> in your platform file with \c Vivaldi as a routing, you must
225 set the \b network/coordinates to \c yes so that all mandatory
226 initialization are done in the simulator.
227
228 \subsubsection options_model_network_sendergap Simulating sender gap
229
230 (this configuration item is experimental and may change or disapear)
231
232 It is possible to specify a timing gap between consecutive emission on
233 the same network card through the \b network/sender_gap item. This
234 is still under investigation as of writting, and the default value is
235 to wait 0 seconds between emissions (no gap applied).
236
237 \subsubsection options_model_network_asyncsend Simulating asyncronous send
238
239 (this configuration item is experimental and may change or disapear)
240
241 It is possible to specify that messages below a certain size will be sent 
242 as soon as the call to MPI_Send is issued, without waiting for the 
243 correspondant receive. This threshold can be configured through the 
244 \b smpi/async_small_thres item. The default value is 0. This behavior can also be 
245 manually set for MSG mailboxes, by setting the receiving mode of the mailbox 
246 with a call to \ref MSG_mailbox_set_async . For MSG, all messages sent to this 
247 mailbox will have this behavior, so consider using two mailboxes if needed. 
248
249 \subsubsection options_pls Configuring packet-level pseudo-models
250
251 When using the packet-level pseudo-models, several specific
252 configuration flags are provided to configure the associated tools.
253 There is by far not enough such SimGrid flags to cover every aspects
254 of the associated tools, since we only added the items that we
255 needed ourselves. Feel free to request more items (or even better:
256 provide patches adding more items).
257
258 When using NS3, the only existing item is \b ns3/TcpModel,
259 corresponding to the ns3::TcpL4Protocol::SocketType configuration item
260 in NS3. The only valid values (enforced on the SimGrid side) are
261 'NewReno' or 'Reno' or 'Tahoe'.
262
263 When using GTNeTS, two items exist:
264  - \b gtnets/jitter, that is a double value to oscillate
265    the link latency, uniformly in random interval
266    [-latency*gtnets_jitter,latency*gtnets_jitter). It defaults to 0.
267  - \b gtnets/jitter_seed, the positive seed used to reproduce jitted
268    results. Its value must be in [1,1e8] and defaults to 10.
269
270 \section options_modelchecking Configuring the Model-Checking
271
272 To enable the experimental SimGrid model-checking support the program should
273 be executed with the command line argument
274 \verbatim
275 --cfg=model-check:1
276 \endverbatim
277 Safety properties are expressed as assertions using the function
278 \verbatim
279 void MC_assert(int prop);
280 \endverbatim
281
282 \subsection options_modelchecking_liveness Specifying a liveness property
283
284 If you want to specify liveness properties (beware, that's
285 experimental), you have to pass them on the command line, specifying
286 the name of the file containing the property, as formated by the
287 ltl2ba program.
288
289 \verbatim
290 --cfg=model-check/property:<filename>
291 \endverbatim
292
293 Of course, specifying a liveness property enables the model-checking
294 so that you don't have to give <tt>--cfg=model-check:1</tt> in
295 addition.
296
297 \subsection options_modelchecking_steps Going for stateful verification
298
299 By default, the system is backtracked to its initial state to explore
300 another path instead of backtracking to the exact step before the fork
301 that we want to explore (this is called stateless verification). This
302 is done this way because saving intermediate states can rapidly
303 exhaust the available memory. If you want, you can change the value of
304 the <tt>model-check/checkpoint</tt> variable. For example, the
305 following configuration will ask to take a checkpoint every step.
306 Beware, this will certainly explode your memory. Larger values are
307 probably better, make sure to experiment a bit to find the right
308 setting for your specific system.
309
310 \verbatim
311 --cfg=model-check/checkpoint:1
312 \endverbatim
313
314 Of course, specifying this option enables the model-checking so that
315 you don't have to give <tt>--cfg=model-check:1</tt> in addition.
316
317 \subsection options_modelchecking_reduction Specifying the kind of reduction
318
319 The main issue when using the model-checking is the state space
320 explosion. To counter that problem, several exploration reduction
321 techniques can be used. There is unfortunately no silver bullet here,
322 and the most efficient reduction techniques cannot be applied to any
323 properties. In particular, the DPOR method cannot be applied on
324 liveness properties since it may break some cycles in the exploration
325 that are important to the property validity.
326
327 \verbatim
328 --cfg=model-check/reduction:<technique>
329 \endverbatim
330
331 For now, this configuration variable can take 2 values:
332  * none: Do not apply any kind of reduction (mandatory for now for
333    liveness properties)
334  * dpor: Apply Dynamic Partial Ordering Reduction. Only valid if you
335    verify local safety properties.
336
337 Of course, specifying a reduction technique enables the model-checking
338 so that you don't have to give <tt>--cfg=model-check:1</tt> in
339 addition.
340
341 \section options_virt Configuring the User Process Virtualization
342
343 \subsection options_virt_factory Selecting the virtualization factory
344
345 In SimGrid, the user code is virtualized in a specific mecanism
346 allowing the simulation kernel to control its execution: when a user
347 process requires a blocking action (such as sending a message), it is
348 interrupted, and only gets released when the simulated clock reaches
349 the point where the blocking operation is done.
350
351 In SimGrid, the containers in which user processes are virtualized are
352 called contexts. Several context factory are provided, and you can
353 select the one you want to use with the \b contexts/factory
354 configuration item. Some of the following may not exist on your
355 machine because of portability issues. In any case, the default one
356 should be the most effcient one (please report bugs if the
357 auto-detection fails for you). They are sorted here from the slowest
358 to the most effient:
359  - \b thread: very slow factory using full featured threads (either
360    pthreads or windows native threads)
361  - \b ucontext: fast factory using System V contexts (or a portability
362    layer of our own on top of Windows fibers)
363  - \b raw: amazingly fast factory using a context switching mecanism
364    of our own, directly implemented in assembly (only available for x86
365    and amd64 platforms for now)
366
367 The only reason to change this setting is when the debugging tools get
368 fooled by the optimized context factories. Threads are the most
369 debugging-friendly contextes.
370
371 \subsection options_virt_stacksize Adapting the used stack size
372
373 Each virtualized used process is executed using a specific system
374 stack. The size of this stack has a huge impact on the simulation
375 scalability, but its default value is rather large. This is because
376 the error messages that you get when the stack size is too small are
377 rather disturbing: this leads to stack overflow (overwriting other
378 stacks), leading to segfaults with corrupted stack traces.
379
380 If you want to push the scalability limits of your code, you really
381 want to reduce the \b contexts/stack_size item. Its default value
382 is 128 (in Kib), while our Chord simulation works with stacks as small
383 as 16 Kib, for example. For the thread factory, the default value 
384 is the one of the system, if it is too large/small, it has to be set 
385 with this parameter.
386
387 \subsection options_virt_parallel Running user code in parallel
388
389 Parallel execution of the user code is only considered stable in
390 SimGrid v3.7 and higher. It is described in
391 <a href="http://hal.inria.fr/inria-00602216/">INRIA RR-7653</a>.
392
393 If you are using the \c ucontext or \c raw context factories, you can
394 request to execute the user code in parallel. Several threads are
395 launched, each of them handling as much user contexts at each run. To
396 actiave this, set the \b contexts/nthreads item to the amount of
397 cores that you have in your computer (or -1 to have the amount of cores
398 auto-detected).
399
400 Even if you asked several worker threads using the previous option,
401 you can request to start the parallel execution (and pay the
402 associated synchronization costs) only if the potential parallelism is
403 large enough. For that, set the \b contexts/parallel_threshold
404 item to the minimal amount of user contexts needed to start the
405 parallel execution. In any given simulation round, if that amount is
406 not reached, the contexts will be run sequentially directly by the
407 main thread (thus saving the synchronization costs). Note that this
408 option is mainly useful when the grain of the user code is very fine,
409 because our synchronization is now very efficient.
410
411 When parallel execution is activated, you can choose the
412 synchronization schema used with the \b contexts/synchro item,
413 which value is either:
414  - \b futex: ultra optimized synchronisation schema, based on futexes
415    (fast user-mode mutexes), and thus only available on Linux systems.
416    This is the default mode when available.
417  - \b posix: slow but portable synchronisation using only POSIX
418    primitives.
419  - \b busy_wait: not really a synchronisation: the worker threads
420    constantly request new contexts to execute. It should be the most
421    efficient synchronisation schema, but it loads all the cores of your
422    machine for no good reason. You probably prefer the other less
423    eager schemas.
424
425 \section options_tracing Configuring the tracing subsystem
426
427 The \ref tracing "tracing subsystem" can be configured in several
428 different ways depending on the nature of the simulator (MSG, SimDag,
429 SMPI) and the kind of traces that need to be obtained. See the \ref
430 tracing_tracing_options "Tracing Configuration Options subsection" to
431 get a detailed description of each configuration option.
432
433 We detail here a simple way to get the traces working for you, even if
434 you never used the tracing API.
435
436
437 - Any SimGrid-based simulator (MSG, SimDag, SMPI, ...) and raw traces:
438 \verbatim
439 --cfg=tracing:1 --cfg=tracing/uncategorized:1 --cfg=triva/uncategorized:uncat.plist
440 \endverbatim
441     The first parameter activates the tracing subsystem, the second
442     tells it to trace host and link utilization (without any
443     categorization) and the third creates a graph configuration file
444     to configure Triva when analysing the resulting trace file.
445
446 - MSG or SimDag-based simulator and categorized traces (you need to declare categories and classify your tasks according to them)
447 \verbatim
448 --cfg=tracing:1 --cfg=tracing/categorized:1 --cfg=triva/categorized:cat.plist
449 \endverbatim
450     The first parameter activates the tracing subsystem, the second
451     tells it to trace host and link categorized utilization and the
452     third creates a graph configuration file to configure Triva when
453     analysing the resulting trace file.
454
455 - SMPI simulator and traces for a space/time view:
456 \verbatim
457 smpirun -trace ...
458 \endverbatim
459     The <i>-trace</i> parameter for the smpirun script runs the
460 simulation with --cfg=tracing:1 and --cfg=tracing/smpi:1. Check the
461 smpirun's <i>-help</i> parameter for additional tracing options.
462
463 Sometimes you might want to put additional information on the trace to
464 correctly identify them later, or to provide data that can be used to
465 reproduce an experiment. You have two ways to do that:
466
467 - Add a string on top of the trace file as comment:
468 \verbatim
469 --cfg=tracing/comment:my_simulation_identifier
470 \endverbatim
471
472 - Add the contents of a textual file on top of the trace file as comment:
473 \verbatim
474 --cfg=tracing/comment_file:my_file_with_additional_information.txt
475 \endverbatim
476
477 Please, use these two parameters (for comments) to make reproducible
478 simulations. For additional details about this and all tracing
479 options, check See the \ref tracing_tracing_options "Tracing
480 Configuration Options subsection".
481
482 \section options_smpi Configuring SMPI
483
484 The SMPI interface provides several specific configuration items.
485 These are uneasy to see since the code is usually launched through the
486 \c smiprun script directly.
487
488 \subsection options_smpi_bench Automatic benchmarking of SMPI code
489
490 In SMPI, the sequential code is automatically benchmarked, and these
491 computations are automatically reported to the simulator. That is to
492 say that if you have a large computation between a \c MPI_Recv() and a
493 \c MPI_Send(), SMPI will automatically benchmark the duration of this
494 code, and create an execution task within the simulator to take this
495 into account. For that, the actual duration is measured on the host
496 machine and then scaled to the power of the corresponding simulated
497 machine. The variable \b smpi/running_power allows to specify the
498 computational power of the host machine (in flop/s) to use when
499 scaling the execution times. It defaults to 20000, but you really want
500 to update it to get accurate simulation results.
501
502 When the code is constituted of numerous consecutive MPI calls, the
503 previous mechanism feeds the simulation kernel with numerous tiny
504 computations. The \b smpi/cpu_threshold item becomes handy when this
505 impacts badly the simulation performance. It specify a threshold (in
506 second) under which the execution chunks are not reported to the
507 simulation kernel (default value: 1e-6). Please note that in some
508 circonstances, this optimization can hinder the simulation accuracy.
509
510 \subsection options_smpi_timing Reporting simulation time
511
512 Most of the time, you run MPI code through SMPI to compute the time it
513 would take to run it on a platform that you don't have. But since the
514 code is run through the \c smpirun script, you don't have any control
515 on the launcher code, making difficult to report the simulated time
516 when the simulation ends. If you set the \b smpi/display_timing item
517 to 1, \c smpirun will display this information when the simulation ends. \verbatim
518 Simulation time: 1e3 seconds.
519 \endverbatim
520
521 \section options_generic Configuring other aspects of SimGrid
522
523 \subsection options_generic_path XML file inclusion path
524
525 It is possible to specify a list of directories to search into for the
526 \<include\> tag in XML files by using the \b path configuration
527 item. To add several directory to the path, set the configuration
528 item several times, as in \verbatim
529 --cfg=path:toto --cfg=path:tutu
530 \endverbatim
531
532 \subsection options_generic_exit Behavior on Ctrl-C
533
534 By default, when Ctrl-C is pressed, the status of all existing
535 simulated processes is displayed. This is very useful to debug your
536 code, but it can reveal troublesome in some cases (such as when the
537 amount of processes becomes really big). This behavior is disabled
538 when \b verbose-exit is set to 0 (it is to 1 by default).
539
540
541 \section options_log Logging Configuration
542
543 It can be done by using XBT. Go to \ref XBT_log for more details.
544
545
546 \section options_index Index of all existing configuration items
547
548 - \c contexts/factory: \ref options_virt_factory
549 - \c contexts/nthreads: \ref options_virt_parallel
550 - \c contexts/parallel_threshold: \ref options_virt_parallel
551 - \c contexts/stack_size: \ref options_virt_stacksize
552 - \c contexts/synchro: \ref options_virt_parallel
553
554 - \c cpu/maxmin_selective_update: \ref options_model_optim
555 - \c cpu/model: \ref options_model_select
556 - \c cpu/optim: \ref options_model_optim
557
558 - \c gtnets/jitter: \ref options_pls
559 - \c gtnets/jitter_seed: \ref options_pls
560
561 - \c maxmin/precision: \ref options_model_precision
562
563 - \c model-check: \ref options_modelchecking
564 - \c model-check/property: \ref options_modelchecking_liveness
565 - \c model-check/checkpoint: \ref options_modelchecking_steps
566 - \c model-check/reduce: \ref options_modelchecking_reduction
567
568 - \c network/bandwidth_factor: \ref options_model_network_coefs
569 - \c network/coordinates: \ref options_model_network_coord
570 - \c network/crosstraffic: \ref options_model_network_crosstraffic
571 - \c network/latency_factor: \ref options_model_network_coefs
572 - \c network/maxmin_selective_update: \ref options_model_optim
573 - \c network/model: \ref options_model_select
574 - \c network/optim: \ref options_model_optim
575 - \c network/sender_gap: \ref options_model_network_sendergap
576 - \c network/TCP_gamma: \ref options_model_network_gamma
577 - \c network/weight_S: \ref options_model_network_coefs
578
579 - \c ns3/TcpModel: \ref options_pls
580
581 - \c surf/nthreads: \ref options_model_nthreads
582
583 - \c smpi/running_power: \ref options_smpi_bench
584 - \c smpi/display_timing: \ref options_smpi_timing
585 - \c smpi/cpu_threshold: \ref options_smpi_bench
586 - \c smpi/async_small_thres: \ref options_model_network_asyncsend
587
588 - \c path: \ref options_generic_path
589 - \c verbose-exit: \ref options_generic_exit
590
591 - \c workstation/model: \ref options_model_select
592
593 */