Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update all our XML files + next XML version will be 4.1, not 5
[simgrid.git] / examples / msg / app-masterworker / app-masterworker-multicore_d.xml
index 8a011ce..cf8c0eb 100644 (file)
@@ -1,18 +1,30 @@
 <?xml version='1.0'?>
 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
-<platform version="4">
-  <!-- The master process (with some arguments) -->
-  <process host="Tremblay" function="master">
-     <argument value="20"/>       <!-- Number of tasks -->
-     <argument value="50000000"/>  <!-- Computation size of tasks -->
-     <argument value="1000000"/>   <!-- Communication size of tasks -->
-     <argument value="6"/>         <!-- Number of workers -->
-  </process>
+<platform version="4.1">
+  <!-- The master actor (with some arguments) -->
+  <actor host="Tremblay" function="master">
+    <argument value="20"/>       <!-- Number of tasks -->
+    <argument value="50000000"/>  <!-- Computation size of tasks -->
+    <argument value="1000000"/>   <!-- Communication size of tasks -->
+    <argument value="6"/>         <!-- Number of workers -->
+  </actor>
   <!-- The worker processes (with mailbox to listen on as argument) -->
-  <process host="Tremblay" function="worker">   <argument value="0"/> </process>
-  <process host="Tremblay" function="worker">   <argument value="1"/> </process>
-  <process host="Tremblay" function="worker">   <argument value="2"/> </process>
-  <process host="Tremblay" function="worker">   <argument value="3"/> </process>
-  <process host="Tremblay" function="worker">   <argument value="4"/> </process>
-  <process host="Tremblay" function="worker">   <argument value="5"/> </process>
+  <actor host="Tremblay" function="worker">
+    <argument value="0"/> 
+  </actor>
+  <actor host="Tremblay" function="worker">
+    <argument value="1"/> 
+  </actor>
+  <actor host="Tremblay" function="worker">
+    <argument value="2"/> 
+  </actor>
+  <actor host="Tremblay" function="worker">
+    <argument value="3"/> 
+  </actor>
+  <actor host="Tremblay" function="worker">
+    <argument value="4"/> 
+  </actor>
+  <actor host="Tremblay" function="worker">
+    <argument value="5"/> 
+  </actor>
 </platform>