Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Minor fixes in doc.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 25 Jun 2021 08:03:59 +0000 (10:03 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 25 Jun 2021 08:29:24 +0000 (10:29 +0200)
docs/source/Configuring_SimGrid.rst
docs/source/Platform_cpp.rst
docs/source/app_smpi.rst
src/msg/msg_task.cpp

index 26a3fcc..7b895d4 100644 (file)
@@ -942,7 +942,7 @@ which value is either:
 Configuring the Tracing
 -----------------------
 
-The :ref:`tracing subsystem <outcomes_vizu>` can be configured in
+The :ref:`tracing subsystem <outcome_vizu>` can be configured in
 several different ways depending on the used interface (S4U, SMPI, SimDag)
 and the kind of traces that needs to be obtained. See the
 :ref:`Tracing Configuration Options subsection
@@ -1323,11 +1323,11 @@ Each collective operation can be manually selected with a
 .. TODO:: All available collective algorithms will be made available
           via the ``smpirun --help-coll`` command.
 
+.. _cfg=smpi/finalization-barrier:
+
 Add a barrier in MPI_Finalize
 .............................
 
-.. _cfg=smpi/finalization-barrier:
-
 **Option** ``smpi/finalization-barrier`` **default:** off
 
 By default, SMPI processes are destroyed as soon as soon as their code ends,
@@ -1341,6 +1341,9 @@ It might affect the total timing by the cost of a barrier.
 
 .. _cfg=smpi/errors-are-fatal:
 
+Render MPI errors non-fatal
+...........................
+
 **Option** ``smpi/errors-are-fatal`` **default:** on
 
 By default, SMPI processes will crash if a MPI error code is returned. MPI allows
@@ -1350,14 +1353,18 @@ This can ease debugging by going after the first reported error.
 
 .. _cfg=smpi/pedantic:
 
+Disable pedantic MPI errors
+...........................
+
 **Option** ``smpi/pedantic`` **default:** on
 
 By default, SMPI will report all errors it finds in MPI codes. Some of these errors
 may not be considered as errors by all developers. This flag can be turned off to
 avoid reporting some usually harmless mistakes.
 Concerned errors list (will be expanded in the future):
-  - Calling MPI_Win_fence only once in a program, hence just opening an epoch without
-  ever closing it.
+
+ - Calling MPI_Win_fence only once in a program, hence just opening an epoch without
+   ever closing it.
 
 .. _cfg=smpi/iprobe:
 
index 965b344..cbbd33b 100644 (file)
@@ -111,7 +111,7 @@ connected through a shared link.
 .. _platform_cpp_beyond:
 
 Beyond the XML: the power of C++ platforms
-**************
+******************************************
 
 This section describes one of the advantages of using C++ code to write your platforms.
 
index b6febf7..513bfa1 100644 (file)
@@ -129,8 +129,8 @@ Some shortcuts are available:
 
 - ``-gdb`` is equivalent to ``-wrapper "gdb --args" -keep-temps``, to run within gdb debugger
 - ``-lldb`` is equivalent to ``-wrapper "lldb --" -keep-temps``, to run within lldb debugger
-- ``-vgdb`` is equivalent to ``-wrapper "valgrind --vgdb=yes --vgdb-error=0"
--keep-temps``, to run within valgrind and allow to attach a debugger
+- ``-vgdb`` is equivalent to ``-wrapper "valgrind --vgdb=yes --vgdb-error=0" -keep-temps``,
+  to run within valgrind and allow to attach a debugger
 
 To help locate bottlenecks and largest allocations in the simulated application,
 the -analyze flag can be passed to smpirun. It will activate
index 7cd74c2..1718beb 100644 (file)
@@ -778,7 +778,7 @@ void MSG_task_set_bound(msg_task_t task, double bound)
  * (or with #TRACE_category_with_color).
  *
  * @beginrst
- * See :ref:`outcomes_vizu` for details on how to trace the (categorized) resource utilization.
+ * See :ref:`outcome_vizu` for details on how to trace the (categorized) resource utilization.
  * @endrst
  *
  * @param task the task that is going to be categorized