Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into master
[simgrid.git] / docs / source / tuto_s4u / deployment1.xml
index 3812cf4..5fc2809 100644 (file)
@@ -1,27 +1,28 @@
 <?xml version='1.0'?>
 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
 <platform version="4.1">
-  <!-- The master actor (with some arguments) -->
+  <!-- The master actor (with 4 arguments) -->
   <actor host="Tremblay" function="master">
      <argument value="5"/>         <!-- Workers count -->
      <argument value="20"/>        <!-- Tasks count -->
      <argument value="50000000"/>  <!-- Computation size of tasks -->
      <argument value="1000000"/>   <!-- Communication size of tasks -->
   </actor>
-  <!-- The worker processes (with no argument) -->
+
+  <!-- The worker processes (with one argument each: the ID of this worker) -->
   <actor host="Tremblay" function="worker">
-     <argument value="0" /> <!-- the ID of this worker -->
+     <argument value="0" />
   </actor>
   <actor host="Jupiter" function="worker">
-     <argument value="1" /> <!-- the ID of this worker -->
+     <argument value="1" />
   </actor>
   <actor host="Fafard" function="worker">
-     <argument value="2" /> <!-- the ID of this worker -->
+     <argument value="2" />
   </actor>
   <actor host="Ginette" function="worker">
-     <argument value="3" /> <!-- the ID of this worker -->
+     <argument value="3" />
   </actor>
   <actor host="Bourassa" function="worker">
-     <argument value="4" /> <!-- the ID of this worker -->
+     <argument value="4" />
   </actor>
 </platform>