Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
oups, forgot that file
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 15 Jan 2010 22:06:32 +0000 (22:06 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 15 Jan 2010 22:06:32 +0000 (22:06 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7015 48e7efb5-ca39-0410-a469-dd3cf9ba447f

examples/msg/masterslave/deployment_masterslave_mailbox.xml [new file with mode: 0644]

diff --git a/examples/msg/masterslave/deployment_masterslave_mailbox.xml b/examples/msg/masterslave/deployment_masterslave_mailbox.xml
new file mode 100644 (file)
index 0000000..1b880cc
--- /dev/null
@@ -0,0 +1,28 @@
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "simgrid.dtd">
+<platform version="2">
+  <!-- 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="5"/>         <!-- Number of slaves -->
+  </process>
+  <!-- The slave processes (with mailbox to listen on as argument) -->
+  <process host="Tremblay" function="slave">
+    <argument value="0"/>
+  </process>
+  <process host="Jupiter" function="slave">
+    <argument value="1"/>
+  </process>
+  <process host="Fafard" function="slave">
+    <argument value="2"/>
+  </process>
+  <process host="Ginette" function="slave">
+    <argument value="3"/>
+  </process>
+  <process host="Bourassa" function="slave">
+    <argument value="4"/>
+  </process>
+
+</platform>