Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add some s4u::Link setters, and doc improvements
[simgrid.git] / examples / README.rst
1 .. S4U (Simgrid for you) is the modern interface of SimGrid, which new project should use.
2 ..
3 .. This file follows the ReStructured syntax to be included in the
4 .. documentation, but it should remain readable directly.
5
6
7 Examples
8 ********
9
10 SimGrid comes with an extensive set of examples, documented on this
11 page. Most of them only demonstrate one single feature, with some
12 larger examplars listed below. 
13
14 The C++ examples can be found under examples/s4u while python examples
15 are in examples/python. Each such directory contains the source code (also listed
16 from this page), and the so-called tesh file containing how to call
17 the binary obtained by compiling this example and also the expected
18 output. Tesh files are used to turn each of our examples into an
19 integration test. Some examples also contain other files, on need.
20
21 A good way to bootstrap your own project is to copy and combine some
22 of the provided examples to constitute the skeleton of what you plan
23 to simulate.
24
25 .. _s4u_ex_actors:
26
27 ===========================
28 Actors: the Active Entities
29 ===========================
30
31 Starting and Stopping Actors
32 ---------------------------
33
34   - **Creating actors:**
35     Most actors are started from the deployment XML file, because this
36     is a :ref:`better scientific habit <howto_science>`, but you can
37     also create them directly from your code.
38
39     .. tabs::
40     
41        .. example-tab:: examples/s4u/actor-create/s4u-actor-create.cpp
42        
43           You create actors either:
44              
45           - Directly with :cpp:func:`simgrid::s4u::Actor::create`
46           - From XML with :cpp:func:`simgrid::s4u::Engine::register_actor` (if your actor is a class)
47             or :cpp:func:`simgrid::s4u::Engine::register_function` (if your actor is a function)
48             and then :cpp:func:`simgrid::s4u::Engine::load_deployment`
49              
50        .. example-tab:: examples/python/actor-create/actor-create.py
51        
52           You create actors either:
53             
54           - Directly with :py:func:`simgrid.Actor.create()`
55           - From XML with :py:func:`simgrid.Engine.register_actor()` and then :py:func:`simgrid.Engine.load_deployment()`
56              
57        .. example-tab:: examples/c/actor-create/actor-create.c
58        
59           You create actors either:
60             
61           - Directly with :cpp:func:`sg_actor_create()` followed by :cpp:func:`sg_actor_start`.
62           - From XML with :cpp:func:`simgrid_register_function` and then :cpp:func:`simgrid_load_deployment`.
63              
64        .. example-tab:: examples/python/actor-create/actor-create_d.xml
65        
66           The following file is used in both C++ and Python.
67
68   - **React to the end of actors:** You can attach callbacks to the end of
69     actors. There is several ways of doing so, depending on whether you want to
70     attach your callback to a given actor and on how you define the end of a
71     given actor. User code probably want to react to the termination of an actor
72     while some plugins want to react to the destruction (memory collection) of
73     actors.
74
75     .. tabs::
76     
77        .. example-tab:: examples/s4u/actor-exiting/s4u-actor-exiting.cpp
78
79           This example shows how to attach a callback to:
80
81           - the end of a specific actor: :cpp:func:`simgrid::s4u::this_actor::on_exit()`
82           - the end of any actor: :cpp:member:`simgrid::s4u::Actor::on_termination()`
83           - the destruction of any actor: :cpp:member:`simgrid::s4u::Actor::on_destruction()`
84
85        .. example-tab:: examples/c/actor-exiting/actor-exiting.c
86
87           This example shows how to attach a callback to the end of a specific actor with 
88           :cpp:func:`sg_actor_on_exit()`.
89
90   - **Kill actors:**
91     Actors can forcefully stop other actors.
92
93     .. tabs::
94
95        .. example-tab:: examples/s4u/actor-kill/s4u-actor-kill.cpp
96
97           See also :cpp:func:`void simgrid::s4u::Actor::kill(void)`, :cpp:func:`void simgrid::s4u::Actor::kill_all()`,
98           :cpp:func:`simgrid::s4u::this_actor::exit`, :cpp:func:`simgrid::s4u::this_actor::on_exit`.
99
100        .. example-tab:: examples/python/actor-kill/actor-kill.py
101
102           See also :py:func:`simgrid.Actor.kill`, :py:func:`simgrid.Actor.kill_all`, :py:func:`simgrid.this_actor.exit`,
103           :py:func:`simgrid.this_actor.on_exit`.
104
105        .. example-tab:: examples/c/actor-kill/actor-kill.c
106
107           See also :cpp:func:`sg_actor_kill`, :cpp:func:`sg_actor_kill_all`, :cpp:func:`sg_actor_exit`, :cpp:func:`sg_actor_on_exit`.
108
109   - **Controlling the actor life cycle from the XML:**
110     You can specify a start time and a kill time in the deployment file.
111
112     .. tabs::
113
114        .. example-tab:: examples/s4u/actor-lifetime/s4u-actor-lifetime.cpp
115
116           This file is not really interesting: the important matter is in the XML file.
117
118        .. example-tab:: examples/s4u/actor-lifetime/s4u-actor-lifetime_d.xml
119
120           This demonstrates the ``start_time`` and ``kill_time`` attribute of the :ref:`pf_tag_actor` tag.
121
122        .. example-tab:: examples/python/actor-lifetime/actor-lifetime.py
123
124           This file is not really interesting: the important matter is in the XML file.
125
126       .. example-tab:: examples/c/actor-lifetime/actor-lifetime.c
127
128           This file is not really interesting: the important matter is in the XML file.
129
130   - **Daemonize actors:**
131     Some actors may be intended to simulate daemons that run in background. This example show how to transform a regular
132     actor into a daemon that will be automatically killed once the simulation is over.
133     
134     .. tabs::
135
136        .. example-tab:: examples/s4u/actor-daemon/s4u-actor-daemon.cpp
137
138           See also :cpp:func:`simgrid::s4u::Actor::daemonize()` and :cpp:func:`simgrid::s4u::Actor::is_daemon()`.
139
140        .. example-tab:: examples/python/actor-daemon/actor-daemon.py
141
142           See also :py:func:`simgrid.Actor.daemonize()` and :py:func:`simgrid.Actor.is_daemon()`.
143
144        .. example-tab:: examples/c/actor-daemon/actor-daemon.c
145
146           See also :cpp:func:`sg_actor_daemonize` and :cpp:func:`sg_actor_is_daemon`.
147
148   - **Specify the stack size to use**
149     The stack size can be specified by default on the command line,
150     globally by changing the configuration with :cpp:func:`simgrid::s4u::Engine::set_config`,
151     or for a specific actor using :cpp:func:`simgrid::s4u::Actor::set_stacksize` before its start.
152     
153     .. tabs::
154
155        .. example-tab:: examples/s4u/actor-stacksize/s4u-actor-stacksize.cpp
156
157        .. example-tab:: examples/c/actor-stacksize/actor-stacksize.c
158
159 Inter-Actors Interactions
160 -------------------------
161
162 See also the examples on :ref:`inter-actors communications
163 <s4u_ex_communication>` and the ones on :ref:`classical
164 synchronization objects <s4u_ex_IPC>`.
165
166   - **Suspend and Resume actors:**    
167     Actors can be suspended and resumed during their executions.
168
169     .. tabs::
170
171        .. example-tab:: examples/s4u/actor-suspend/s4u-actor-suspend.cpp
172
173           See also :cpp:func:`simgrid::s4u::this_actor::suspend()`,
174           :cpp:func:`simgrid::s4u::Actor::suspend()`, :cpp:func:`simgrid::s4u::Actor::resume()`, and
175           :cpp:func:`simgrid::s4u::Actor::is_suspended()`.
176
177        .. example-tab:: examples/python/actor-suspend/actor-suspend.py
178
179           See also :py:func:`simgrid.this_actor.suspend()`,
180           :py:func:`simgrid.Actor.suspend()`, :py:func:`simgrid.Actor.resume()`, and
181           :py:func:`simgrid.Actor.is_suspended()`.
182
183        .. example-tab:: examples/c/actor-suspend/actor-suspend.c
184
185           See also :cpp:func:`sg_actor_suspend()`, :cpp:func:`sg_actor_resume()`, and 
186           :cpp:func:`sg_actor_is_suspended()`.
187
188   - **Migrating Actors:**
189     Actors can move or be moved from a host to another very easily. It amount to setting them on a new host.
190
191     .. tabs::
192
193        .. example-tab:: examples/s4u/actor-migrate/s4u-actor-migrate.cpp
194
195           See also :cpp:func:`simgrid::s4u::this_actor::set_host()` and :cpp:func:`simgrid::s4u::Actor::set_host()`.
196
197        .. example-tab:: examples/python/actor-migrate/actor-migrate.py
198
199           See also :py:func:`simgrid.this_actor.set_host()` and :py:func:`simgrid.Actor.set_host()`.
200
201        .. example-tab:: examples/c/actor-migrate/actor-migrate.c
202
203           See also :cpp:func:`sg_actor_set_host()`.
204
205   - **Waiting for the termination of an actor:** (joining on it)
206     You can block the current actor until the end of another actor.
207
208     .. tabs::
209
210        .. example-tab:: examples/s4u/actor-join/s4u-actor-join.cpp
211
212           See also :cpp:func:`simgrid::s4u::Actor::join()`.
213
214        .. example-tab:: examples/python/actor-join/actor-join.py
215
216           See also :py:func:`simgrid.Actor.join()`.
217
218        .. example-tab:: examples/c/actor-join/actor-join.c
219
220           See also :cpp:func:`sg_actor_join`.
221
222   - **Yielding to other actors**.
223     The ```yield()``` function interrupts the execution of the current
224     actor, leaving a chance to the other actors that are ready to run
225     at this timestamp.
226
227     .. tabs::
228
229        .. example-tab:: examples/s4u/actor-yield/s4u-actor-yield.cpp
230
231           See also :cpp:func:`simgrid::s4u::this_actor::yield()`.
232
233        .. example-tab:: examples/python/actor-yield/actor-yield.py
234
235           See also :py:func:`simgrid.this_actor.yield_()`.
236
237        .. example-tab:: examples/c/actor-yield/actor-yield.c
238
239           See also :cpp:func:`sg_actor_yield()`.
240
241 Traces Replay as a Workload
242 ---------------------------
243
244 This section details how to run trace-driven simulations. It is very
245 handy when you want to test an algorithm or protocol that only react
246 to external events. For example, many P2P protocols react to user
247 requests, but do nothing if there is no such event.
248
249 In such situations, you should write your protocol in C++, and separate
250 the workload that you want to play onto your protocol in a separate
251 text file. Declare a function handling each type of the events in your
252 trace, register them using :cpp:func:`xbt_replay_action_register()` in
253 your main, and then run the simulation.
254
255 Then, you can either have one trace file containing all your events,
256 or a file per simulated process: the former may be easier to work
257 with, but the second is more efficient on very large traces. Check
258 also the tesh files in the example directories for details.
259
260   - **Communication replay:**
261     Presents a set of event handlers reproducing classical communication
262     primitives (asynchronous send/receive at the moment).
263
264     .. tabs::
265
266        .. example-tab:: examples/s4u/replay-comm/s4u-replay-comm.cpp
267
268   - **I/O replay:**
269     Presents a set of event handlers reproducing classical I/O
270     primitives (open, read, close).
271
272     .. tabs::
273
274        .. example-tab:: examples/s4u/replay-io/s4u-replay-io.cpp
275
276 ==========================
277 Activities: what Actors do
278 ==========================
279
280 .. _s4u_ex_communication:
281
282 Communications on the Network
283 -----------------------------
284
285  - **Basic asynchronous communications:**
286    Illustrates how to have non-blocking communications, that are
287    communications running in the background leaving the process free
288    to do something else during their completion. 
289
290    .. tabs::
291
292       .. example-tab:: examples/s4u/comm-wait/s4u-comm-wait.cpp
293
294          See also :cpp:func:`simgrid::s4u::Mailbox::put_async()` and :cpp:func:`simgrid::s4u::Comm::wait()`.
295
296       .. example-tab:: examples/python/comm-wait/comm-wait.py
297
298          See also :py:func:`simgrid.Mailbox.put_async()` and :py:func:`simgrid.Comm.wait()`.
299
300       .. example-tab:: examples/c/comm-wait/comm-wait.c
301
302          See also :cpp:func:`sg_mailbox_put_async()` and :cpp:func:`sg_comm__wait()`.
303
304  - **Suspending communications:**
305    The ``suspend()`` and ``resume()`` functions allow to block the
306    progression of a given communication for a while and then unblock it.
307    ``is_suspended()`` can be used to retrieve whether the activity is
308    currently blocked or not.
309    
310    .. tabs::
311
312       .. example-tab:: examples/s4u/comm-suspend/s4u-comm-suspend.cpp
313
314          See also :cpp:func:`simgrid::s4u::Activity::suspend()`
315          :cpp:func:`simgrid::s4u::Activity::resume()` and
316          :cpp:func:`simgrid::s4u::Activity::is_suspended()`.
317
318          
319  - **Waiting for all communications in a set:**
320    The ``wait_all()`` function is useful when you want to block until
321    all activities in a given set have completed. 
322    
323    .. tabs::
324
325       .. example-tab:: examples/s4u/comm-waitall/s4u-comm-waitall.cpp
326
327          See also :cpp:func:`simgrid::s4u::Comm::wait_all()`.
328
329       .. example-tab:: examples/python/comm-waitall/comm-waitall.py
330
331          See also :py:func:`simgrid.Comm.wait_all()`.
332
333       .. example-tab:: examples/c/comm-waitall/comm-waitall.c
334
335          See also :cpp:func:`sg_comm_wait_all()`.
336
337  - **Waiting for the first completed communication in a set:**
338    The ``wait_any()`` function is useful
339    when you want to block until one activity of the set completes, no
340    matter which terminates first.
341    
342    .. tabs::
343
344       .. example-tab:: examples/s4u/comm-waitany/s4u-comm-waitany.cpp
345
346          See also :cpp:func:`simgrid::s4u::Comm::wait_any()`.
347
348       .. example-tab:: examples/python/comm-waitany/comm-waitany.py
349
350          See also :py:func:`simgrid.Comm.wait_any()`.
351          
352       .. example-tab:: examples/c/comm-waitany/comm-waitany.c
353
354          See also :cpp:func:`sg_comm_wait_any`.
355      
356 .. _s4u_ex_execution:
357
358 Executions on the CPU
359 ---------------------
360
361   - **Basic execution:**
362     The computations done in your program are not reported to the
363     simulated world, unless you explicitly request the simulator to pause
364     the actor until a given amount of flops gets computed on its simulated
365     host. Some executions can be given an higher priority so that they
366     get more resources.
367
368     .. tabs::
369
370        .. example-tab:: examples/s4u/exec-basic/s4u-exec-basic.cpp
371
372           See also :cpp:func:`void simgrid::s4u::this_actor::execute(double)`
373           and :cpp:func:`void simgrid::s4u::this_actor::execute(double, double)`.
374
375        .. example-tab:: examples/python/exec-basic/exec-basic.py
376
377           See also :py:func:`simgrid.this_actor.execute()`.
378
379        .. example-tab:: examples/c/exec-basic/exec-basic.c
380
381           See also :cpp:func:`void sg_actor_execute(double)`
382           and :cpp:func:`void sg_actor_execute_with_priority(double, double)`.
383
384   - **Asynchronous execution:**
385     You can start asynchronous executions, just like you would fire
386     background threads.
387
388     .. tabs::
389
390        .. example-tab:: examples/s4u/exec-async/s4u-exec-async.cpp
391
392           See also :cpp:func:`simgrid::s4u::this_actor::exec_init()`,
393           :cpp:func:`simgrid::s4u::Activity::start()`,
394           :cpp:func:`simgrid::s4u::Activity::wait()`,
395           :cpp:func:`simgrid::s4u::Activity::get_remaining()`,
396           :cpp:func:`simgrid::s4u::Exec::get_remaining_ratio()`,
397           :cpp:func:`simgrid::s4u::this_actor::exec_async()` and
398           :cpp:func:`simgrid::s4u::Activity::cancel()`.
399
400        .. example-tab:: examples/python/exec-async/exec-async.py
401     
402           See also :py:func:`simgrid.this_actor::exec_init()`,
403           :py:func:`simgrid.Activity::start()`,
404           :py:func:`simgrid.Activity.wait()`,
405           :py:func:`simgrid.Activity.get_remaining()`,
406           :py:func:`simgrid.Exec.get_remaining_ratio()`,
407           :py:func:`simgrid.this_actor.exec_async()` and
408           :py:func:`simgrid.Activity.cancel()`.
409  
410        .. example-tab:: examples/c/exec-async/exec-async.c
411
412           See also :cpp:func:`sg_actor_exec_init()`,
413           :cpp:func:`sg_exec_start()`,
414           :cpp:func:`sg_exec_wait()`,
415           :cpp:func:`sg_exec_get_remaining()`,
416           :cpp:func:`sg_exec_get_remaining_ratio()`,
417           :cpp:func:`sg_actor_exec_async()` and
418           :cpp:func:`sg_exec_cancel()`,
419           
420   - **Remote execution:**
421     You can start executions on remote hosts, or even change the host
422     on which they occur during their execution.
423
424     .. tabs::
425
426        .. example-tab:: examples/s4u/exec-remote/s4u-exec-remote.cpp
427
428           See also :cpp:func:`simgrid::s4u::Exec::set_host()`.
429
430        .. example-tab:: examples/python/exec-remote/exec-remote.py
431
432           See also :py:func:`simgrid.Exec.set_host()`.
433
434        .. example-tab:: examples/c/exec-remote/exec-remote.c
435
436           See also :cpp:func:`sg_exec_set_host()`.
437
438   - **Parallel executions:**
439     These objects are convenient abstractions of parallel
440     computational kernels that span over several machines, such as a
441     PDGEM and the other ScaLAPACK routines. Note that this only works
442     with the "ptask_L07" host model (``--cfg=host/model:ptask_L07``).
443
444     .. tabs::
445
446        .. example-tab:: examples/s4u/exec-ptask/s4u-exec-ptask.cpp
447     
448           See also :cpp:func:`simgrid::s4u::this_actor::parallel_execute()`.
449
450   - **Using Pstates on a host:**
451     This example shows how define a set of pstates in the XML. The current pstate
452     of an host can then be accessed and changed from the program.
453
454     .. tabs::
455
456        .. example-tab:: examples/s4u/exec-dvfs/s4u-exec-dvfs.cpp
457
458           See also :cpp:func:`simgrid::s4u::Host::get_pstate_speed` and :cpp:func:`simgrid::s4u::Host::set_pstate`.
459
460        .. example-tab:: examples/c/exec-dvfs/exec-dvfs.c
461
462           See also :cpp:func:`sg_host_get_pstate_speed` and :cpp:func:`sg_host_set_pstate`.
463
464        .. example-tab:: examples/python/exec-dvfs/exec-dvfs.py
465
466           See also :py:func:`Host.get_pstate_speed` and :py:func:`Host.set_pstate`.
467
468        .. example-tab:: examples/platforms/energy_platform.xml
469
470 .. _s4u_ex_disk_io:
471
472 I/O on Disks and Files
473 ----------------------
474
475 SimGrid provides two levels of abstraction to interact with the
476 simulated disks. At the simplest level, you simply create read and
477 write actions on the disk resources.
478
479   - **Access to raw disk devices:**
480     This example illustrates how to simply read and write data on a
481     simulated disk resource.
482
483     .. tabs::
484
485        .. example-tab:: examples/s4u/io-disk-raw/s4u-io-disk-raw.cpp
486
487        .. example-tab:: examples/c/io-disk-raw/io-disk-raw.c
488
489        .. example-tab:: examples/platforms/hosts_with_disks.xml
490
491           This shows how to declare disks in XML.
492
493 The FileSystem plugin provides a more detailed view, with the
494 classical operations over files: open, move, unlink, and of course
495 read and write. The file and disk sizes are also dealt with and can
496 result in short reads and short write, as in reality.
497
498   - **File Management:**
499     This example illustrates the use of operations on files
500     (read, write, seek, tell, unlink, etc).
501
502     .. tabs::
503
504        .. example-tab:: examples/s4u/io-file-system/s4u-io-file-system.cpp
505
506   - **Remote I/O:**
507     I/O operations on files can also be done in a remote fashion, 
508     i.e. when the accessed disk is not mounted on the caller's host.
509
510     .. tabs::
511
512        .. example-tab:: examples/s4u/io-file-remote/s4u-io-file-remote.cpp
513
514        .. example-tab:: examples/c/io-file-remote/io-file-remote.c
515
516 .. _s4u_ex_IPC:
517
518 Classical synchronization objects
519 ---------------------------------
520
521  - **Barrier:**
522    Shows how to use :cpp:type:`simgrid::s4u::Barrier` synchronization objects.
523
524    .. tabs::
525
526       .. example-tab:: examples/s4u/synchro-barrier/s4u-synchro-barrier.cpp
527
528  - **Condition variable:**
529    Shows how to use :cpp:type:`simgrid::s4u::ConditionVariable` synchronization objects.
530
531    .. tabs::
532
533       .. example-tab:: examples/s4u/synchro-condition-variable/s4u-synchro-condition-variable.cpp
534
535  - **Mutex:**
536    Shows how to use :cpp:type:`simgrid::s4u::Mutex` synchronization objects.
537
538    .. tabs::
539
540       .. example-tab:: examples/s4u/synchro-mutex/s4u-synchro-mutex.cpp
541
542  - **Semaphore:**
543    Shows how to use :cpp:type:`simgrid::s4u::Semaphore` synchronization objects.
544
545    .. tabs::
546
547       .. example-tab:: examples/s4u/synchro-semaphore/s4u-synchro-semaphore.cpp
548
549 =============================
550 Interacting with the Platform
551 =============================
552
553  - **User-defined properties:**
554    You can attach arbitrary information to most platform elements from
555    the XML file, and then interact with these values from your
556    program. Note that the changes are not written permanently on disk,
557    in the XML file nor anywhere else. They only last until the end of
558    your simulation.
559
560    .. tabs::
561
562       .. example-tab:: examples/s4u/platform-properties/s4u-platform-properties.cpp
563
564          - :cpp:func:`simgrid::s4u::Actor::get_property()` and :cpp:func:`simgrid::s4u::Actor::set_property()`
565          - :cpp:func:`simgrid::s4u::Host::get_property()` and :cpp:func:`simgrid::s4u::Host::set_property()`
566          - :cpp:func:`simgrid::s4u::Link::get_property()` and :cpp:func:`simgrid::s4u::Link::set_property()`
567          - :cpp:func:`simgrid::s4u::NetZone::get_property()` and :cpp:func:`simgrid::s4u::NetZone::set_property()`
568
569       .. example-tab:: examples/c/platform-properties/platform-properties.c
570
571          - :cpp:func:`sg_actor_get_property()` and :cpp:func:`sg_actor_set_property()`
572          - :cpp:func:`sg_host_get_property()` and :cpp:func:sg_host_set_property()`
573          - :cpp:func:`sg_link_get_property()` and :cpp:func:`sg_link_set_property()`
574          - :cpp:func:`sg_link_get_property()` and :cpp:func:`sg_link_set_property()`
575
576       .. group-tab:: XML
577
578          **Deployment file:**
579
580          .. showfile:: examples/s4u/platform-properties/s4u-platform-properties_d.xml
581             :language: xml
582
583          |br|
584          **Platform file:**
585
586          .. showfile:: examples/platforms/prop.xml
587             :language: xml
588
589  - **Retrieving the netzones matching a given criteria:**
590    Shows how to filter the cluster netzones.
591
592    .. tabs::
593
594       .. example-tab:: examples/s4u/routing-get-clusters/s4u-routing-get-clusters.cpp
595
596  - **Retrieving the list of hosts matching a given criteria:**
597    Shows how to filter the actors that match a given criteria.
598
599    .. tabs::
600
601       .. example-tab:: examples/s4u/engine-filtering/s4u-engine-filtering.cpp
602
603  - **Specifying state profiles:** shows how to specify when the
604    resources must be turned off and on again, and how to react to such
605    failures in your code. See also :ref:`howto_churn`.
606
607    .. tabs::
608
609       .. example-tab:: examples/s4u/platform-failures/s4u-platform-failures.cpp
610
611       .. example-tab:: examples/c/platform-failures/platform-failures.c
612
613       .. group-tab:: XML
614
615          .. showfile:: examples/platforms/small_platform_failures.xml
616             :language: xml
617
618          .. showfile:: examples/platforms/profiles/jupiter_state.profile
619
620          .. showfile:: examples/platforms/profiles/bourassa_state.profile
621
622          .. showfile:: examples/platforms/profiles/fafard_state.profile
623
624  - **Specifying speed profiles:** shows how to specify an external
625    load to resources, variating their peak speed over time.
626
627    .. tabs::
628
629       .. example-tab:: examples/s4u/platform-profile/s4u-platform-profile.cpp
630
631       .. group-tab:: XML  
632
633          .. showfile:: examples/platforms/small_platform_profile.xml
634             :language: xml
635
636          .. showfile:: examples/platforms/profiles/jupiter_speed.profile
637
638          .. showfile:: examples/platforms/profiles/link1_bandwidth.profile
639
640          .. showfile:: examples/platforms/profiles/link1_latency.profile
641
642 =================
643 Energy Simulation
644 =================
645
646   - **Describing the energy profiles in the platform:**
647     This platform file contains the energy profile of each links and
648     hosts, which is necessary to get energy consumption predictions.
649     As usual, you should not trust our example, and you should strive
650     to double-check that your instantiation matches your target platform.
651
652     .. tabs::
653
654        .. example-tab:: examples/platforms/energy_platform.xml
655
656   - **Consumption due to the CPU:** 
657     This example shows how to retrieve the amount of energy consumed
658     by the CPU during computations, and the impact of the pstate.
659
660     .. tabs::
661
662        .. example-tab:: examples/s4u/energy-exec/s4u-energy-exec.cpp
663
664        .. example-tab:: examples/c/energy-exec/energy-exec.c
665
666   - **Consumption due to the network:**
667     This example shows how to retrieve and display the energy consumed
668     by the network during communications.
669
670     .. tabs::
671
672        .. example-tab:: examples/s4u/energy-link/s4u-energy-link.cpp
673
674   - **Modeling the shutdown and boot of hosts:**
675     Simple example of model of model for the energy consumption during
676     the host boot and shutdown periods.
677
678     .. tabs::
679
680        .. example-tab:: examples/s4u/energy-boot/platform_boot.xml
681
682        .. example-tab:: examples/s4u/energy-boot/s4u-energy-boot.cpp
683
684 =======================
685 Tracing and Visualizing
686 =======================
687
688 Tracing can be activated by various configuration options which
689 are illustrated in these example. See also the 
690 :ref:`full list of options related to tracing <tracing_tracing_options>`.
691
692 It is interesting to run the process-create example with the following
693 options to see the task executions:
694
695   - **Platform Tracing:**
696     This program is a toy example just loading the platform, so that
697     you can play with the platform visualization. Recommended options:
698     ``--cfg=tracing:yes --cfg=tracing/categorized:yes``
699
700     .. tabs::
701
702        .. example-tab:: examples/s4u/trace-platform/s4u-trace-platform.cpp
703
704 ========================
705 Larger SimGrid Examplars
706 ========================
707
708 This section contains application examples that are somewhat larger
709 than the previous examples.
710
711   - **Ping Pong:**
712     This simple example just sends one message back and forth.
713     The tesh file laying in the directory show how to start the simulator binary, highlighting how to pass options to 
714     the simulators (as detailed in Section :ref:`options`).
715
716     .. tabs::
717
718        .. example-tab:: examples/s4u/app-pingpong/s4u-app-pingpong.cpp
719
720        .. example-tab:: examples/c/app-pingpong/app-pingpong.c
721
722   - **Token ring:**
723     Shows how to implement a classical communication pattern, where a
724     token is exchanged along a ring to reach every participant.
725
726     .. tabs::
727
728        .. example-tab:: examples/s4u/app-token-ring/s4u-app-token-ring.cpp
729
730        .. example-tab:: examples/c/app-token-ring/app-token-ring.c
731
732   - **Master Workers:**
733     Another good old example, where one Master process has a bunch of task to dispatch to a set of several Worker 
734     processes.
735
736     .. tabs::
737
738        .. group-tab:: C++
739
740           This example comes in two equivalent variants, one where the actors
741           are specified as simple functions (which is easier to understand for
742           newcomers) and one where the actors are specified as classes (which is
743           more powerful for the users wanting to build their own projects upon
744           the example).
745
746           .. showfile:: examples/s4u/app-masterworkers/s4u-app-masterworkers-class.cpp
747              :language: cpp
748
749           .. showfile:: examples/s4u/app-masterworkers/s4u-app-masterworkers-fun.cpp
750              :language: cpp
751
752        .. group-tab:: C
753
754           .. showfile:: examples/c/app-masterworker/app-masterworker.c
755              :language: cpp
756     
757 Data diffusion
758 --------------
759
760   - **Bit Torrent:** 
761     Classical protocol for Peer-to-Peer data diffusion.
762
763     .. tabs::
764
765        .. group-tab:: C++
766
767           .. showfile:: examples/s4u/app-bittorrent/s4u-bittorrent.cpp
768              :language: cpp
769
770           .. showfile:: examples/s4u/app-bittorrent/s4u-peer.cpp
771              :language: cpp
772
773           .. showfile:: examples/s4u/app-bittorrent/s4u-tracker.cpp
774              :language: cpp
775
776        .. group-tab:: C
777
778           .. showfile:: examples/c/app-bittorrent/app-bittorrent.c
779              :language: cpp
780
781           .. showfile:: examples/c/app-bittorrent/bittorrent-peer.c
782              :language: cpp
783
784           .. showfile:: examples/c/app-bittorrent/tracker.c
785              :language: cpp
786
787   - **Chained Send:** 
788     Data broadcast over a ring of processes.
789
790     .. tabs::
791
792        .. example-tab:: examples/s4u/app-chainsend/s4u-app-chainsend.cpp
793
794        .. group-tab:: C
795
796           .. showfile:: examples/c/app-chainsend/chainsend.c
797              :language: c
798
799           .. showfile:: examples/c/app-chainsend/broadcaster.c
800              :language: c
801
802           .. showfile:: examples/c/app-chainsend/peer.c
803              :language: c
804
805 Distributed Hash Tables (DHT)
806 -----------------------------
807
808   - **Chord Protocol** 
809     One of the most famous DHT protocol.
810
811     .. tabs::
812
813        .. group-tab:: C++
814
815           .. showfile:: examples/s4u/dht-chord/s4u-dht-chord.cpp
816              :language: cpp
817
818           .. showfile:: examples/s4u/dht-chord/s4u-dht-chord-node.cpp
819              :language: cpp
820
821   - **Kademlia**
822     Another well-known DHT protocol.
823
824     .. tabs::
825
826        .. group-tab:: C++
827
828           .. showfile:: examples/s4u/dht-kademlia/s4u-dht-kademlia.cpp
829              :language: cpp
830
831           .. showfile:: examples/s4u/dht-kademlia/routing_table.cpp
832              :language: cpp
833
834           .. showfile:: examples/s4u/dht-kademlia/answer.cpp
835              :language: cpp
836
837           .. showfile:: examples/s4u/dht-kademlia/node.cpp
838              :language: cpp
839
840        .. group-tab:: C
841
842           .. showfile:: examples/c/dht-kademlia/dht-kademlia.c
843              :language: cpp
844
845           .. showfile:: examples/c/dht-kademlia/routing_table.c
846              :language: cpp
847
848           .. showfile:: examples/c/dht-kademlia/answer.c
849              :language: cpp
850
851           .. showfile:: examples/c/dht-kademlia/message.c
852              :language: cpp
853
854           .. showfile:: examples/c/dht-kademlia/node.c
855              :language: cpp
856
857 .. _s4u_ex_clouds:
858
859 Simulating Clouds
860 -----------------
861
862   - **Cloud basics**
863     This example starts some computations both on PMs and VMs, and
864     migrates some VMs around.
865
866     .. tabs::
867
868        .. example-tab:: examples/s4u/cloud-simple/s4u-cloud-simple.cpp
869
870        .. example-tab:: examples/c/cloud-simple/cloud-simple.c
871
872   - **Migrating VMs**
873     This example shows how to migrate VMs between PMs.
874
875     .. tabs::
876
877        .. example-tab:: examples/s4u/cloud-migration/s4u-cloud-migration.cpp
878
879        .. example-tab:: examples/c/cloud-migration/cloud-migration.c
880
881 =======================
882 Model-Related Examples
883 =======================
884
885   - **ns-3 as a SimGrid Network Model**
886     This simple ping-pong example demonstrates how to use the bindings to the Network
887     Simulator. The most interesting is probably not the C++ files since
888     they are unchanged from the other simulations, but the associated files,
889     such as the platform file to see how to declare a platform to be used 
890     with the ns-3 bindings of SimGrid and the tesh file to see how to actually
891     start a simulation in these settings.
892
893     .. tabs::
894
895       .. example-tab:: examples/s4u/network-ns3/s4u-network-ns3.cpp
896
897       .. group-tab:: XML
898
899          **Platform files:**
900
901          .. showfile:: examples/platforms/small_platform_one_link_routes.xml
902             :language: xml
903             
904   - **wifi links**
905   
906     This demonstrates how to declare a wifi link in your platform and
907     how to use it in your simulation. The basics is to have a link
908     which sharing policy is set to `WIFI`. Such links can have more
909     than one bandwidth value (separated by commas), corresponding to
910     the several SNR level of your wifi link.
911     
912     In this case, SimGrid automatically switches to validated
913     performance models of wifi networks, where the time is shared
914     between users instead of the bandwidth for wired links (the
915     corresponding publication is currently being written).
916     
917     If your wifi link provides more than one SNR level, you can switch
918     the level of a given host using
919     :cpp:func:`simgrid::s4u::Link::set_host_wifi_rate`. By default,
920     the first level is used.
921
922     .. tabs::
923
924       .. example-tab:: examples/s4u/network-wifi/s4u-network-wifi.cpp
925
926       .. group-tab:: XML
927
928          **Platform files:**
929
930          .. showfile:: examples/platforms/wifi.xml
931             :language: xml
932
933 =======================
934 Model-Checking Examples
935 =======================
936
937 The model-checker can be used to exhaustively search for issues in the
938 tested application. It must be activated at compile time, but this
939 mode is rather experimental in SimGrid (as of v3.22). You should not
940 enable it unless you really want to formally verify your applications:
941 SimGrid is slower and maybe less robust when MC is enabled.
942
943   - **Failing assert**
944     In this example, two actors send some data to a central server,
945     which asserts that the messages are always received in the same order.
946     This is obviously wrong, and the model-checker correctly finds a
947     counter-example to that assertion.
948
949     .. tabs::
950
951        .. example-tab:: examples/s4u/mc-failing-assert/s4u-mc-failing-assert.cpp
952
953 .. |br| raw:: html
954
955    <br />
956
957 .. |cpp| image:: /img/lang_cpp.png
958    :align: middle
959    :width: 12
960
961 .. |py| image:: /img/lang_python.png
962    :align: middle
963    :width: 12