X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/21fe278c8460849931b37ccde22e944edec46f71..35396134941edb726769112d256609358ca00486:/docs/source/Tutorial_Algorithms.rst diff --git a/docs/source/Tutorial_Algorithms.rst b/docs/source/Tutorial_Algorithms.rst index 562a0cc853..2bb09ed1e7 100644 --- a/docs/source/Tutorial_Algorithms.rst +++ b/docs/source/Tutorial_Algorithms.rst @@ -85,7 +85,7 @@ the opportunity to improve this scheme. The Actors .......... -Let's start with the code of the worker. It is represented by the +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 amount of tasks to dispatch, their computational size in flops to compute and their communication size in bytes to @@ -211,6 +211,16 @@ informative messages. :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/s4u/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 -------------------