File: Tutorial_Algorithms.rst

package info (click to toggle)
simgrid 4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,192 kB
  • sloc: cpp: 124,913; ansic: 66,744; python: 8,560; java: 6,773; fortran: 6,079; f90: 5,123; xml: 4,587; sh: 2,194; perl: 1,436; makefile: 111; lisp: 49; javascript: 7; sed: 6
file content (996 lines) | stat: -rw-r--r-- 40,645 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
.. _usecase_simalgo:

Simulating Algorithms
=====================

SimGrid was conceived as a tool to study distributed algorithms. Its
:ref:`S4U interface <S4U_doc>` makes it easy to assess Cloud,
P2P, HPC, IoT, and other similar settings (:ref:`more info <index>`).

A typical SimGrid simulation is composed of several |Actors|_, that
execute user-provided functions. The actors have to explicitly use the
S4U interface to express their computation, communication, disk usage,
and other |Activities|_ so that they get reflected within the
simulator. These activities take place on **Resources** (|Hosts|_,
|Links|_, |Disks|_). SimGrid predicts the time taken by each
activity and orchestrates accordingly the actors waiting for the
completion of these activities.

Each actor executes a user-provided function on a simulated |Host|_
with which it can interact. Communications are not directly sent to
actors, but posted onto a |Mailbox|_ that serves as a rendez-vous point
between communicating actors.

.. |Actors| replace:: **Actors**
.. _Actors: app_s4u.html#s4u-actor

.. |Activities| replace:: **Activities**
.. _Activities: app_s4u.html#s4u-activity

.. |Hosts| replace:: **Hosts**
.. _Hosts: app_s4u.html#s4u-host

.. |Links| replace:: **Links**
.. _Links: app_s4u.html#s4u-link

.. |Disks| replace:: **Disks**
.. _Disks: app_s4u.html#s4u-disk

.. |VirtualMachines| replace:: **VirtualMachines**
.. _VirtualMachines: app_s4u.html#s4u-virtualmachine

.. |Host| replace:: **Host**
.. _Host: app_s4u.html#s4u-host

.. |Link| replace:: **Link**
.. _Link: app_s4u.html#s4u-link

.. |Mailbox| replace:: **Mailbox**
.. _Mailbox: app_s4u.html#s4u-mailbox

.. |Barrier| replace:: **Barrier**
.. _Barrier: app_s4u.html#s4u-barrier

.. |ConditionVariable| replace:: **ConditionVariable**
.. _ConditionVariable: app_s4u.html#s4u-conditionvariable

.. |Mutex| replace:: **Mutex**
.. _Mutex: app_s4u.html#s4u-mutex

**In the remainder of this tutorial**, you will discover a simple yet
fully-functioning example of SimGrid simulation: the Master/Workers
application. We will detail each part of the code and the necessary
configuration to make it work.  After this tour, several exercises
are proposed to let you discover some of the SimGrid features, hands
on the keyboard. This practical session will be given in C++ or Python,
which you are supposed to know beforehand.


Discover the Master/Workers
---------------------------

This section introduces an example of SimGrid simulation. This
simple application is composed of two kinds of actors: the **master**
is in charge of distributing some computational tasks to a set of
**workers** that execute them.

.. image:: /tuto_s4u/img/intro.svg
   :align: center

The provided code dispatches these tasks in `round-robin scheduling <https://en.wikipedia.org/wiki/Round-robin_scheduling>`_,
i.e. in circular order: tasks are dispatched to each worker one after the other, until all tasks are dispatched.
You will improve this scheme later in this tutorial.

The Actors
..........

Let's start with the code of the master. It is represented by the
*master* function below. This simple function takes at least 3
parameters (the number of tasks to dispatch, their computational size
in flops to compute, and their communication size in bytes to
exchange). Every parameter after the third one must be the name of a
host on which a worker is waiting for something to compute.

Then, the tasks are sent one after the other, each on a mailbox named
after the worker's hosts. On the other side, a given worker (which
code is given below) waits for incoming tasks on its mailbox.


In the end, once all tasks are dispatched, the master dispatches
another task per worker, but this time with a negative amount of flops
to compute. Indeed, this application decided by convention, that the
workers should stop when encountering such a negative compute_size.

   .. tabs::

      .. group-tab:: C++

         At the end of the day, the only SimGrid specific functions used in
         this example are :cpp:func:`simgrid::s4u::Mailbox::by_name` (to retrieve or create a mailbox) and
         :cpp:func:`simgrid::s4u::Mailbox::put` (so send something over a mailbox). Also, :c:macro:`XBT_INFO` is used
         as a replacement to ``printf()`` or ``std::cout`` to ensure that the messages
         are nicely logged along with the simulated time and actor name.

         .. literalinclude:: ../../examples/cpp/app-masterworkers/s4u-app-masterworkers-fun.cpp
            :language: c++
            :start-after: master-begin
            :end-before: master-end

      .. group-tab:: Python

         At the end of the day, the only SimGrid specific functions used in
         this example are :py:func:`simgrid.Mailbox.by_name` (to retrieve or create a mailbox) and
         :py:func:`simgrid.Mailbox.put` (so send something over a mailbox). Also, :py:func:`simgrid.this_actor.info` is used
         as a replacement to `print` to ensure that the messages
         are nicely logged along with the simulated time and actor name.

         .. literalinclude:: ../../examples/python/app-masterworkers/app-masterworkers.py
            :language: python
            :start-after: master-begin
            :end-before: master-end

Then comes the code of the worker actors. This function expects no
parameter from its vector of strings. Its code is very simple: it
expects messages on the mailbox that is named after its host. As long as it gets valid
computation requests (whose compute_amount is positive), it computes
this task and waits for the next one.

.. tabs::

   .. group-tab:: C++

      The worker retrieves its own host with
      :cpp:func:`simgrid::s4u::this_actor::get_host`. The
      :ref:`simgrid::s4u::this_actor <API_s4u_this_actor>`
      namespace contains many such helping functions.

      .. literalinclude:: ../../examples/cpp/app-masterworkers/s4u-app-masterworkers-fun.cpp
         :language: c++
         :start-after: worker-begin
         :end-before: worker-end

   .. group-tab:: Python

      The worker retrieves its own host with :py:func:`simgrid.this_actor.get_host`. The
      :ref:`this_actor <API_s4u_this_actor>` object contains many such helping functions.

      .. literalinclude:: ../../examples/python/app-masterworkers/app-masterworkers.py
         :language: python
         :start-after: worker-begin
         :end-before: worker-end

Starting the Simulation
.......................

And this is it. In only a few lines, we defined the algorithm of our master/workers example.

.. tabs::

   .. group-tab:: C++

      That being said, an algorithm alone is not enough to define a
      simulation: SimGrid is a library, not a program. So you need to define
      your own ``main()`` function as follows. This function is in charge of
      creating a SimGrid simulation engine (on line 3), register the actor
      functions to the engine (on lines 7 and 8), load the simulated platform
      from its description file (on line 11), map actors onto that platform
      (on line 12) and run the simulation until its completion on line 15.

      .. literalinclude:: ../../examples/cpp/app-masterworkers/s4u-app-masterworkers-fun.cpp
         :language: c++
         :start-after: main-begin
         :end-before: main-end
         :linenos:

   .. group-tab:: Python

      That being said, an algorithm alone is not enough to define a simulation:
      you need a main block to setup the simulation and its components as follows.
      This code creates a SimGrid simulation engine (on line 4), registers the actor
      functions to the engine (on lines 7 and 8), loads the simulated platform
      from its description file (on line 11), map actors onto that platform
      (on line 12) and run the simulation until its completion on line 15.

      .. literalinclude:: ../../examples/python/app-masterworkers/app-masterworkers.py
         :language: python
         :start-after: main-begin
         :end-before: main-end
         :linenos:

Finally, this example requires a platform file and a deployment file.

Platform File
.............

Platform files define the simulated platform on which the provided
application will take place. It contains one or several **Network
Zone** |api_s4u_NetZone|_ that contains both |Host|_ and |Link|_
Resources, as well as routing information.

Such files can get rather long and boring, so the example below is
only an excerpt of the full ``examples/platforms/small_platform.xml``
file. For example, most routing information is missing, and only the
route between the hosts Tremblay and Fafard is given. This path
traverses 6 links (named 4, 3, 2, 0, 1, and 8). There are several
examples of platforms in the archive under ``examples/platforms``.

.. |api_s4u_NetZone| image:: /img/extlink.png
   :align: middle
   :width: 12
.. _api_s4u_NetZone: app_s4u.html#s4u-netzone

.. |api_s4u_Link| image:: /img/extlink.png
   :align: middle
   :width: 12
.. _api_s4u_Link: app_s4u.html#s4u-link

.. literalinclude:: ../../examples/platforms/small_platform.xml
   :language: xml
   :lines: 1-10,13-21,56-62,192-
   :caption: (excerpts of the small_platform.xml file)

Deployment File
...............

Deployment files specify the execution scenario: it lists the actors
that should be started, along with their parameters. In the following
example, we start 6 actors: one master and 5 workers.

.. literalinclude:: ../../examples/cpp/app-masterworkers/s4u-app-masterworkers_d.xml
   :language: xml

Execution Example
.................

This time, we have all parts: once the program is compiled, we can execute it as follows.

.. tabs::

   .. group-tab:: C++

      Note how the :c:macro:`XBT_INFO` requests turned into informative messages.

      .. "WARNING: non-whitespace stripped by dedent" is expected here as we remove the $ marker this way

      .. literalinclude:: ../../examples/cpp/app-masterworkers/s4u-app-masterworkers.tesh
         :language: shell
         :start-after: s4u-app-masterworkers-fun
         :prepend: $$$ ./masterworkers platform.xml deploy.xml
         :append: $$$
         :dedent: 2

   .. group-tab:: Python

      Note how the :py:func:`simgrid.this_actor.info` calls turned into informative messages.

      .. literalinclude:: ../../examples/python/app-masterworkers/app-masterworkers.tesh
         :language: shell
         :start-after: app-masterworkers_d.xml
         :prepend: $$$ python ./app-masterworkers.py platform.xml deploy.xml
         :append: $$$
         :dedent: 2

Each example included in the SimGrid distribution comes with a `tesh`
file that presents how to start the example once compiled, along with
the expected output. These files are used for the automatic testing of
the framework but can be used to see the examples' output without
compiling them. See e.g. the file
`examples/cpp/app-masterworkers/s4u-app-masterworkers.tesh <https://framagit.org/simgrid/simgrid/-/blob/master/examples/cpp/app-masterworkers/s4u-app-masterworkers.tesh>`_.
Lines starting with `$` are the commands to execute;
lines starting with `>` are the expected output of each command, while
lines starting with `!` are configuration items for the test runner.


Improve it Yourself
-------------------

In this section, you will modify the example presented earlier to
explore the quality of the proposed algorithm. It already works, and
the simulation prints things, but the truth is that we have no idea of
whether this is a good algorithm to dispatch tasks to the workers.
This very simple setting raises many interesting questions:

.. image:: /tuto_s4u/img/question.svg
   :align: center

- Which algorithm should the master use? Or should the worker decide
  by themselves?

    Round Robin is not an efficient algorithm when all tasks are not
    processed at the same speed.  It would probably be more efficient
    if the workers were asking for tasks when ready.

- Should tasks be grouped in batches or sent separately?

    The workers will starve if they don't get the tasks fast
    enough. One possibility to reduce latency would be to send tasks
    in pools instead of one by one. But if the pools are too big, the
    load balancing will likely get uneven, in particular when
    distributing the last tasks.

- How does the quality of such an algorithm dependent on the platform
  characteristics and on the task characteristics?

    Whenever the input communication time is very small compared to
    processing time and workers are homogeneous, it is likely that the
    round-robin algorithm performs very well. Would it still hold true
    when transfer time is not negligible? What if some tasks are
    performed faster on some specific nodes?

- The network topology interconnecting the master and the workers
  may be quite complicated. How does such a topology impact the
  previous result?

    When data transfers are the bottleneck, it is likely that good
    modeling of the platform becomes essential. The SimGrid platform
    models are particularly handy to account for complex platform
    topologies.

- What is the best applicative topology?

    Is a flat master-worker deployment sufficient? Should we go for a
    hierarchical algorithm, with some forwarders taking large pools of
    tasks from the master, each of them distributing their tasks to a
    sub-pool of workers? Or should we introduce super-peers,
    duplicating the master's role in a peer-to-peer manner?  Do the
    algorithms require a perfect knowledge of the network?

- How is such an algorithm sensitive to external workload variation?

    What if bandwidth, latency, and computing speed can vary with no
    warning?  Shouldn't you study whether your algorithm is sensitive
    to such load variations?

- Although an algorithm may be more efficient than another, how does
  it interfere with unrelated applications executing on the same
  facilities?

**SimGrid was invented to answer such questions.** Do not believe the
fools saying that all you need to study such settings is a simple
discrete event simulator. Do you really want to reinvent the wheel,
debug and optimize your own tool, and validate its models against real
settings for ages, or do you prefer to sit on the shoulders of a
giant? With SimGrid, you can focus on your algorithm. The whole
simulation mechanism is already working.

Here is the visualization of a SimGrid simulation of two master-worker
applications (one in light gray and the other in dark gray) running in
concurrence and showing resource usage over a long period of time. It
was obtained with the Triva software.

.. image:: /tuto_s4u/img/result.png
   :align: center

Using Docker
............

The easiest way to take the tutorial is to use the dedicated Docker image.
Once you `installed Docker itself <https://docs.docker.com/install/>`_, simply do the following:

.. code-block:: console

   $ docker pull simgrid/tuto-s4u
   $ mkdir ~/simgrid-tutorial
   $ docker run --user $UID:$GID -it --rm --name simgrid --volume ~/simgrid-tutorial:/source/tutorial simgrid/tuto-s4u bash

More info if you want to understand that command. Skip it if you want. The ``--user $UID:$GID`` part request docker to use your
login name and group within the container too. ``-it`` requests to run the command interactively in a terminal. ``--rm`` asks to
remove the container once the command is done. ``--name`` gives a name to the container. ``--volume`` makes one directory of
your machine visible from within the container. The part on the left of ``:`` is the name outside while the right part is the
name within the container. The last words on the line are the docker image to use as a basis for the container (here,
``simgrid/tuto-s4u``) and the program to run when the container starts (here, ``bash``).

This will start a new container with all you need to take this
tutorial, and create a ``simgrid-tutorial`` directory in your home on
your host machine that will be visible as ``/source/tutorial`` within the
container.  You can then edit the files you want with your favorite
editor in ``~/simgrid-tutorial``, and compile them within the
container to enjoy the provided dependencies.

.. warning::

   Any change to the container out of ``/source/tutorial`` will be lost
   when you log out of the container, so don't edit the other files!

All needed dependencies are already installed in this container
(SimGrid, a C++ compiler, CMake, pajeng, and R). Vite being only
optional in this tutorial, it is not installed to reduce the image
size.

The docker does not run as root, so that the files can easily be exchanged between within the container and the outer world.
If you need to run a command as root within the container, simply type the following in another terminal to join the same container as root:

.. code-block:: console

   $ docker container ls
   # This lists all containers running on your machine. For example:
   #    CONTAINER ID   IMAGE            COMMAND   CREATED         STATUS         PORTS     NAMES
   #    7e921b1b18a7   simgrid/stable   "bash"    7 minutes ago   Up 7 minutes             simgrid

   $ docker exec --user root -it simgrid bash

The code template is available under ``/source/simgrid-template-s4u.git``
in the image. You should copy it to your working directory and
recompile it when you first log in:

.. code-block:: console

   $ # Make sure the simgrid-tutorial directory can be read and written by the non-root user
   $ sudo chown $UID:$GID ~/simgrid-tutorial
   $ # Connect to the running container if needed
   $ docker exec --user $UID:$GID -ti simgrid bash
   $container) cp -r /source/simgrid-template-s4u.git/* /source/tutorial
   $container) cd /source/tutorial
   $container) cmake .
   $container) make

Using your Computer Natively
............................

.. tabs::

   .. group-tab:: C++

      To take the tutorial on your machine, you first need to :ref:`install
      a recent version of SimGrid <install>`, a C++ compiler, and also
      ``pajeng`` to visualize the traces. You may want to install `Vite
      <http://vite.gforge.inria.fr/>`_ to get a first glance at the traces.
      The provided code template requires CMake to compile. On Debian and
      Ubuntu for example, you can get them as follows:

      .. code-block:: console

         $ sudo apt install simgrid pajeng cmake g++ vite

      An initial version of the source code is provided on framagit. This
      template compiles with CMake. If SimGrid is correctly installed, you
      should be able to clone the `repository
      <https://framagit.org/simgrid/simgrid-template-s4u>`_ and recompile
      everything as follows:

      .. code-block:: console

         # (exporting SimGrid_PATH is only needed if SimGrid is installed in a non-standard path)
         $ export SimGrid_PATH=/where/to/simgrid

         $ git clone https://framagit.org/simgrid/simgrid-template-s4u.git
         $ cd simgrid-template-s4u/
         $ cmake .
         $ make

      If you struggle with the compilation, then you should double-check
      your :ref:`SimGrid installation <install>`.  On need, please refer to
      the :ref:`Troubleshooting your Project Setup
      <install_yours_troubleshooting>` section.

   .. group-tab:: Python

      To take the tutorial on your machine, you first need to :ref:`install
      a recent version of SimGrid <install>` and ``pajeng`` to visualize the
      traces. You may want to install `Vite <http://vite.gforge.inria.fr/>`_ to get a first glance at the traces.
      On Debian and Ubuntu for example, you can get them as follows:

      .. code-block:: console

         $ sudo apt install simgrid pajeng vite

      An initial version of the source code is provided on framagit.
      If SimGrid is correctly installed, you should be able to clone the `repository
      <https://framagit.org/simgrid/simgrid-template-s4u>`_ and execute it as follows:

      .. code-block:: console

         $ git clone https://framagit.org/simgrid/simgrid-template-s4u.git
         $ cd simgrid-template-s4u/
         $ python master-workers.py small_platform.xml master-workers_d.xml

      If you get some errors, then you should double-check
      your :ref:`SimGrid installation <install>`.  On need, please refer to
      the :ref:`Troubleshooting your Project Setup <install_yours_troubleshooting>` section.

.. warning::

   If you use the stable version of Debian 11, Ubuntu 21.04 or Ubuntu 21.10, then you need the right version of this tutorial
   (add ``--branch simgrid-v3.25`` as below). These distributions only contain SimGrid v3.25 while the latest version of this
   tutorial needs at least SimGrid v3.27.

   .. code-block:: console

      $ git clone --branch simgrid-v3.25 https://framagit.org/simgrid/simgrid-template-s4u.git

For R analysis of the produced traces, you may want to install R
and the `pajengr <https://github.com/schnorr/pajengr#installation/>`_ package.

.. code-block:: console

   # install R and necessary packages
   $ sudo apt install r-base r-cran-devtools r-cran-tidyverse
   # install pajengr dependencies
   $ sudo apt install git cmake flex bison
   # install the pajengr R package
   $ Rscript -e "library(devtools); install_github('schnorr/pajengr');"


Discovering the Provided Code
.............................

.. tabs::

   .. group-tab:: C++

      Please compile and execute the provided simulator as follows:

      .. code-block:: console

         $ make master-workers
         $ ./master-workers small_platform.xml master-workers_d.xml

      If you get an error message complaining that ``simgrid::s4u::Mailbox::get()`` does not exist,
      then your version of SimGrid is too old for the version of the tutorial that you got. Check again previous section.

   .. group-tab:: Python

      Please execute the provided simulator as follows:

      .. code-block:: console

         $ python master-workers.py small_platform.xml master-workers_d.xml

      If you get an error stating that the simgrid module does not exist, you need to get a newer version of SimGrid.
      You may want to take the tutorial from the docker to get the newest version.

For a classical Gantt-Chart visualization, you can use `Vite
<http://vite.gforge.inria.fr/>`_ if you have it installed, as
follows. But do not spend too much time installing Vite, because there
is a better way to visualize SimGrid traces (see below).

.. code-block:: console

   # Run C++ code
   $ ./master-workers small_platform.xml master-workers_d.xml --cfg=tracing:yes --cfg=tracing/actor:yes
   # Run Python code
   $ python master-workers.py small_platform.xml master-workers_d.xml --cfg=tracing:yes --cfg=tracing/actor:yes

   # Visualize the produced trace
   $ vite simgrid.trace

.. image:: /tuto_s4u/img/vite-screenshot.png
   :align: center

If you want the full power to visualize SimGrid traces, you need
to use R. As a start, you can download this `starter script
<https://framagit.org/simgrid/simgrid/raw/master/docs/source/tuto_s4u/draw_gantt.R>`_
and use it as follows:

.. code-block:: console

   # Run C++ code
   $ ./master-workers small_platform.xml master-workers_d.xml --cfg=tracing:yes --cfg=tracing/actor:yes
   # Run Python code
   $ python master-workers.py small_platform.xml master-workers_d.xml --cfg=tracing:yes --cfg=tracing/actor:yes

   # Visualize the produced trace
   $ Rscript draw_gantt.R simgrid.trace

It produces a ``Rplots.pdf`` with the following content:

.. image:: /tuto_s4u/img/Rscript-screenshot.png
   :align: center


Lab 1: Simpler deployments
--------------------------

.. rst-class:: compact-list

   **Learning goals:**

   * Get your hands on the code and change the communication pattern
   * Discover the Mailbox mechanism

In the provided example, adding more workers quickly becomes a pain:
You need to start them (at the bottom of the file) and inform the
master of its availability with an extra parameter. This is mandatory
if you want to inform the master of where the workers are running. But
actually, the master does not need to have this information.

We could leverage the mailbox mechanism flexibility, and use a sort of
yellow page system: Instead of sending data to the worker running on
Fafard, the master could send data to the third worker. Ie, instead of
using the worker location (which should be filled in two locations),
we could use their ID (which should be filled in one location
only).

This could be done with the following deployment file. It's
not shorter than the previous one, but it's still simpler because the
information is only written once. It thus follows the `DRY
<https://en.wikipedia.org/wiki/Don't_repeat_yourself>`_ `SPOT
<http://wiki.c2.com/?SinglePointOfTruth>`_ design principle.

.. literalinclude:: tuto_s4u/deployment1.xml
   :language: xml

.. tabs::

   .. group-tab:: C++

      Copy your ``master-workers.cpp`` into ``master-workers-lab1.cpp`` and
      add a new executable into ``CMakeLists.txt``. Then modify your worker
      function so that it gets its mailbox name not from the name of its
      host, but from the string passed as ``args[1]``. The master will send
      messages to all workers based on their number, for example as follows:

      .. code-block:: cpp

         for (int i = 0; i < tasks_count; i++) {
            std::string worker_rank        = std::to_string(i % workers_count);
            std::string mailbox_name       = "worker-" + worker_rank;
            simgrid::s4u::Mailbox* mailbox = simgrid::s4u::Mailbox::by_name(mailbox_name);

            mailbox->put(...);

            ...
         }

   .. group-tab:: Python

      Copy your ``master-workers.py`` into ``master-workers-lab1.py`` then
      modify your worker
      function so that it gets its mailbox name not from the name of its
      host, but from the string passed as ``args[0]``. The master will send
      messages to all workers based on their number, for example as follows:

      .. code-block:: cpp

           for i in range(tasks_count):
              mailbox = Mailbox.by_name(str(i % worker_count))
              mailbox.put(...)

Wrap up
.......

The mailboxes are a very powerful mechanism in SimGrid, allowing many
interesting application settings. They may feel unusual if you are
used to BSD sockets or other classical systems, but you will soon
appreciate their power. They are only used to match
communications but have no impact on the communication
timing. ``put()`` and ``get()`` are matched regardless of their
initiators' location and then the real communication occurs between
the involved parties.

Please refer to the full `Mailboxes' documentation <app_s4u.html#s4u-mailbox>`_
for more details.


Lab 2: Using the Whole Platform
-------------------------------

.. rst-class:: compact-list

   **Learning goals:**

   * Interact with the platform (get the list of all hosts)
   * Create actors directly from your program instead of the deployment file

It is now easier to add a new worker, but you still have to do it
manually. It would be much easier if the master could start the
workers on its own, one per available host in the platform. The new
deployment file should be as simple as:

.. literalinclude:: tuto_s4u/deployment2.xml
   :language: xml


Creating the workers from the master
....................................

.. tabs::

   .. group-tab:: C++

      For that, the master needs to retrieve the list of hosts declared in
      the platform with :cpp:func:`simgrid::s4u::Engine::get_all_hosts`.
      Then, the master should start the worker actors with
      :cpp:func:`simgrid::s4u::Actor::create`.

      ``Actor::create(name, host, func, params...)`` is a very flexible
      function. Its third parameter is the function that the actor should
      execute. This function can take any kind of parameter, provided that
      you pass similar parameters to ``Actor::create()``. For example, you
      could have something like this:

      .. code-block:: cpp

         void my_actor(int param1, double param2, std::string param3) {
            ...
         }
         int main(int argc, char argv**) {
            ...
            simgrid::s4u::ActorPtr actor;
            actor = simgrid::s4u::Actor::create("name", simgrid::s4u::Host::by_name("the_host"),
                                                &my_actor, 42, 3.14, "thevalue");
            ...
         }

   .. group-tab:: Python

      For that, the master needs to retrieve the list of hosts declared in
      the platform with :py:func:`simgrid.Engine.get_all_hosts`. Since this method is not static,
      you may want to call it on the Engine instance, as in ``Engine.instance().get_all_hosts()``.
      Then, the master should start the worker actors with :py:func:`simgrid.Actor.create`.

      ``Actor.create(name, host, func, params...)`` is a very flexible
      function. Its third parameter is the function that the actor should
      execute. This function can take any kind of parameter, provided that
      you pass similar parameters to ``Actor.create()``. For example, you
      could have something like this:

      .. code-block:: python

         def my_actor(param1, param2, param3):
            # your code comes here
         actor = simgrid.Actor.create("name", the_host, my_actor, 42, 3.14, "thevalue")


Master-Workers Communication
............................

Previously, the workers got from their parameter the name of the
mailbox they should use. We can still do so: the master should build
such a parameter before using it in the ``Actor::create()`` call. The
master could even pass directly the mailbox as a parameter to the
workers.

Since we want later to study concurrent applications, it is advised to
use a mailbox name that is unique over the simulation even if there is
more than one master.

.. tabs::

   .. group-tab:: C++

      One possibility for that is to use the actor ID (aid) of each worker
      as a mailbox name. The master can retrieve the aid of the newly
      created actor with :cpp:func:`simgrid::s4u::Actor::get_pid()` while the actor itself can
      retrieve its own aid with :cpp:func:`simgrid::s4u::this_actor::get_pid()`.
      The retrieved value is an :cpp:type:`aid_t`, which is an alias for ``long``.

   .. group-tab:: Python

      One possibility for that is to use the actor ID of each worker
      as a mailbox name. The master can retrieve the aid of the newly
      created actor with :py:func:`simgrid.Actor.pid` while the actor itself can
      retrieve its own aid with :py:func:`simgrid.this_actor.get_pid()`.

Wrap up
.......

In this exercise, we reduced the amount of configuration that our
simulator requests. This is both a good idea and a dangerous
trend. This simplification is another application of the good old DRY/SPOT
programming principle (`Don't Repeat Yourself / Single Point Of Truth
<https://en.wikipedia.org/wiki/Don%27t_repeat_yourself>`_), and you
really want your programming artifacts to follow these software
engineering principles.

But at the same time, you should be careful in separating your
scientific contribution (the master/workers algorithm) and the
artifacts used to test it (platform, deployment, and workload). This is
why SimGrid forces you to express your platform and deployment files
in XML instead of using a programming interface: it forces a clear
separation of concerns between things of different nature.

Lab 3: Fixed Experiment Duration
--------------------------------

.. rst-class:: compact-list

   **Learning goals:**

   * Forcefully kill actors, and stop the simulation at a given point of time
   * Control the logging verbosity

In the current version, the number of tasks is defined through the
worker arguments. Hence, tasks are created at the very beginning of
the simulation. Instead, have the master dispatching tasks for a
predetermined amount of time.  The tasks must now be created on need
instead of beforehand.

Of course, usual time functions like ``gettimeofday`` will give you the
time on your real machine, which is pretty useless in the
simulation. Instead, retrieve the time in the simulated world with
:cpp:func:`simgrid::s4u::Engine::get_clock` (C++) or
:py:func:`simgrid.Engine.get_clock()`) (Python).

You can still stop your workers with a specific task as previously,
or you may kill them forcefully with :cpp:func:`simgrid::s4u::Actor::kill` (C++)
:py:func:`simgrid.Actor.kill` (Python).

Anyway, the new deployment `deployment3.xml` file should thus look
like this:

.. literalinclude:: tuto_s4u/deployment3.xml
   :language: xml

Controlling the message verbosity
.................................

Not all messages are equally informative, so you probably want to
change some of the *info* messages (C: :c:macro:`XBT_INFO`; Python: :py:func:`simgrid.this_actor.info`)
into *debug* messages`(C: :c:macro:`XBT_DEBUG`; Python: :py:func:`simgrid.this_actor.debug`) so that they are
hidden by default. For example, you may want to use an *info* message once
every 100 tasks and *debug* when sending all the other tasks. Or
you could show only the total number of tasks processed by
default. You can still see the debug messages as follows:

.. code-block:: console

   $ ./master-workers-lab3 small_platform.xml deployment3.xml --log=s4u_app_masterworker.thres:debug

Lab 4: What-if analysis
-----------------------

.. rst-class:: compact-list

   **Learning goals:**

   * Change the platform characteristics during the simulation.
   * Explore other communication patterns.

Computational speed
...................

Attach a profile to your hosts, so that their computational speed automatically vary over time, modeling an external load on these machines.
This can be done with :cpp:func:`simgrid::s4u::Host::set_speed_profile` (C++) or :py:func:`simgrid.Host.set_speed_profile` (Python).

Make it so that one of the hosts get really really slow, and observe how your whole application performance decreases.
This is because one slow host slows down the whole process. Instead of a round-robin dispatch push,
you should completely reorganize your application in a First-Come First-Served manner (FCFS).
Actors should pull a task whenever they are ready, so that fast actors can overpass slow ones in the queue.

There is two ways to implement that: either the workers request a task to the master by sending their name to a specific mailbox,
or the master directly pushes the tasks to a centralized mailbox from which the workers pull their work. The first approach is closer
to what would happen with communications based on BSD sockets while the second is closer to message queues. You could also decide to
model your socket application in the second manner if you want to neglect these details and keep your simulator simple. It's your decision.

Changing the communication schema can be a bit hairy, but once it works, you will see that such as simple FCFS schema allows one to greatly
increase the amount of tasks handled over time here. Things may be different with another platform file.

Communication speed
...................

Let's now modify the communication speed between hosts.

Retrieve a link from its name with :cpp:func:`simgrid::s4u::Link::by_name()` (C++) or :py:func:`simgrid.Link.by_name()` (python).

Retrieve all links in the platform with :cpp:func:`simgrid::s4u::Engine::get_all_links()` (C++) or :py:func:`simgrid.Engine.get_all_links()` (python).

Retrieve the list of links from one host to another with :cpp:func:`simgrid::s4u::Host::route_to` (C++) or :py:func:`simgrid.Host.route_to` (python).

Modify the bandwidth of a given link with :cpp:func:`simgrid::s4u::Link::set_bandwidth` (C++) or :py:func:`simgrid.Link.set_bandwidth` (python).
You can even have the bandwidth automatically vary over time with :cpp:func:`simgrid::s4u::Link::set_bandwidth_profile` (C++) or :py:func:`simgrid.Link.set_bandwidth_profile` (python).

Once implemented, you will notice that slow communications may still result in situations
where one worker only works at a given point of time. To overcome that, your master needs
to send data to several workers in parallel, using
:cpp:func:`simgrid::s4u::Mailbox::put_async` (C++) or :py:func:`simgrid.Mailbox.put_async` (Python)
to start several communications in parallel, and
:cpp:func:`simgrid::s4u::Comm::wait_any` (C++) or and :py:func:`simgrid.Comm.wait_any` (Python)
to react to the completion of one of these communications. Actually, since this code somewhat tricky
to write, it's provided as :ref:`an example <s4u_ex_communication>` in the distribution (search for
``wait_any`` in that page).

Dealing with failures
.....................

Turn a given link off with :cpp:func:`simgrid::s4u::Link::turn_off` (C++) or :py:func:`simgrid.Link.turn_off` (python).
You can even implement churn where a link automatically turn off and on again over time with :cpp:func:`simgrid::s4u::Link::set_state_profile` (C++) or :py:func:`simgrid.Link.set_state_profile` (python).

If a link fails while you try to use it, ``wait()`` will raise a ``NetworkFailureException`` that you need to catch.
Again, there is a nice example demoing this feature, :ref:`under platform-failures <s4u_ex_communication>`.

Lab 5: Competing Applications
-----------------------------

.. rst-class:: compact-list

   **Learning goals:**

   * Advanced vizualization through tracing categories


It is now time to start several applications at once, with the following ``deployment5.xml`` file.

.. literalinclude:: tuto_s4u/deployment5.xml
   :language: xml

Things happen when you do so, but it remains utterly difficult to
understand what's happening exactly. Even Gantt visualizations
contain too much information to be useful: it is impossible to
understand which task belongs to which application. To fix this, we
will categorize the tasks.

Instead of starting the execution in one function call only with
``this_actor::execute(cost)``, you need to
create the execution activity, set its tracing category, start it
and wait for its completion, as follows.

.. tabs::

   .. group-tab:: C++

      Use :cpp:func:`simgrid::s4u::Exec::set_tracing_category` to change the category of an execution.

      .. code-block:: cpp

         simgrid::s4u::ExecPtr exec = simgrid::s4u::this_actor::exec_init(compute_cost);
         exec->set_tracing_category(category);
         // exec->start() is optional here as wait() starts the activity on need
         exec->wait();

      You can shorten this code as follows:

      .. code-block:: cpp

         simgrid::s4u::this_actor::exec_init(compute_cost)->set_tracing_category(category)->wait();

   .. group-tab:: Python

      Use :py:func:`simgrid.Exec.set_tracing_category` to change the category of an execution.

      .. code-block:: python

         exec = simgrid:.this_actor.exec_init(compute_cost)
         exec.set_tracing_category(category)
         # exec.start() is optional here as wait() starts the activity on need
         exec->wait()

      You can shorten this code as follows:

      .. code-block:: python

         simgrid.this_actor.exec_init(compute_cost).set_tracing_category(category).wait()


Visualizing the result
.......................

vite is not enough to understand the situation, because it does not
deal with categorization. This time, you absolutely must switch to R,
as explained on `this page
<https://simgrid.org/contrib/R_visualization.html>`_.

.. todo::

   Include here the minimal setting to view something in R.

Further Improvements
--------------------

From this, many things can easily be added. For example, you could:

- Allow workers to have several pending requests  to overlap
  communication and computations as much as possible. Non-blocking
  communication will probably become handy here.
- Add a performance measurement mechanism, enabling the master to make smart scheduling choices.
- Test your code on other platforms, from the ``examples/platforms``
  directory in your archive.

  What is the largest number of tasks requiring 50e6 flops and 1e5
  bytes that you manage to distribute and process in one hour on
  ``g5k.xml`` ?
- Optimize not only for the number of tasks handled but also for the total energy dissipated.
- And so on. If you come up with a nice extension, please share
  it with us so that we can extend this tutorial.

After this Tutorial
-------------------

This tutorial is now terminated. You could keep reading the online documentation and
tutorials, or you could head up to the :ref:`example section <s4u_examples>` to read some code.

.. |br| raw:: html

   <br />

..  LocalWords:  SimGrid