Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove more references to MSG in documentation.
[simgrid.git] / docs / source / Configuring_SimGrid.rst
1 .. _options:
2
3 Configuring SimGrid
4 ===================
5
6 .. raw:: html
7
8    <object id="TOC" data="graphical-toc.svg" type="image/svg+xml"></object>
9    <script>
10    window.onload=function() { // Wait for the SVG to be loaded before changing it
11      var elem=document.querySelector("#TOC").contentDocument.getElementById("ConfigBox")
12      elem.style="opacity:0.93999999;fill:#ff0000;fill-opacity:0.1;stroke:#000000;stroke-width:0.35277778;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1";
13    }
14    </script>
15    <br/>
16    <br/>
17
18 A number of options can be given at runtime to change the default
19 SimGrid behavior. For a complete list of all configuration options
20 accepted by the SimGrid version used in your simulator, simply pass
21 the --help configuration flag to your program. If some of the options
22 are not documented on this page, this is a bug that you should please
23 report so that we can fix it. Note that some of the options presented
24 here may not be available in your simulators, depending on the
25 :ref:`compile-time options <install_src_config>` that you used.
26
27 Setting Configuration Items
28 ---------------------------
29
30 There is several way to pass configuration options to the simulators.
31 The most common way is to use the ``--cfg`` command line argument. For
32 example, to set the item ``Item`` to the value ``Value``, simply
33 type the following on the command-line:
34
35 .. code-block:: console
36
37    $ my_simulator --cfg=Item:Value (other arguments)
38
39 Several ``--cfg`` command line arguments can naturally be used. If you
40 need to include spaces in the argument, don't forget to quote the
41 argument. You can even escape the included quotes (write ``@'`` for ``'`` if
42 you have your argument between simple quotes).
43
44 Another solution is to use the ``<config>`` tag in the platform file. The
45 only restriction is that this tag must occur before the first
46 platform element (be it ``<zone>``, ``<cluster>``, ``<peer>`` or whatever).
47 The ``<config>`` tag takes an ``id`` attribute, but it is currently
48 ignored so you don't really need to pass it. The important part is that
49 within that tag, you can pass one or several ``<prop>`` tags to specify
50 the configuration to use. For example, setting ``Item`` to ``Value``
51 can be done by adding the following to the beginning of your platform
52 file:
53
54 .. code-block:: xml
55
56   <config>
57     <prop id="Item" value="Value"/>
58   </config>
59
60 A last solution is to pass your configuration directly in your program
61 with :cpp:func:`simgrid::s4u::Engine::set_config`.
62
63 .. code-block:: cpp
64
65    #include <simgrid/s4u.hpp>
66
67    int main(int argc, char *argv[]) {
68      simgrid::s4u::Engine e(&argc, argv);
69
70      simgrid::s4u::Engine::set_config("Item:Value");
71
72      // Rest of your code
73    }
74
75 .. _options_list:
76
77 Existing Configuration Items
78 ----------------------------
79
80 .. note::
81   The full list can be retrieved by passing ``--help`` and
82   ``--help-cfg`` to an executable that uses SimGrid. Try passing
83   ``help`` as a value to get the list of values accepted by a given
84   option. For example, ``--cfg=plugin:help`` will give you the list
85   of plugins available in your installation of SimGrid.
86
87 - **bmf/max-iterations:** :ref:`cfg=bmf/max-iterations`
88 - **bmf/precision:** :ref:`cfg=bmf/precision`
89
90 - **contexts/factory:** :ref:`cfg=contexts/factory`
91 - **contexts/guard-size:** :ref:`cfg=contexts/guard-size`
92 - **contexts/nthreads:** :ref:`cfg=contexts/nthreads`
93 - **contexts/stack-size:** :ref:`cfg=contexts/stack-size`
94 - **contexts/synchro:** :ref:`cfg=contexts/synchro`
95
96 - **cpu/maxmin-selective-update:** :ref:`Cpu Optimization Level <options_model_optim>`
97 - **cpu/model:** :ref:`options_model_select`
98 - **cpu/optim:** :ref:`Cpu Optimization Level <options_model_optim>`
99
100 - **debug/breakpoint:** :ref:`cfg=debug/breakpoint`
101 - **debug/clean-atexit:** :ref:`cfg=debug/clean-atexit`
102 - **debug/verbose-exit:** :ref:`cfg=debug/verbose-exit`
103
104 - **exception/cutpath:** :ref:`cfg=exception/cutpath`
105
106 - **host/model:** :ref:`options_model_select`
107
108 - **maxmin/precision:** :ref:`cfg=maxmin/precision`
109 - **maxmin/concurrency-limit:** :ref:`cfg=maxmin/concurrency-limit`
110
111 - **model-check:** :ref:`options_modelchecking`
112 - **model-check/checkpoint:** :ref:`cfg=model-check/checkpoint`
113 - **model-check/communications-determinism:** :ref:`cfg=model-check/communications-determinism`
114 - **model-check/dot-output:** :ref:`cfg=model-check/dot-output`
115 - **model-check/max-depth:** :ref:`cfg=model-check/max-depth`
116 - **model-check/property:** :ref:`cfg=model-check/property`
117 - **model-check/reduction:** :ref:`cfg=model-check/reduction`
118 - **model-check/replay:** :ref:`cfg=model-check/replay`
119 - **model-check/send-determinism:** :ref:`cfg=model-check/send-determinism`
120 - **model-check/setenv:** :ref:`cfg=model-check/setenv`
121 - **model-check/termination:** :ref:`cfg=model-check/termination`
122 - **model-check/timeout:** :ref:`cfg=model-check/timeout`
123 - **model-check/visited:** :ref:`cfg=model-check/visited`
124
125 - **network/bandwidth-factor:** :ref:`cfg=network/bandwidth-factor`
126 - **network/crosstraffic:** :ref:`cfg=network/crosstraffic`
127 - **network/latency-factor:** :ref:`cfg=network/latency-factor`
128 - **network/loopback-lat:** :ref:`cfg=network/loopback`
129 - **network/loopback-bw:** :ref:`cfg=network/loopback`
130 - **network/maxmin-selective-update:** :ref:`Network Optimization Level <options_model_optim>`
131 - **network/model:** :ref:`options_model_select`
132 - **network/optim:** :ref:`Network Optimization Level <options_model_optim>`
133 - **network/TCP-gamma:** :ref:`cfg=network/TCP-gamma`
134 - **network/weight-S:** :ref:`cfg=network/weight-S`
135
136 - **ns3/TcpModel:** :ref:`options_pls`
137 - **ns3/seed:** :ref:`options_pls`
138 - **path:** :ref:`cfg=path`
139 - **plugin:** :ref:`cfg=plugin`
140
141 - **storage/max_file_descriptors:** :ref:`cfg=storage/max_file_descriptors`
142
143 - **surf/precision:** :ref:`cfg=surf/precision`
144
145 - **For collective operations of SMPI,** please refer to Section :ref:`cfg=smpi/coll-selector`
146 - **smpi/auto-shared-malloc-thresh:** :ref:`cfg=smpi/auto-shared-malloc-thresh`
147 - **smpi/async-small-thresh:** :ref:`cfg=smpi/async-small-thresh`
148 - **smpi/barrier-finalization:** :ref:`cfg=smpi/barrier-finalization`
149 - **smpi/barrier-collectives:** :ref:`cfg=smpi/barrier-collectives`
150 - **smpi/buffering:** :ref:`cfg=smpi/buffering`
151 - **smpi/coll-selector:** :ref:`cfg=smpi/coll-selector`
152 - **smpi/comp-adjustment-file:** :ref:`cfg=smpi/comp-adjustment-file`
153 - **smpi/cpu-threshold:** :ref:`cfg=smpi/cpu-threshold`
154 - **smpi/display-allocs:** :ref:`cfg=smpi/display-allocs`
155 - **smpi/display-timing:** :ref:`cfg=smpi/display-timing`
156 - **smpi/errors-are-fatal:** :ref:`cfg=smpi/errors-are-fatal`
157 - **smpi/grow-injected-times:** :ref:`cfg=smpi/grow-injected-times`
158 - **smpi/host-speed:** :ref:`cfg=smpi/host-speed`
159 - **smpi/IB-penalty-factors:** :ref:`cfg=smpi/IB-penalty-factors`
160 - **smpi/iprobe:** :ref:`cfg=smpi/iprobe`
161 - **smpi/iprobe-cpu-usage:** :ref:`cfg=smpi/iprobe-cpu-usage`
162 - **smpi/init:** :ref:`cfg=smpi/init`
163 - **smpi/keep-temps:** :ref:`cfg=smpi/keep-temps`
164 - **smpi/ois:** :ref:`cfg=smpi/ois`
165 - **smpi/or:** :ref:`cfg=smpi/or`
166 - **smpi/os:** :ref:`cfg=smpi/os`
167 - **smpi/papi-events:** :ref:`cfg=smpi/papi-events`
168 - **smpi/pedantic:** :ref:`cfg=smpi/pedantic`
169 - **smpi/privatization:** :ref:`cfg=smpi/privatization`
170 - **smpi/privatize-libs:** :ref:`cfg=smpi/privatize-libs`
171 - **smpi/send-is-detached-thresh:** :ref:`cfg=smpi/send-is-detached-thresh`
172 - **smpi/shared-malloc:** :ref:`cfg=smpi/shared-malloc`
173 - **smpi/shared-malloc-hugepage:** :ref:`cfg=smpi/shared-malloc-hugepage`
174 - **smpi/simulate-computation:** :ref:`cfg=smpi/simulate-computation`
175 - **smpi/test:** :ref:`cfg=smpi/test`
176 - **smpi/wtime:** :ref:`cfg=smpi/wtime`
177 - **smpi/list-leaks** :ref:`cfg=smpi/list-leaks`
178
179 - **Tracing configuration options** can be found in Section :ref:`tracing_tracing_options`
180
181 - **storage/model:** :ref:`options_model_select`
182
183 - **vm/model:** :ref:`options_model_select`
184
185 .. _options_model:
186
187 Configuring the Platform Models
188 -------------------------------
189
190 .. _options_model_select:
191
192 Choosing the Platform Models
193 ............................
194
195 SimGrid comes with several network, CPU and disk models built in,
196 and you can change the used model at runtime by changing the passed
197 configuration. The three main configuration items are given below.
198 For each of these items, passing the special ``help`` value gives you
199 a short description of all possible values (for example,
200 ``--cfg=network/model:help`` will present all provided network
201 models). Also, ``--help-models`` should provide information about all
202 models for all existing resources.
203
204 - ``network/model``: specify the used network model. Possible values:
205
206   - **LV08 (default one):** Realistic network analytic model
207     (slow-start modeled by multiplying latency by 13.01, bandwidth by
208     .97; bottleneck sharing uses a payload of S=20537 for evaluating
209     RTT). Described in `Accuracy Study and Improvement of Network
210     Simulation in the SimGrid Framework
211     <http://mescal.imag.fr/membres/arnaud.legrand/articles/simutools09.pdf>`_.
212   - **Constant:** Simplistic network model where all communication
213     take a constant time (one second). This model provides the lowest
214     realism, but is (marginally) faster.
215   - **SMPI:** Realistic network model specifically tailored for HPC
216     settings (accurate modeling of slow start with correction factors on
217     three intervals: < 1KiB, < 64 KiB, >= 64 KiB). This model can be
218     :ref:`further configured <options_model_network>`.
219   - **IB:** Realistic network model specifically tailored for HPC
220     settings with InfiniBand networks (accurate modeling contention
221     behavior, based on the model explained in `this PhD work
222     <http://mescal.imag.fr/membres/jean-marc.vincent/index.html/PhD/Vienne.pdf>`_.
223     This model can be :ref:`further configured <options_model_network>`.
224   - **CM02:** Legacy network analytic model. Very similar to LV08, but
225     without corrective factors. The timings of small messages are thus
226     poorly modeled. This model is described in `A Network Model for
227     Simulation of Grid Application
228     <https://hal.inria.fr/inria-00071989/document>`_.
229   - **ns-3** (only available if you compiled SimGrid accordingly):
230     Use the packet-level network
231     simulators as network models (see :ref:`model_ns3`).
232     This model can be :ref:`further configured <options_pls>`.
233
234 - ``cpu/model``: specify the used CPU model.  We have only one model
235   for now:
236
237   - **Cas01:** Simplistic CPU model (time=size/speed)
238
239 - ``host/model``: The host concept is the aggregation of a CPU with a
240   network card. Three models exists, but actually, only 2 of them are
241   interesting. The "compound" one is simply due to the way our
242   internal code is organized, and can easily be ignored. So at the
243   end, you have two host models: The default one allows aggregation of
244   an existing CPU model with an existing network model, but does not
245   allow parallel tasks because these beasts need some collaboration
246   between the network and CPU model.
247
248   - **default:** Default host model. Currently, CPU:Cas01 and
249     network:LV08 (with cross traffic enabled)
250   - **compound:** Host model that is automatically chosen if
251     you change the network and CPU models
252   - **ptask_L07:** Host model somehow similar to Cas01+CM02 but
253     allowing "parallel tasks", that are intended to model the moldable
254     tasks of the grid scheduling literature.
255
256 - ``storage/model``: specify the used storage model. Only one model is
257   provided so far.
258 - ``vm/model``: specify the model for virtual machines. Only one model
259   is provided so far.
260
261 .. todo: make 'compound' the default host model.
262
263 .. _options_model_solver:
264
265 Solver
266 ......
267
268 The different models rely on a linear inequalities solver to share
269 the underlying resources. SimGrid allows you to change the solver, but
270 be cautious, **don't change it unless you are 100% sure**.
271  
272   - items ``cpu/solver``, ``network/solver``, ``disk/solver`` and  ``host/solver``
273     allow you to change the solver for each model:
274
275     - **maxmin:** The default solver for all models except ptask. Provides a
276       max-min fairness allocation.
277     - **fairbottleneck:** The default solver for ptasks. Extends max-min to
278       allow heterogeneous resources.
279     - **bmf:** More realistic solver for heterogeneous resource sharing.
280       Implements BMF (Bottleneck max fairness) fairness. To be used with
281       parallel tasks instead of fair-bottleneck.
282
283 .. _options_model_optim:
284
285 Optimization Level
286 ..................
287
288 The network and CPU models that are based on linear inequalities solver (that
289 is, all our analytical models) accept specific optimization
290 configurations.
291
292   - items ``network/optim`` and ``cpu/optim`` (both default to 'Lazy'):
293
294     - **Lazy:** Lazy action management (partial invalidation in lmm +
295       heap in action remaining).
296     - **TI:** Trace integration. Highly optimized mode when using
297       availability traces (only available for the Cas01 CPU model for
298       now).
299     - **Full:** Full update of remaining and variables. Slow but may be
300       useful when debugging.
301
302   - items ``network/maxmin-selective-update`` and
303     ``cpu/maxmin-selective-update``: configure whether the underlying
304     should be lazily updated or not. It should have no impact on the
305     computed timings, but should speed up the computation. |br| It is
306     still possible to disable this feature because it can reveal
307     counter-productive in very specific scenarios where the
308     interaction level is high. In particular, if all your
309     communication share a given backbone link, you should disable it:
310     without it, a simple regular loop is used to update each
311     communication. With it, each of them is still updated (because of
312     the dependency induced by the backbone), but through a complicated
313     and slow pattern that follows the actual dependencies.
314
315 .. _cfg=bmf/precision:
316 .. _cfg=maxmin/precision:
317 .. _cfg=surf/precision:
318
319 Numerical Precision
320 ...................
321
322 **Option** ``maxmin/precision`` **Default:** 1e-5 (in flops or bytes) |br|
323 **Option** ``surf/precision`` **Default:** 1e-9 (in seconds) |br|
324 **Option** ``bmf/precision`` **Default:** 1e-12 (no unit)
325
326 The analytical models handle a lot of floating point values. It is
327 possible to change the epsilon used to update and compare them through
328 this configuration item. Changing it may speedup the simulation by
329 discarding very small actions, at the price of a reduced numerical
330 precision. You can modify separately the precision used to manipulate
331 timings (in seconds) and the one used to manipulate amounts of work
332 (in flops or bytes).
333
334 .. _cfg=maxmin/concurrency-limit:
335
336 Concurrency Limit
337 .................
338
339 **Option** ``maxmin/concurrency-limit`` **Default:** -1 (no limit)
340
341 The maximum number of variables per resource can be tuned through this
342 option. You can have as many simultaneous actions per resources as you
343 want. If your simulation presents a very high level of concurrency, it
344 may help to use e.g. 100 as a value here. It means that at most 100
345 actions can consume a resource at a given time. The extraneous actions
346 are queued and wait until the amount of concurrency of the considered
347 resource lowers under the given boundary.
348
349 Such limitations help both to the simulation speed and simulation accuracy
350 on highly constrained scenarios, but the simulation speed suffers of this
351 setting on regular (less constrained) scenarios so it is off by default.
352
353 .. _cfg=bmf/max-iterations:
354
355 BMF settings
356 ............
357
358 **Option** ``bmf/max-iterations`` **Default:** 1000
359
360 It may happen in some settings that the BMF solver fails to converge to
361 a solution, so there is a hard limit on the amount of iteration count to
362 avoid infinite loops.
363
364 .. _options_model_network:
365
366 Configuring the Network Model
367 .............................
368
369 .. _cfg=network/TCP-gamma:
370
371 Maximal TCP Window Size
372 ^^^^^^^^^^^^^^^^^^^^^^^
373
374 **Option** ``network/TCP-gamma`` **Default:** 4194304
375
376 The analytical models need to know the maximal TCP window size to take
377 the TCP congestion mechanism into account.  On Linux, this value can
378 be retrieved using the following commands. Both give a set of values,
379 and you should use the last one, which is the maximal size.
380
381 .. code-block:: console
382
383    $ cat /proc/sys/net/ipv4/tcp_rmem # gives the sender window
384    $ cat /proc/sys/net/ipv4/tcp_wmem # gives the receiver window
385
386 .. _cfg=network/bandwidth-factor:
387 .. _cfg=network/latency-factor:
388 .. _cfg=network/weight-S:
389
390 Manual calibration factors
391 ^^^^^^^^^^^^^^^^^^^^^^^^^^
392
393 SimGrid can take network irregularities such as a slow startup or changing behavior depending on the message size into account.
394 The values provided by default were computed a long time ago through data fitting one the timings of either packet-level
395 simulators or direct experiments on real platforms. These default values should be OK for most users, but if simulation realism
396 is really important to you, you probably want to recalibrate the models (i.e., devise sensible values for your specific
397 settings). This section only describes how to pass new values to the models while the calibration process involved in the
398 computation of these values is described :ref:`in the relevant chapter <models_calibration>`.
399
400 We found out that many networking effects can be realistically accounted for with the three following correction factors. They
401 were shown to be enough to capture slow-start effects, the different transmission modes of MPI systems (eager vs. rendez-vous
402 mode), or the non linear effects of wifi sharing.
403
404 **Option** ``network/latency-factor`` **Default:** 1.0, but overridden by most models
405
406 This option specifies a multiplier to apply to the *physical* latency (i.e., the one described in the platform) of the set of
407 links involved in a communication. The factor can either be a constant to apply to any communication, or it may depend on the
408 message size. The ``CM02`` model does not use any correction factor, so the latency-factor remains to 1. The ``LV08`` model sets
409 it to 13.01 to model slow-start, while the ``SMPI`` model has several possible values depending on the interval in which the
410 message size falls. The default SMPI setting given below specifies for example that a message smaller than 257 bytes will get a
411 latency multiplier of 2.01467 while a message whose size is in [15424, 65472] will get a latency multiplier of 3.48845. The
412 ``wifi`` model goes further and uses a callback in the program to compute the factor that must be non-linear in this case.
413
414 This multiplier is applied to the latency computed from the platform, that is the sum of all link *physical* latencies over the
415 :ref:`network path <platform_routing>` used by the considered communication, to derive the *effective* end-to-end latency.
416
417 Constant factors are easy to express, but the interval-based syntax used in SMPI is somewhat complex. It expects a set of
418 factors separated by semicolons, each of the form ``boundary:factor``. For example if your specification is
419 ``0:1;1000:2;5000:3``, it means that on [0, 1000) the factor is 1. On [1000,5000), the factor is 2 while the factor is 3 for
420 5000 and beyond. If your first interval does include size=0, then the default value of 1 is used before. Changing the factor
421 callback is not possible from the command line and must be done from your code, as shown in `this example
422 <https://framagit.org/simgrid/simgrid/tree/master/examples/cpp/network-factors/s4u-network-factors.cpp>`_. Note that the chosen
423 model only provides some default settings. You may pick a ``LV08`` model to get some of the settings, and override the latency
424 with interval-based values.
425
426 SMPI default value: 65472:11.6436; 15424:3.48845; 9376:2.59299; 5776:2.18796; 3484:1.88101; 1426:1.61075; 732:1.9503;
427 257:1.95341;0:2.01467 (interval boundaries are sorted automatically). These values were computed by data fitting on the Stampede
428 Supercomputer at TACC, with optimal deployment of processes on nodes. To accurately model your settings, you should redo the
429 :ref:`calibration <models_calibration>`.
430
431 **Option** ``network/bandwidth-factor`` **Default:** 1.0, but overridden by most models
432
433 Setting this option automatically adjusts the *effective* bandwidth (i.e., the one perceived by the application) used by any
434 given communication. As with latency-factor above, the value can be a constant (``CM02`` uses 1 -- no correction -- while
435 ``LV08`` uses 0.97 to discount TCP headers while computing the payload bandwidth), interval-based (as the default provided by
436 the ``SMPI``), or using in-program callbacks (as with ``wifi``).
437
438 SMPI default value: 65472:0.940694;15424:0.697866;9376:0.58729;5776:1.08739;3484:0.77493;1426:0.608902;732:0.341987;257:0.338112;0:0.812084
439 This was also computed on the Stampede Supercomputer.
440
441 **Option** ``network/weight-S`` **Default:** depends on the model
442
443 Value used to account for RTT-unfairness when sharing a bottleneck (network connections with a large RTT are generally penalized
444 against those with a small one). Described in `Accuracy Study and Improvement of Network Simulation in the SimGrid Framework
445 <http://mescal.imag.fr/membres/arnaud.legrand/articles/simutools09.pdf>`_
446
447 Default values for ``CM02`` is 0. ``LV08`` sets it to 20537 while both ``SMPI`` and ``IB`` set it to 8775.
448
449 .. _cfg=network/loopback:
450
451 Configuring loopback link
452 ^^^^^^^^^^^^^^^^^^^^^^^^^
453
454 Several network models provide an implicit loopback link to account for local
455 communication on a host. By default it has a 10GBps bandwidth and a null latency.
456 This can be changed with ``network/loopback-lat`` and ``network/loopback-bw``
457 items. Note that this loopback is conveniently modeled with a :ref:`single FATPIPE link  <pf_loopback>`
458 for the whole platform. If modeling contention inside nodes is important then you should
459 rather add such loopback links (one for each host) yourself.
460
461 .. _cfg=smpi/IB-penalty-factors:
462
463 Infiniband model
464 ^^^^^^^^^^^^^^^^
465
466 InfiniBand network behavior can be modeled through 3 parameters
467 ``smpi/IB-penalty-factors:"βe;βs;γs"``, as explained in `the PhD
468 thesis of Jean-Marc Vincent
469 <http://mescal.imag.fr/membres/jean-marc.vincent/index.html/PhD/Vienne.pdf>`_ (in French)
470 or more concisely in `this paper <https://hal.inria.fr/hal-00953618/document>`_,
471 even if that paper does only describe models for myrinet and ethernet.
472 You can see in Fig 2 some results for Infiniband, for example. This model
473 may be outdated by now for modern infiniband, anyway, so a new
474 validation would be good.
475
476 The three paramaters are defined as follows:
477
478 - Î²s: penalty factor for outgoing messages, computed by running a simple send to
479   two nodes and checking slowdown compared to a single send to one node,
480   dividing by 2
481 - Î²e: penalty factor for ingoing messages, same computation method but with one
482   node receiving several messages
483 - Î³r: slowdown factor when communication buffer memory is saturated. It needs a
484   more complicated pattern to run in order to be computed (5.3 in the thesis,
485   page 107), and formula in the end is Î³r = time(c)/(3×βe×time(ref)), where
486   time(ref) is the time of a single comm with no contention).
487
488 Once these values are computed, a penalty is assessed for each message (this is
489 the part implemented in the simulator) as shown page 106 of the thesis. Here is
490 a simple translation of this text. First, some notations:
491
492 - âˆ†e(e) which corresponds to the incoming degree of node e, that is to say the number of communications having as destination node e.
493 - âˆ†s (s) which corresponds to the degree outgoing from node s, that is to say the number of communications sent by node s.
494 - Î¦ (e) which corresponds to the number of communications destined for the node e but coming from a different node.
495 - Î© (s, e) which corresponds to the number of messages coming from node s to node e. If node e only receives communications from different nodes then Î¦ (e) = âˆ†e (e). On the other hand if, for example, there are three messages coming from node s and going from node e then Î¦ (e) 6 = âˆ†e (e) and Î© (s, e) = 3
496
497 To determine the penalty for a communication, two values need to be calculated. First, the penalty caused by the conflict in transmission, noted ps.
498
499
500 - if âˆ†s (i) = 1 then ps = 1.
501 - if âˆ†s (i) â‰¥ 2 and âˆ†e (i) â‰¥ 3 then ps = âˆ†s (i) Ã— Î²s Ã— Î³r
502 - else, ps = âˆ†s (i) Ã— Î²s
503
504
505 Then,  the penalty caused by the conflict in reception (noted pe) should be computed as follows:
506
507 - if âˆ†e (i) = 1 then pe = 1
508 - else, pe = Î¦ (e) Ã— Î²e Ã— Î© (s, e)
509
510 Finally, the penalty associated with the communication is:
511 p = max (ps âˆˆ s, pe)
512
513 .. _cfg=network/crosstraffic:
514
515 Simulating Cross-Traffic
516 ^^^^^^^^^^^^^^^^^^^^^^^^
517
518 Since SimGrid v3.7, cross-traffic effects can be taken into account in
519 analytical simulations. It means that ongoing and incoming
520 communication flows are treated independently. In addition, the LV08
521 model adds 0.05 of usage on the opposite direction for each new
522 created flow. This can be useful to simulate some important TCP
523 phenomena such as ack compression.
524
525 For that to work, your platform must have two links for each
526 pair of interconnected hosts. An example of usable platform is
527 available in ``examples/platforms/crosstraffic.xml``.
528
529 This is activated through the ``network/crosstraffic`` item, that
530 can be set to 0 (disable this feature) or 1 (enable it).
531
532 Note that with the default host model this option is activated by default.
533
534 .. _cfg=smpi/async-small-thresh:
535
536 Simulating Asynchronous Send
537 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
538
539 (this configuration item is experimental and may change or disappear)
540
541 It is possible to specify that messages below a certain size (in bytes) will be
542 sent as soon as the call to MPI_Send is issued, without waiting for
543 the correspondent receive. This threshold can be configured through
544 the ``smpi/async-small-thresh`` item. The default value is 0. This
545 behavior can also be manually set for mailboxes, by setting the
546 receiving mode of the mailbox with a call to
547 :cpp:func:`sg_mailbox_set_receiver`. After this, all messages sent to
548 this mailbox will have this behavior regardless of the message size.
549
550 This value needs to be smaller than or equals to the threshold set at
551 :ref:`cfg=smpi/send-is-detached-thresh`, because asynchronous messages
552 are meant to be detached as well.
553
554 .. _options_pls:
555
556 Configuring ns-3
557 ^^^^^^^^^^^^^^^^
558
559 **Option** ``ns3/TcpModel`` **Default:** "default" (ns-3 default)
560
561 When using ns-3, there is an extra item ``ns3/TcpModel``, corresponding
562 to the ``ns3::TcpL4Protocol::SocketType`` configuration item in
563 ns-3. The only valid values (enforced on the SimGrid side) are
564 'default' (no change to the ns-3 configuration), 'NewReno' or 'Reno' or
565 'Tahoe'.
566
567 **Option** ``ns3/seed`` **Default:** "" (don't set the seed in ns-3)
568
569 This option is the random seed to provide to ns-3 with
570 ``ns3::RngSeedManager::SetSeed`` and ``ns3::RngSeedManager::SetRun``.
571
572 If left blank, no seed is set in ns-3. If the value 'time' is
573 provided, the current amount of seconds since epoch is used as a seed.
574 Otherwise, the provided value must be a number to use as a seed.
575
576 Configuring the Storage model
577 .............................
578
579 .. _cfg=storage/max_file_descriptors:
580
581 File Descriptor Count per Host
582 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
583
584 **Option** ``storage/max_file_descriptors`` **Default:** 1024
585
586 Each host maintains a fixed-size array of its file descriptors. You
587 can change its size through this item to either enlarge it if your
588 application requires it or to reduce it to save memory space.
589
590 .. _cfg=plugin:
591
592 Activating Plugins
593 ------------------
594
595 SimGrid plugins allow one to extend the framework without changing its
596 source code directly. Read the source code of the existing plugins to
597 learn how to do so (in ``src/plugins``), and ask your questions to the
598 usual channels (Stack Overflow, Mailing list, IRC). The basic idea is
599 that plugins usually register callbacks to some signals of interest.
600 If they need to store some information about a given object (Link, CPU
601 or Actor), they do so through the use of a dedicated object extension.
602
603 Some of the existing plugins can be activated from the command line,
604 meaning that you can activate them from the command line without any
605 modification to your simulation code. For example, you can activate
606 the host energy plugin by adding ``--cfg=plugin:host_energy`` to your
607 command line.
608
609 Here is a partial list of plugins that can be activated this way. You can get
610 the full list by passing ``--cfg=plugin:help`` to your simulator.
611
612   - :ref:`Host Energy <plugin_host_energy>`: models the energy dissipation of the compute units.
613   - :ref:`Link Energy <plugin_link_energy>`: models the energy dissipation of the network.
614   - :ref:`Host Load <plugin_host_load>`: monitors the load of the compute units.
615
616 .. _options_modelchecking:
617
618 Configuring the Model-Checking
619 ------------------------------
620
621 To enable SimGrid's model-checking support, the program should
622 be executed using the simgrid-mc wrapper:
623
624 .. code-block:: console
625
626    $ simgrid-mc ./my_program
627
628 Safety properties are expressed as assertions using the function
629 :cpp:func:`void MC_assert(int prop)`.
630
631 .. _cfg=smpi/buffering:
632
633 Specifying the MPI buffering behavior
634 .....................................
635
636 **Option** ``smpi/buffering`` **Default:** infty
637
638 Buffering in MPI has a huge impact on the communication semantic. For example,
639 standard blocking sends are synchronous calls when the system buffers are full
640 while these calls can complete immediately without even requiring a matching
641 receive call for small messages sent when the system buffers are empty.
642
643 In SMPI, this depends on the message size, that is compared against two thresholds:
644
645 - if (size < :ref:`smpi/async-small-thresh <cfg=smpi/async-small-thresh>`) then
646   MPI_Send returns immediately, even if the corresponding receive has not be issued yet.
647 - if (:ref:`smpi/async-small-thresh <cfg=smpi/async-small-thresh>` < size < :ref:`smpi/send-is-detached-thresh <cfg=smpi/send-is-detached-thresh>`) then
648   MPI_Send returns as soon as the corresponding receive has been issued. This is known as the eager mode.
649 - if (:ref:`smpi/send-is-detached-thresh <cfg=smpi/send-is-detached-thresh>` < size) then
650   MPI_Send returns only when the message has actually been sent over the network. This is known as the rendez-vous mode.
651
652 The ``smpi/buffering`` (only valid with MC) option gives an easier interface to choose between these semantics. It can take two values:
653
654 - **zero:** means that buffering should be disabled. All communications are actually blocking.
655 - **infty:** means that buffering should be made infinite. All communications are non-blocking.
656
657 .. _cfg=model-check/property:
658
659 Specifying a liveness property
660 ..............................
661
662 **Option** ``model-check/property`` **Default:** unset
663
664 If you want to specify liveness properties, you have to pass them on
665 the command line, specifying the name of the file containing the
666 property, as formatted by the `ltl2ba <https://github.com/utwente-fmt/ltl2ba>`_ program.
667 Note that ltl2ba is not part of SimGrid and must be installed separately.
668
669 .. code-block:: console
670
671    $ simgrid-mc ./my_program --cfg=model-check/property:<filename>
672
673 .. _cfg=model-check/checkpoint:
674
675 Going for Stateful Verification
676 ...............................
677
678 By default, the system is backtracked to its initial state to explore
679 another path, instead of backtracking to the exact step before the fork
680 that we want to explore (this is called stateless verification). This
681 is done this way because saving intermediate states can rapidly
682 exhaust the available memory. If you want, you can change the value of
683 the ``model-check/checkpoint`` item. For example,
684 ``--cfg=model-check/checkpoint:1`` asks to take a checkpoint every
685 step.  Beware, this will certainly explode your memory. Larger values
686 are probably better, make sure to experiment a bit to find the right
687 setting for your specific system.
688
689 .. _cfg=model-check/reduction:
690
691 Specifying the kind of reduction
692 ................................
693
694 The main issue when using the model-checking is the state space
695 explosion. You can activate some reduction technique with
696 ``--cfg=model-check/reduction:<technique>``. For now, this
697 configuration variable can take 2 values:
698
699  - **none:** Do not apply any kind of reduction (mandatory for
700    liveness properties, as our current DPOR algorithm breaks cycles)
701  - **dpor:** Apply Dynamic Partial Ordering Reduction. Only valid if
702    you verify local safety properties (default value for safety
703    checks).
704
705 Another way to mitigate the state space explosion is to search for
706 cycles in the exploration with the :ref:`cfg=model-check/visited`
707 configuration. Note that DPOR and state-equality reduction may not
708 play well together. You should choose between them.
709
710 Our current DPOR implementation could be improved in may ways. We are
711 currently improving its efficiency (both in term of reduction ability
712 and computational speed), and future work could make it compatible
713 with liveness properties.
714
715 .. _cfg=model-check/visited:
716
717 Size of Cycle Detection Set (state equality reduction)
718 ......................................................
719
720 Mc SimGrid can be asked to search for cycles during the exploration,
721 i.e. situations where a new explored state is in fact the same state
722 than a previous one.. This can prove useful to mitigate the state
723 space explosion with safety properties, and this is the crux when
724 searching for counter-examples to the liveness properties.
725
726 Note that this feature may break the current implementation of the
727 DPOR reduction technique.
728
729 The ``model-check/visited`` item is the maximum number of states, which
730 are stored in memory. If the maximum number of snapshotted state is
731 reached, some states will be removed from the memory and some cycles
732 might be missed. Small values can lead to incorrect verifications, but
733 large values can exhaust your memory and be CPU intensive as each new
734 state must be compared to that amount of older saved states.
735
736 The default settings depend on the kind of exploration. With safety
737 checking, no state is snapshotted and cycles cannot be detected. With
738 liveness checking, all states are snapshotted because missing a cycle
739 could hinder the exploration soundness.
740
741 .. _cfg=model-check/termination:
742
743 Non-Termination Detection
744 .........................
745
746 The ``model-check/termination`` configuration item can be used to
747 report if a non-termination execution path has been found. This is a
748 path with a cycle, which means that the program might never terminate.
749
750 This only works in safety mode, not in liveness mode.
751
752 This options is disabled by default.
753
754 .. _cfg=model-check/dot-output:
755
756 Dot Output
757 ..........
758
759 If set, the ``model-check/dot-output`` configuration item is the name
760 of a file in which to write a dot file of the path leading to the
761 property violation discovered (safety or liveness violation), as well
762 as the cycle for liveness properties. This dot file can then be fed to the
763 graphviz dot tool to generate a corresponding graphical representation.
764
765 .. _cfg=model-check/max-depth:
766
767 Exploration Depth Limit
768 .......................
769
770 The ``model-check/max-depth`` can set the maximum depth of the
771 exploration graph of the model checker. If this limit is reached, a
772 logging message is sent and the results might not be exact.
773
774 By default, the exploration is limited to the depth of 1000.
775
776 .. _cfg=model-check/timeout:
777
778 Handling of Timeouts
779 ....................
780
781 By default, the model checker does not handle timeout conditions: the `wait`
782 operations never time out. With the ``model-check/timeout`` configuration item
783 set to **yes**, the model checker will explore timeouts of `wait` operations.
784
785 .. _cfg=model-check/communications-determinism:
786 .. _cfg=model-check/send-determinism:
787
788 Communication Determinism
789 .........................
790
791 The ``model-check/communications-determinism`` and
792 ``model-check/send-determinism`` items can be used to select the
793 communication determinism mode of the model checker, which checks
794 determinism properties of the communications of an application.
795
796 .. _cfg=model-check/setenv:
797
798 Passing environment variables
799 .............................
800
801 You can specify extra environment variables to be set in the verified application
802 with ``model-check/setenv``. For example, you can preload a library as follows:
803 ``-cfg=model-check/setenv:LD_PRELOAD=toto;LD_LIBRARY_PATH=/tmp``.
804
805 .. _options_mc_perf:
806
807 Verification Performance Considerations
808 .......................................
809
810 The size of the stacks can have a huge impact on the memory
811 consumption when using model-checking. By default, each snapshot will
812 save a copy of the whole stacks and not only of the part that is
813 really meaningful: you should expect the contribution of the memory
814 consumption of the snapshots to be:
815 :math:`\text{number of processes} \times \text{stack size} \times \text{number of states}`.
816
817 When compiled against the model checker, the stacks are not
818 protected with guards: if the stack size is too small for your
819 application, the stack will silently overflow into other parts of the
820 memory (see :ref:`contexts/guard-size <cfg=contexts/guard-size>`).
821
822 .. _cfg=model-check/replay:
823
824 Replaying buggy execution paths from the model checker
825 ......................................................
826
827 Debugging the problems reported by the model checker is challenging:
828 First, the application under verification cannot be debugged with gdb
829 because the model checker already traces it. Then, the model checker may
830 explore several execution paths before encountering the issue, making it
831 very difficult to understand the output. Fortunately, SimGrid provides
832 the execution path leading to any reported issue so that you can replay
833 this path reported by the model checker, enabling the usage of classical
834 debugging tools.
835
836 When the model checker finds an interesting path in the application
837 execution graph (where a safety or liveness property is violated), it
838 generates an identifier for this path. Here is an example of the output:
839
840 .. code-block:: console
841
842    [  0.000000] (0:@) Check a safety property
843    [  0.000000] (0:@) **************************
844    [  0.000000] (0:@) *** PROPERTY NOT VALID ***
845    [  0.000000] (0:@) **************************
846    [  0.000000] (0:@) Counter-example execution trace:
847    [  0.000000] (0:@)   [(1)Tremblay (app)] MC_RANDOM(3)
848    [  0.000000] (0:@)   [(1)Tremblay (app)] MC_RANDOM(4)
849    [  0.000000] (0:@) Path = 1/3;1/4
850    [  0.000000] (0:@) Expanded states = 27
851    [  0.000000] (0:@) Visited states = 68
852    [  0.000000] (0:@) Executed transitions = 46
853
854 The interesting line is ``Path = 1/3;1/4``, which means that you should use
855 ``--cfg=model-check/replay:1/3;1/4`` to replay your application on the buggy
856 execution path. All options (but the model checker related ones) must
857 remain the same. In particular, if you ran your application with
858 ``smpirun -wrapper simgrid-mc``, then do it again. Remove all
859 MC-related options, keep non-MC-related ones and add
860 ``--cfg=model-check/replay:???``.
861
862 Currently, if the path is of the form ``X;Y;Z``, each number denotes
863 the actor's pid that is selected at each indecision point. If it's of
864 the form ``X/a;Y/b``, the X and Y are the selected pids while the a
865 and b are the return values of their simcalls. In the previous
866 example, ``1/3;1/4``, you can see from the full output that the actor
867 1 is doing MC_RANDOM simcalls, so the 3 and 4 simply denote the values
868 that these simcall return on the execution branch leading to the
869 violation.
870
871 Configuring the User Code Virtualization
872 ----------------------------------------
873
874 .. _cfg=contexts/factory:
875
876 Selecting the Virtualization Factory
877 ....................................
878
879 **Option** contexts/factory **Default:** "raw"
880
881 In SimGrid, the user code is virtualized in a specific mechanism that
882 allows the simulation kernel to control its execution: when a user
883 process requires a blocking action (such as sending a message), it is
884 interrupted, and only gets released when the simulated clock reaches
885 the point where the blocking operation is done. This is explained
886 graphically in the `relevant tutorial, available online
887 <https://simgrid.org/tutorials/simgrid-simix-101.pdf>`_.
888
889 In SimGrid, the containers in which user processes are virtualized are
890 called contexts. Several context factory are provided, and you can
891 select the one you want to use with the ``contexts/factory``
892 configuration item. Some of the following may not exist on your
893 machine because of portability issues. In any case, the default one
894 should be the most effcient one (please report bugs if the
895 auto-detection fails for you). They are approximately sorted here from
896 the slowest to the most efficient:
897
898  - **thread:** very slow factory using full featured, standard threads.
899    They are slow but very standard. Some debuggers or profilers only work with this factory.
900  - **ucontext:** fast factory using System V contexts (Linux and FreeBSD only)
901  - **boost:** This uses the `context
902    implementation <http://www.boost.org/doc/libs/1_59_0/libs/context/doc/html/index.html>`_
903    of the boost library for a performance that is comparable to our
904    raw implementation.
905    |br| Install the relevant library (e.g. with the
906    libboost-contexts-dev package on Debian/Ubuntu) and recompile
907    SimGrid.
908  - **raw:** amazingly fast factory using a context switching mechanism
909    of our own, directly implemented in assembly (only available for x86
910    and amd64 platforms for now) and without any unneeded system call.
911
912 The main reason to change this setting is when the debugging tools become
913 fooled by the optimized context factories. Threads are the most
914 debugging-friendly contexts, as they allow one to set breakpoints
915 anywhere with gdb and visualize backtraces for all processes, in order
916 to debug concurrency issues. Valgrind is also more comfortable with
917 threads, but it should be usable with all factories (Exception: the
918 callgrind tool really dislikes raw and ucontext factories).
919
920 .. _cfg=contexts/stack-size:
921
922 Adapting the Stack Size
923 .......................
924
925 **Option** ``contexts/stack-size`` **Default:** 8192 KiB
926
927 Each virtualized used process is executed using a specific system
928 stack. The size of this stack has a huge impact on the simulation
929 scalability, but its default value is rather large. This is because
930 the error messages that you get when the stack size is too small are
931 rather disturbing: this leads to stack overflow (overwriting other
932 stacks), leading to segfaults with corrupted stack traces.
933
934 If you want to push the scalability limits of your code, you might
935 want to reduce the ``contexts/stack-size`` item. Its default value is
936 8192 (in KiB), while our Chord simulation works with stacks as small
937 as 16 KiB, for example. You can ensure that some actors have a specific
938 size by simply changing the value of this configuration item before
939 creating these actors. The :cpp:func:`simgrid::s4u::Engine::set_config`
940 functions are handy for that.
941
942 This *setting is ignored* when using the thread factory (because there
943 is no way to modify the stack size with C++ system threads). Instead,
944 you should compile SimGrid and your application with
945 ``-fsplit-stack``. Note that this compilation flag is not compatible
946 with the model checker right now.
947
948 The operating system should only allocate memory for the pages of the
949 stack which are actually used and you might not need to use this in
950 most cases. However, this setting is very important when using the
951 model checker (see :ref:`options_mc_perf`).
952
953 .. _cfg=contexts/guard-size:
954
955 Disabling Stack Guard Pages
956 ...........................
957
958 **Option** ``contexts/guard-size`` **Default** 1 page in most case (0 pages with MC)
959
960 Unless you use the threads context factory (see
961 :ref:`cfg=contexts/factory`), a stack guard page is usually used
962 which prevents the stack of a given actor from overflowing on another
963 stack. But the performance impact may become prohibitive when the
964 amount of actors increases.  The option ``contexts/guard-size`` is the
965 number of stack guard pages used.  By setting it to 0, no guard pages
966 will be used: in this case, you should avoid using small stacks (with
967 :ref:`contexts/stack-size <cfg=contexts/stack-size>`) as the stack
968 will silently overflow on other parts of the memory.
969
970 When no stack guard page is created, stacks may then silently overflow
971 on other parts of the memory if their size is too small for the
972 application.
973
974 .. _cfg=contexts/nthreads:
975 .. _cfg=contexts/synchro:
976
977 Running User Code in Parallel
978 .............................
979
980 Parallel execution of the user code is only considered stable in
981 SimGrid v3.7 and higher, and mostly for S4U simulations. SMPI
982 simulations may well fail in parallel mode. It is described in
983 `INRIA RR-7653 <http://hal.inria.fr/inria-00602216/>`_.
984
985 If you are using the **ucontext** or **raw** context factories, you can
986 request to execute the user code in parallel. Several threads are
987 launched, each of them handling the same number of user contexts at each
988 run. To activate this, set the ``contexts/nthreads`` item to the amount
989 of cores that you have in your computer (or lower than 1 to have the
990 amount of cores auto-detected).
991
992 When parallel execution is activated, you can choose the
993 synchronization schema used with the ``contexts/synchro`` item,
994 which value is either:
995
996  - **futex:** ultra optimized synchronisation schema, based on futexes
997    (fast user-mode mutexes), and thus only available on Linux systems.
998    This is the default mode when available.
999  - **posix:** slow but portable synchronisation using only POSIX
1000    primitives.
1001  - **busy_wait:** not really a synchronisation: the worker threads
1002    constantly request new contexts to execute. It should be the most
1003    efficient synchronisation schema, but it loads all the cores of
1004    your machine for no good reason. You probably prefer the other less
1005    eager schemas.
1006
1007 Configuring the Tracing
1008 -----------------------
1009
1010 The :ref:`tracing subsystem <outcome_vizu>` can be configured in
1011 several different ways depending on the used interface (S4U, SMPI)
1012 and the kind of traces that needs to be obtained. See the
1013 :ref:`Tracing Configuration Options subsection
1014 <tracing_tracing_options>` for a full description of each
1015 configuration option.
1016
1017 We detail here a simple way to get the traces working for you, even if
1018 you never used the tracing API.
1019
1020
1021 - Any SimGrid-based simulator (S4U, SMPI, ...) and raw traces:
1022
1023   .. code-block:: none
1024
1025      --cfg=tracing:yes --cfg=tracing/uncategorized:yes
1026
1027   The first parameter activates the tracing subsystem, and the second
1028   tells it to trace host and link utilization (without any
1029   categorization).
1030
1031 - S4U-based simulator and categorized traces (you need to
1032   declare categories and classify your tasks according to them)
1033
1034   .. code-block:: none
1035
1036      --cfg=tracing:yes --cfg=tracing/categorized:yes
1037
1038   The first parameter activates the tracing subsystem, and the second
1039   tells it to trace host and link categorized utilization.
1040
1041 - SMPI simulator and traces for a space/time view:
1042
1043   .. code-block:: console
1044
1045      $ smpirun -trace ...
1046
1047   The `-trace` parameter for the smpirun script runs the simulation
1048   with ``--cfg=tracing:yes --cfg=tracing/smpi:yes``. Check the
1049   smpirun's `-help` parameter for additional tracing options.
1050
1051 Sometimes you might want to put additional information on the trace to
1052 correctly identify them later, or to provide data that can be used to
1053 reproduce an experiment. You have two ways to do that:
1054
1055 - Add a string on top of the trace file as comment:
1056
1057   .. code-block:: none
1058
1059      --cfg=tracing/comment:my_simulation_identifier
1060
1061 - Add the contents of a textual file on top of the trace file as comment:
1062
1063   .. code-block:: none
1064
1065      --cfg=tracing/comment-file:my_file_with_additional_information.txt
1066
1067 Please, use these two parameters (for comments) to make reproducible
1068 simulations. For additional details about this and all tracing
1069 options, check See the :ref:`tracing_tracing_options`.
1070
1071 Configuring SMPI
1072 ----------------
1073
1074 The SMPI interface provides several specific configuration items. 
1075 These are not easy to see with ``--help-cfg``, since SMPI binaries are usually launched through the ``smiprun`` script.
1076
1077 .. _cfg=smpi/host-speed:
1078 .. _cfg=smpi/cpu-threshold:
1079 .. _cfg=smpi/simulate-computation:
1080
1081 Automatic Benchmarking of SMPI Code
1082 ...................................
1083
1084 In SMPI, the sequential code is automatically benchmarked, and these
1085 computations are automatically reported to the simulator. That is to
1086 say that if you have a large computation between a ``MPI_Recv()`` and
1087 a ``MPI_Send()``, SMPI will automatically benchmark the duration of
1088 this code, and create an execution task within the simulator to take
1089 this into account. For that, the actual duration is measured on the
1090 host machine and then scaled to the power of the corresponding
1091 simulated machine. The variable ``smpi/host-speed`` allows one to
1092 specify the computational speed of the host machine (in flop/s by
1093 default) to use when scaling the execution times.
1094
1095 The default value is ``smpi/host-speed=20kf`` (= 20,000 flop/s). This
1096 is probably underestimated for most machines, leading SimGrid to
1097 overestimate the amount of flops in the execution blocks that are
1098 automatically injected in the simulator. As a result, the execution
1099 time of the whole application will probably be overestimated until you
1100 use a realistic value.
1101
1102 When the code consists of numerous consecutive MPI calls, the
1103 previous mechanism feeds the simulation kernel with numerous tiny
1104 computations. The ``smpi/cpu-threshold`` item becomes handy when this
1105 impacts badly on the simulation performance. It specifies a threshold (in
1106 seconds) below which the execution chunks are not reported to the
1107 simulation kernel (default value: 1e-6).
1108
1109 .. note:: The option ``smpi/cpu-threshold`` ignores any computation
1110    time spent below this threshold. SMPI does not consider the
1111    `amount of time` of these computations; there is no offset for
1112    this. Hence, a value that is too small, may lead to unreliable
1113    simulation results.
1114
1115 In some cases, however, one may wish to disable simulation of
1116 the computation of an application. This is the case when SMPI is used not to
1117 simulate an MPI application, but instead an MPI code that performs
1118 "live replay" of another MPI app (e.g., ScalaTrace's replay tool, or
1119 various on-line simulators that run an app at scale). In this case the
1120 computation of the replay/simulation logic should not be simulated by
1121 SMPI. Instead, the replay tool or on-line simulator will issue
1122 "computation events", which correspond to the actual MPI simulation
1123 being replayed/simulated. At the moment, these computation events can
1124 be simulated using SMPI by calling internal smpi_execute*() functions.
1125
1126 To disable the benchmarking/simulation of a computation in the simulated
1127 application, the variable ``smpi/simulate-computation`` should be set
1128 to **no**.  This option just ignores the timings in your simulation; it
1129 still executes the computations itself. If you want to stop SMPI from
1130 doing that, you should check the SMPI_SAMPLE macros, documented in
1131 Section :ref:`SMPI_use_faster`.
1132
1133 +------------------------------------+-------------------------+-----------------------------+
1134 |  Solution                          | Computations executed?  | Computations simulated?     |
1135 +====================================+=========================+=============================+
1136 | --cfg=smpi/simulate-computation:no | Yes                     | Never                       |
1137 +------------------------------------+-------------------------+-----------------------------+
1138 | --cfg=smpi/cpu-threshold:42        | Yes, in all cases       | If it lasts over 42 seconds |
1139 +------------------------------------+-------------------------+-----------------------------+
1140 | SMPI_SAMPLE() macro                | Only once per loop nest | Always                      |
1141 +------------------------------------+-------------------------+-----------------------------+
1142
1143 .. _cfg=smpi/comp-adjustment-file:
1144
1145 Slow-down or speed-up parts of your code
1146 ........................................
1147
1148 **Option** ``smpi/comp-adjustment-file:`` **Default:** unset
1149
1150 This option allows you to pass a file that contains two columns: The
1151 first column defines the section that will be subject to a speedup;
1152 the second column is the speedup. For instance:
1153
1154 .. code-block:: none
1155
1156   "start:stop","ratio"
1157   "exchange_1.f:30:exchange_1.f:130",1.18244559422142
1158
1159 The first line is the header - you must include it.  The following
1160 line means that the code between two consecutive MPI calls on line 30
1161 in exchange_1.f and line 130 in exchange_1.f should receive a speedup
1162 of 1.18244559422142. The value for the second column is therefore a
1163 speedup, if it is larger than 1 and a slowdown if it is smaller
1164 than 1. Nothing will be changed if it is equal to 1.
1165
1166 Of course, you can set any arbitrary filenames you want (so the start
1167 and end don't have to be in the same file), but be aware that this
1168 mechanism only supports `consecutive calls!`
1169
1170 Please note that you must pass the ``-trace-call-location`` flag to
1171 smpicc or smpiff, respectively. This flag activates some internal
1172 macro definitions that help with obtaining the call location.
1173
1174 Bandwidth and latency factors
1175 .............................
1176
1177 Adapting the bandwidth and latency acurately to the network conditions is of a paramount importance to get realistic results.
1178 This is done through the :ref:`network/bandwidth-factor <cfg=network/bandwidth-factor>` and :ref:`network/latency-factor
1179 <cfg=network/latency-factor>` items. You probably also want to read the following section: :ref:`models_calibration`.
1180
1181 .. _cfg=smpi/display-timing:
1182
1183 Reporting Simulation Time
1184 .........................
1185
1186 **Option** ``smpi/display-timing`` **Default:** 0 (false)
1187
1188 Most of the time, you run MPI code with SMPI to compute the time it
1189 would take to run it on a platform. But since the code is run through
1190 the ``smpirun`` script, you don't have any control on the launcher
1191 code, making it difficult to report the simulated time when the
1192 simulation ends. If you enable the ``smpi/display-timing`` item,
1193 ``smpirun`` will display this information when the simulation
1194 ends.
1195 SMPI will also display information about the amout of real time spent
1196 in application code and in SMPI internals, to provide hints about the
1197 need to use sampling to reduce simulation time.
1198
1199 .. _cfg=smpi/display-allocs:
1200
1201 Reporting memory allocations
1202 ............................
1203
1204 **Option** ``smpi/display-allocs`` **Default:** 0 (false)
1205
1206 SMPI intercepts malloc and calloc calls performed inside the running
1207 application, if it wasn't compiled with SMPI_NO_OVERRIDE_MALLOC.
1208 With this option, SMPI will show at the end of execution the amount of
1209 memory allocated through these calls, and locate the most expensive one.
1210 This helps finding the targets for manual memory sharing, or the threshold
1211 to use for smpi/auto-shared-malloc-thresh option (see :ref:`cfg=smpi/auto-shared-malloc-thresh`).
1212
1213 .. _cfg=smpi/keep-temps:
1214
1215 Keeping temporary files after simulation
1216 ........................................
1217
1218 **Option** ``smpi/keep-temps`` **default:** 0 (false)
1219
1220 SMPI usually generates a lot of temporary files that are cleaned after
1221 use. This option requests to preserve them, for example to debug or
1222 profile your code. Indeed, the binary files are removed very early
1223 under the dlopen privatization schema, which tends to fool the
1224 debuggers.
1225
1226 .. _cfg=smpi/papi-events:
1227
1228 Trace hardware counters with PAPI
1229 .................................
1230
1231 **Option** ``smpi/papi-events`` **default:** unset
1232
1233 When the PAPI support is compiled into SimGrid, this option takes the
1234 names of PAPI counters and adds their respective values to the trace
1235 files (See Section :ref:`tracing_tracing_options`).
1236
1237 .. warning::
1238
1239    This feature currently requires superuser privileges, as registers
1240    are queried.  Only use this feature with code you trust! Call
1241    smpirun for instance via ``smpirun -wrapper "sudo "
1242    <your-parameters>`` or run ``sudo sh -c "echo 0 >
1243    /proc/sys/kernel/perf_event_paranoid"`` In the later case, sudo
1244    will not be required.
1245
1246 It is planned to make this feature available on a per-process (or per-thread?) basis.
1247 The first draft, however, just implements a "global" (i.e., for all processes) set
1248 of counters, the "default" set.
1249
1250 .. code-block:: none
1251
1252    --cfg=smpi/papi-events:"default:PAPI_L3_LDM:PAPI_L2_LDM"
1253
1254 .. _cfg=smpi/privatization:
1255
1256 Automatic Privatization of Global Variables
1257 ...........................................
1258
1259 **Option** ``smpi/privatization`` **default:** "dlopen" (when using smpirun)
1260
1261 MPI executables are usually meant to be executed in separate
1262 processes, but SMPI is executed in only one process. Global variables
1263 from executables will be placed in the same memory region and shared
1264 between processes, causing intricate bugs.  Several options are
1265 possible to avoid this, as described in the main `SMPI publication
1266 <https://hal.inria.fr/hal-01415484>`_ and in the :ref:`SMPI
1267 documentation <SMPI_what_globals>`. SimGrid provides two ways of
1268 automatically privatizing the globals, and this option allows one to
1269 choose between them.
1270
1271   - **no** (default when not using smpirun): Do not automatically
1272     privatize variables.  Pass ``-no-privatize`` to smpirun to disable
1273     this feature.
1274   - **dlopen** or **yes** (default when using smpirun): Link multiple
1275     times against the binary.
1276   - **mmap** (slower, but maybe somewhat more stable):
1277     Runtime automatic switching of the data segments.
1278
1279 .. warning::
1280    This configuration option cannot be set in your platform file. You can only
1281    pass it as an argument to smpirun.
1282
1283 .. _cfg=smpi/privatize-libs:
1284
1285 Automatic privatization of global variables inside external libraries
1286 .....................................................................
1287
1288 **Option** ``smpi/privatize-libs`` **default:** unset
1289
1290 **Linux/BSD only:** When using dlopen (default) privatization,
1291 privatize specific shared libraries with internal global variables, if
1292 they can't be linked statically.  For example libgfortran is usually
1293 used for Fortran I/O and indexes in files can be mixed up.
1294
1295 Multiple libraries can be given, semicolon separated.
1296
1297 This configuration option can only use either full paths to libraries,
1298 or full names.  Check with ldd the name of the library you want to
1299 use.  For example:
1300
1301 .. code-block:: console
1302
1303    $ ldd allpairf90
1304       ...
1305       libgfortran.so.3 => /usr/lib/x86_64-linux-gnu/libgfortran.so.3 (0x00007fbb4d91b000)
1306       ...
1307
1308 Then you can use ``--cfg=smpi/privatize-libs:libgfortran.so.3``
1309 or ``--cfg=smpi/privatize-libs:/usr/lib/x86_64-linux-gnu/libgfortran.so.3``,
1310 but not ``libgfortran`` nor ``libgfortran.so``.
1311
1312 .. _cfg=smpi/send-is-detached-thresh:
1313
1314 Simulating MPI detached send
1315 ............................
1316
1317 **Option** ``smpi/send-is-detached-thresh`` **default:** 65536
1318
1319 This threshold specifies the size in bytes under which the send will
1320 return immediately. This is different from the threshold detailed in
1321 :ref:`cfg=smpi/async-small-thresh` because the message is not
1322 really sent when the send is posted. SMPI still waits for the
1323 corresponding receive to be posted, in order to perform the communication
1324 operation.
1325
1326 .. _cfg=smpi/coll-selector:
1327
1328 Simulating MPI collective algorithms
1329 ....................................
1330
1331 **Option** ``smpi/coll-selector`` **Possible values:** naive (default), ompi, mpich
1332
1333 SMPI implements more than 100 different algorithms for MPI collective
1334 communication, to accurately simulate the behavior of most of the
1335 existing MPI libraries. The ``smpi/coll-selector`` item can be used to
1336 select the decision logic either of the OpenMPI or the MPICH libraries. (By
1337 default SMPI uses naive version of collective operations.)
1338
1339 Each collective operation can be manually selected with a
1340 ``smpi/collective_name:algo_name``. Available algorithms are listed in
1341 :ref:`SMPI_use_colls`.
1342
1343 .. TODO:: All available collective algorithms will be made available
1344           via the ``smpirun --help-coll`` command.
1345
1346 .. _cfg=smpi/barrier-collectives:
1347
1348 Add a barrier in all collectives
1349 ................................
1350
1351 **Option** ``smpi/barrier-collectives`` **default:** off
1352
1353 This option adds a simple barrier in some collective operations to catch dangerous
1354 code that may or may not work depending on the MPI implementation: Bcast, Exscan,
1355 Gather, Gatherv, Scan, Scatter, Scatterv and Reduce.
1356
1357 For example, the following code works with OpenMPI while it deadlocks in MPICH and
1358 Intel MPI. Broadcast seem to be "fire and forget" in OpenMPI while other
1359 implementations expect to receive a message.
1360
1361 .. code-block:: C
1362
1363   if (rank == 0) {
1364     MPI_Bcast(buf1, buff_size, MPI_CHAR, 0, newcom);
1365     MPI_Send(&buf2, buff_size, MPI_CHAR, 1, tag, newcom);
1366   } else if (rank==1) {
1367     MPI_Recv(&buf2, buff_size, MPI_CHAR, 0, tag, newcom, MPI_STATUS_IGNORE);
1368     MPI_Bcast(buf1, buff_size, MPI_CHAR, 0, newcom);
1369   }
1370
1371 The barrier is only simulated and does not involve any additional message (it is a S4U barrier).
1372 This option is disabled by default, and activated by the `-analyze` flag of smpirun.
1373
1374 .. _cfg=smpi/barrier-finalization:
1375
1376 Add a barrier in MPI_Finalize
1377 .............................
1378
1379 **Option** ``smpi/finalization-barrier`` **default:** off
1380
1381 By default, SMPI processes are destroyed as soon as soon as their code ends,
1382 so after a successful MPI_Finalize call returns. In some rare cases, some data
1383 might have been attached to MPI objects still active in the remaining processes,
1384 and can be destroyed eagerly by the finished process.
1385 If your code shows issues at finalization, such as segmentation fault, triggering
1386 this option will add an explicit MPI_Barrier(MPI_COMM_WORLD) call inside the
1387 MPI_Finalize, so that all processes will terminate at almost the same point.
1388 It might affect the total timing by the cost of a barrier.
1389
1390 .. _cfg=smpi/errors-are-fatal:
1391
1392 Disable MPI fatal errors
1393 ........................
1394
1395 **Option** ``smpi/errors-are-fatal`` **default:** on
1396
1397 By default, SMPI processes will crash if a MPI error code is returned. MPI allows
1398 to explicitely set MPI_ERRORS_RETURN errhandler to avoid this behaviour. This flag
1399 will turn on this behaviour by default (for all concerned types and errhandlers).
1400 This can ease debugging by going after the first reported error.
1401
1402 .. _cfg=smpi/pedantic:
1403
1404 Disable pedantic MPI errors
1405 ...........................
1406
1407 **Option** ``smpi/pedantic`` **default:** on
1408
1409 By default, SMPI will report all errors it finds in MPI codes. Some of these errors
1410 may not be considered as errors by all developers. This flag can be turned off to
1411 avoid reporting some usually harmless mistakes.
1412 Concerned errors list (will be expanded in the future):
1413
1414  - Calling MPI_Win_fence only once in a program, hence just opening an epoch without
1415    ever closing it.
1416
1417 .. _cfg=smpi/iprobe:
1418
1419 Inject constant times for MPI_Iprobe
1420 ....................................
1421
1422 **Option** ``smpi/iprobe`` **default:** 0.0001
1423
1424 The behavior and motivation for this configuration option is identical
1425 with :ref:`smpi/test <cfg=smpi/test>`, but for the function
1426 ``MPI_Iprobe()``
1427
1428 .. _cfg=smpi/iprobe-cpu-usage:
1429
1430 Reduce speed for iprobe calls
1431 .............................
1432
1433 **Option** ``smpi/iprobe-cpu-usage`` **default:** 1 (no change)
1434
1435 MPI_Iprobe calls can be heavily used in applications. To account
1436 correctly for the energy that cores spend probing, it is necessary to
1437 reduce the load that these calls cause inside SimGrid.
1438
1439 For instance, we measured a maximum power consumption of 220 W for a
1440 particular application but only 180 W while this application was
1441 probing. Hence, the correct factor that should be passed to this
1442 option would be 180/220 = 0.81.
1443
1444 .. _cfg=smpi/init:
1445
1446 Inject constant times for MPI_Init
1447 ..................................
1448
1449 **Option** ``smpi/init`` **default:** 0
1450
1451 The behavior and motivation for this configuration option is identical
1452 with :ref:`smpi/test <cfg=smpi/test>`, but for the function ``MPI_Init()``.
1453
1454 .. _cfg=smpi/ois:
1455
1456 Inject constant times for MPI_Isend()
1457 .....................................
1458
1459 **Option** ``smpi/ois``
1460
1461 The behavior and motivation for this configuration option is identical
1462 with :ref:`smpi/os <cfg=smpi/os>`, but for the function ``MPI_Isend()``.
1463
1464 .. _cfg=smpi/os:
1465
1466 Inject constant times for MPI_send()
1467 ....................................
1468
1469 **Option** ``smpi/os``
1470
1471 In several network models such as LogP, send (MPI_Send, MPI_Isend) and
1472 receive (MPI_Recv) operations incur costs (i.e., they consume CPU
1473 time). SMPI can factor these costs in as well, but the user has to
1474 configure SMPI accordingly as these values may vary by machine.  This
1475 can be done by using ``smpi/os`` for MPI_Send operations; for MPI_Isend
1476 and MPI_Recv, use ``smpi/ois`` and ``smpi/or``, respectively. These work
1477 exactly as ``smpi/ois``.
1478
1479 This item can consist of multiple sections; each section takes three
1480 values, for example ``1:3:2;10:5:1``.  The sections are divided by ";"
1481 so this example contains two sections.  Furthermore, each section
1482 consists of three values.
1483
1484 1. The first value denotes the minimum size in bytes for this section to take effect;
1485    read it as "if message size is greater than this value (and other section has a larger
1486    first value that is also smaller than the message size), use this".
1487    In the first section above, this value is "1".
1488
1489 2. The second value is the startup time; this is a constant value that will always
1490    be charged, no matter what the size of the message. In the first section above,
1491    this value is "3".
1492
1493 3. The third value is the `per-byte` cost. That is, it is charged for every
1494    byte of the message (incurring cost messageSize*cost_per_byte)
1495    and hence accounts also for larger messages. In the first
1496    section of the example above, this value is "2".
1497
1498 Now, SMPI always checks which section it should use for a given
1499 message; that is, if a message of size 11 is sent with the
1500 configuration of the example above, only the second section will be
1501 used, not the first, as the first value of the second section is
1502 closer to the message size. Hence, when ``smpi/os=1:3:2;10:5:1``, a
1503 message of size 11 incurs the following cost inside MPI_Send:
1504 ``5+11*1`` because 5 is the startup cost and 1 is the cost per byte.
1505
1506 Note that the order of sections can be arbitrary; they will be ordered internally.
1507
1508 .. _cfg=smpi/or:
1509
1510 Inject constant times for MPI_Recv()
1511 ....................................
1512
1513 **Option** ``smpi/or``
1514
1515 The behavior and motivation for this configuration option is identical
1516 with :ref:`smpi/os <cfg=smpi/os>`, but for the function ``MPI_Recv()``.
1517
1518 .. _cfg=smpi/test:
1519 .. _cfg=smpi/grow-injected-times:
1520
1521 Inject constant times for MPI_Test
1522 ..................................
1523
1524 **Option** ``smpi/test`` **default:** 0.0001
1525
1526 By setting this option, you can control the amount of time a process
1527 sleeps when MPI_Test() is called; this is important, because SimGrid
1528 normally only advances the time while communication is happening and
1529 thus, MPI_Test will not add to the time, resulting in deadlock if it is
1530 used as a break-condition as in the following example:
1531
1532 .. code-block:: cpp
1533
1534    while(!flag) {
1535        MPI_Test(request, flag, status);
1536        ...
1537    }
1538
1539 To speed up execution, we use a counter to keep track of how often we
1540 checked if the handle is now valid or not. Hence, we actually
1541 use counter*SLEEP_TIME, that is, the time MPI_Test() causes the
1542 process to sleep increases linearly with the number of previously
1543 failed tests. This behavior can be disabled by setting
1544 ``smpi/grow-injected-times`` to **no**. This will also disable this
1545 behavior for MPI_Iprobe.
1546
1547 .. _cfg=smpi/shared-malloc:
1548 .. _cfg=smpi/shared-malloc-hugepage:
1549
1550 Factorize malloc()s
1551 ...................
1552
1553 **Option** ``smpi/shared-malloc`` **Possible values:** global (default), local
1554
1555 If your simulation consumes too much memory, you may want to modify
1556 your code so that the working areas are shared by all MPI ranks. For
1557 example, in a block-cyclic matrix multiplication, you will only
1558 allocate one set of blocks, and all processes will share them.
1559 Naturally, this will lead to very wrong results, but this will save a
1560 lot of memory. So this is still desirable for some studies. For more on
1561 the motivation for that feature, please refer to the `relevant section
1562 <https://simgrid.github.io/SMPI_CourseWare/topic_understanding_performance/matrixmultiplication>`_
1563 of the SMPI CourseWare (see Activity #2.2 of the pointed
1564 assignment). In practice, change the calls for malloc() and free() into
1565 SMPI_SHARED_MALLOC() and SMPI_SHARED_FREE().
1566
1567 SMPI provides two algorithms for this feature. The first one, called
1568 ``local``, allocates one block per call to SMPI_SHARED_MALLOC()
1569 (each call site gets its own block) ,and this block is shared
1570 among all MPI ranks.  This is implemented with the shm_* functions
1571 to create a new POSIX shared memory object (kept in RAM, in /dev/shm)
1572 for each shared block.
1573
1574 With the ``global`` algorithm, each call to SMPI_SHARED_MALLOC()
1575 returns a new address, but it only points to a shadow block: its memory
1576 area is mapped on a 1 MiB file on disk. If the returned block is of size
1577 N MiB, then the same file is mapped N times to cover the whole block.
1578 At the end, no matter how many times you call SMPI_SHARED_MALLOC, this will
1579 only consume 1 MiB in memory.
1580
1581 You can disable this behavior and come back to regular mallocs (for
1582 example for debugging purposes) using ``no`` as a value.
1583
1584 If you want to keep private some parts of the buffer, for instance if these
1585 parts are used by the application logic and should not be corrupted, you
1586 can use SMPI_PARTIAL_SHARED_MALLOC(size, offsets, offsets_count). For example:
1587
1588 .. code-block:: cpp
1589
1590    mem = SMPI_PARTIAL_SHARED_MALLOC(500, {27,42 , 100,200}, 2);
1591
1592 This will allocate 500 bytes to mem, such that mem[27..41] and
1593 mem[100..199] are shared while other area remain private.
1594
1595 Then, it can be deallocated by calling SMPI_SHARED_FREE(mem).
1596
1597 When smpi/shared-malloc:global is used, the memory consumption problem
1598 is solved, but it may induce too much load on the kernel's pages table.
1599 In this case, you should use huge pages so that the kernel creates only one
1600 entry per MB of malloced data instead of one entry per 4 kB.
1601 To activate this, you must mount a hugetlbfs on your system and allocate
1602 at least one huge page:
1603
1604 .. code-block:: console
1605
1606     $ mkdir /home/huge
1607     $ sudo mount none /home/huge -t hugetlbfs -o rw,mode=0777
1608     $ sudo sh -c 'echo 1 > /proc/sys/vm/nr_hugepages' # echo more if you need more
1609
1610 Then, you can pass the option
1611 ``--cfg=smpi/shared-malloc-hugepage:/home/huge`` to smpirun to
1612 actually activate the huge page support in shared mallocs.
1613
1614 .. _cfg=smpi/auto-shared-malloc-thresh:
1615
1616 Automatically share allocations
1617 ...............................
1618
1619 **Option** ``smpi/auto-shared-malloc-thresh:`` **Default:** 0 (false)
1620    This value in bytes represents the size above which all allocations
1621    will be "shared" by default (as if they were performed through
1622    SMPI_SHARED_MALLOC macros). Default = 0 = disabled feature.
1623    The value must be carefully chosen to only select data buffers which
1624    will not modify execution path or cause crash if their content is false.
1625    Option :ref:`cfg=smpi/display-allocs` can be used to locate the largest
1626    allocation detected in a run, and provide a good starting threshold.
1627    Note : malloc, calloc and free are overridden by smpicc/cxx by default.
1628    This can cause some troubles if codes are already overriding these. If this
1629    is the case, defining SMPI_NO_OVERRIDE_MALLOC in the compilation flags can
1630    help, but will make this feature unusable.
1631
1632 .. _cfg=smpi/wtime:
1633
1634 Inject constant times for MPI_Wtime, gettimeofday and clock_gettime
1635 ...................................................................
1636
1637 **Option** ``smpi/wtime`` **default:** 10 ns
1638
1639 This option controls the amount of (simulated) time spent in calls to
1640 MPI_Wtime(), gettimeofday() and clock_gettime(). If you set this value
1641 to 0, the simulated clock is not advanced in these calls, which leads
1642 to issues if your application contains such a loop:
1643
1644 .. code-block:: cpp
1645
1646    while(MPI_Wtime() < some_time_bound) {
1647         /* some tests, with no communication nor computation */
1648    }
1649
1650 When the option smpi/wtime is set to 0, the time advances only on
1651 communications and computations. So the previous code results in an
1652 infinite loop: the current [simulated] time will never reach
1653 ``some_time_bound``.  This infinite loop is avoided when that option
1654 is set to a small value, as it is by default since SimGrid v3.21.
1655
1656 Note that if your application does not contain any loop depending on
1657 the current time only, then setting this option to a non-zero value
1658 will slow down your simulations by a tiny bit: the simulation loop has
1659 to be broken out of and reset each time your code asks for the current time.
1660 If the simulation speed really matters to you, you can avoid this
1661 extra delay by setting smpi/wtime to 0.
1662
1663 .. _cfg=smpi/list-leaks:
1664
1665 Report leaked MPI objects
1666 .........................
1667
1668 **Option** ``smpi/list-leaks`` **default:** 0
1669
1670 This option controls whether to report leaked MPI objects.
1671 The parameter is the number of leaks to report.
1672
1673 Other Configurations
1674 --------------------
1675
1676 .. _cfg=debug/clean-atexit:
1677
1678 Cleanup at Termination
1679 ......................
1680
1681 **Option** ``debug/clean-atexit`` **default:** on
1682
1683 If your code is segfaulting during its finalization, it may help to
1684 disable this option to request that SimGrid not attempt any cleanups at
1685 the end of the simulation. Since the Unix process is ending anyway,
1686 the operating system will wipe it all.
1687
1688 .. _cfg=path:
1689
1690 Search Path
1691 ...........
1692
1693 **Option** ``path`` **default:** . (current dir)
1694
1695 It is possible to specify a list of directories to search in for the
1696 trace files (see :ref:`pf_trace`) by using this configuration
1697 item. To add several directory to the path, set the configuration
1698 item several times, as in ``--cfg=path:toto --cfg=path:tutu``
1699
1700 .. _cfg=debug/breakpoint:
1701
1702 Set a Breakpoint
1703 ................
1704
1705 **Option** ``debug/breakpoint`` **default:** unset
1706
1707 This configuration option sets a breakpoint: when the simulated clock
1708 reaches the given time, a SIGTRAP is raised.  This can be used to stop
1709 the execution and get a backtrace with a debugger.
1710
1711 It is also possible to set the breakpoint from inside the debugger, by
1712 writing in global variable simgrid::kernel::cfg_breakpoint. For example,
1713 with gdb:
1714
1715 .. code-block:: none
1716
1717    set variable simgrid::kernel::cfg_breakpoint = 3.1416
1718
1719 .. _cfg=debug/verbose-exit:
1720
1721 Behavior on Ctrl-C
1722 ..................
1723
1724 **Option** ``debug/verbose-exit`` **default:** on
1725
1726 By default, when Ctrl-C is pressed, the status of all existing actors
1727 is displayed before exiting the simulation. This is very useful to
1728 debug your code, but it can become troublesome if you have many
1729 actors. Set this configuration item to **off** to disable this
1730 feature.
1731
1732 .. _cfg=exception/cutpath:
1733
1734 Truncate local path from exception backtrace
1735 ............................................
1736
1737 **Option** ``exception/cutpath`` **default:** off
1738
1739 This configuration option is used to remove the path from the
1740 backtrace shown when an exception is thrown. This is mainly useful for
1741 the tests: the full file path would makes the tests non-reproducible because
1742 the paths of source files depend of the build settings. That would
1743 break most of the tests since their output is continually compared.
1744
1745 .. _logging_config:
1746
1747 Logging configuration
1748 ---------------------
1749
1750 As introduced in :ref:`outcome_logs`, the SimGrid logging mechanism allows to configure at runtime the messages that should be displayed and those that should be omitted. Each
1751 message produced in the code is given a category (denoting its topic) and a priority. Then at runtime, each category is given a threshold (only messages of priority higher than
1752 that threshold are displayed), a layout (deciding how the messages in this category are formatted), and an appender (deciding what to do with the message: either print on stderr or
1753 to a file).
1754
1755 This section explains how to configure this logging features. You can also refer to the documentation of the :ref:`programmer's interface <logging_prog>`, that allows to produce
1756 messages from your code.
1757
1758 Most of the time, the logging mechanism is configured at runtime using the ``--log`` command-line argument, even if you can also use :c:func:`xbt_log_control_set()` to control it from
1759 your program. To pass configure more than one setting, you can either pass several ``--log`` arguments, or separate your settings with spaces, that must be quoted accordingly. In
1760 practice, the following is equivalent to the above settings: ``--log=root.thresh:error --log=s4u_host.thresh:debug``.
1761
1762 If you want to specify more than one setting, you can either pass several ``--log`` argument to your program as above, or separate them with spaces. In this case, you want to quote
1763 your settings, as in ``--log="root.thresh:error s4u_host.thresh:debug"``. The parameters are interpreted in order, from left to right.
1764
1765
1766 Threshold configuration
1767 .......................
1768
1769 The keyword ``threshold`` controls which logging event will get displayed in a given category. For example, ``--log=root.threshold:debug`` displays *every* message produced in the
1770 ``root`` category and its subcategories (i.e., every message produced -- this is *extremely* verbose), while ``--log=root.thres:critical`` turns almost everything off. As you can
1771 see, ``threshold`` can be abbreviated here.
1772
1773 Existing thresholds:
1774
1775  - ``trace`` some functions display a message at this level when entering or returning
1776  - ``debug`` output that is mostly useful when debugging the corresponding module.
1777  - ``verbose`` verbose output that is only mildly interesting and can easily be ignored
1778  - ``info`` usual output (this is the default threshold of all categories)
1779  - ``warning`` minor issue encountered
1780  - ``error`` issue encountered
1781  - ``critical`` major issue encountered, such as assertions failures
1782
1783 .. _log/fmt:
1784
1785 Format configuration
1786 ....................
1787
1788 The keyword ``fmt`` controls the layout (the format) of a logging category. For example, ``--log=root.fmt:%m`` reduces the output to the user-message only, removing any decoration such
1789 as the date, or the actor ID, everything. Existing format directives:
1790
1791  - %%: the % char
1792  - %n: line separator (LOG4J compatible)
1793  - %e: plain old space (SimGrid extension)
1794
1795  - %m: user-provided message
1796
1797  - %c: Category name (LOG4J compatible)
1798  - %p: Priority name (LOG4J compatible)
1799
1800  - %h: Hostname (SimGrid extension)
1801  - %a: Actor name (SimGrid extension -- note that with SMPI this is the integer value of the process rank)
1802  - %i: Actor PID (SimGrid extension -- this is a 'i' as in 'i'dea)
1803  - %t: Thread "name" (LOG4J compatible -- actually the address of the thread in memory)
1804
1805  - %F: file name where the log event was raised (LOG4J compatible)
1806  - %l: location where the log event was raised (LOG4J compatible, like '%%F:%%L' -- this is a l as in 'l'etter)
1807  - %L: line number where the log event was raised (LOG4J compatible)
1808  - %M: function name (LOG4J compatible -- called method name here of course).
1809
1810  - %d: date (UNIX-like epoch)
1811  - %r: application age (time elapsed since the beginning of the application)
1812
1813
1814 ``--log=root.fmt:'[%h:%a:(%i) %r] %l: %m%n'`` gives you the default layout used for info messages while ``--log=root.fmt:'[%h:%a:(%i) %r] %l: [%c/%p] %m%n'`` gives you the default
1815 layout for the other priorities (it adds the source code location). Also, the actor identification is omitted by the default layout for the messages coming directly from the
1816 SimGrid kernel, so info messages are formatted with ``[%r] [%c/%p] %m%n`` in this case. When specifying the layout manually, such distinctions are currently impossible, and the
1817 provided layout is used for every messages.
1818
1819 As with printf, you can specify the precision and width of the fields. For example, ``%.4r`` limits the date precision to four digits while ``%15h`` limits the host name to at most
1820 15 chars.
1821
1822
1823 If you want to have spaces in your log format, you should protect it. Otherwise, SimGrid will consider that this is a space-separated list of several parameters. But you should
1824 also protect it from the shell that also splits command line arguments on spaces. At the end, you should use something such as ``--log="'root.fmt:%l: [%p/%c]: %m%n'"``.
1825 Another option is to use the ``%e`` directive for spaces, as in ``--log=root.fmt:%l:%e[%p/%c]:%e%m%n``.
1826
1827 Category appender
1828 .................
1829
1830 The keyword ``app`` controls the appended of a logging category. For example ``--log=root.app:file:mylogfile`` redirects every output to the file ``mylogfile``.
1831
1832 With the ``splitfile`` appender, a new file is created when the size of the output reaches the specified size. The format is ``--log=root.app:splitfile:<size>:<file name>``. For
1833 example, ``--log=root.app:splitfile:500:mylog_%`` creates log files of at most 500 bytes, using the names ``mylog_0``, ``mylog_1``, ``mylog_2``, etc.
1834
1835 The ``rollfile`` appender uses one file only, but the file is emptied and recreated when its size reaches the specified maximum. For example, ``--log=root.app:rollfile:500:mylog``
1836 ensures that the log file ``mylog`` will never overpass 500 bytes in size.
1837
1838 Any appender setup this way have its own layout format, that you may change afterward. When specifying a new appender, its additivity is set to false to prevent log event displayed
1839 by this appender to "leak" to any other appender higher in the hierarchy. You can naturally change that if you want your messages to be displayed twice.
1840
1841 Category additivity
1842 ...................
1843
1844 The keyword ``add`` controls the additivity of a logging category. By default, the messages are only passed one appender only: the more specific, i.e. the first one found when
1845 climbing the tree from the category in which they were produced. In Log4J parlance, it is said that the default additivity of appenders is false. If you change this setting to
1846 ``on`` (or ``yes`` or ``1``), the produced messages will also be passed to the upper appender.
1847
1848 Let's consider a more complex example: ``--log="root.app:file:all.log s4u.app:file:iface.log xbt.app:file:xbt.log xbt.add:yes``. Here, the logging of s4u will be sent to the
1849 ``iface.log`` file; the logging of the xbt toolbox will be sent to both the ``xbt.log`` file and the ``all.log`` file (because xbt additivity was enabled); and every other loggings
1850 will only be sent to ``all.log``.
1851
1852 Other options
1853 .............
1854
1855 ``--help-logs`` displays a complete help message about logging in SimGrid.
1856
1857 ``--help-log-categories`` displays the actual hierarchy of log categories for this binary.
1858
1859 ``--log=no_loc`` hides the source locations (file names and line numbers) from the messages. This is useful to make tests reproducible.
1860
1861
1862 .. |br| raw:: html
1863
1864    <br />