Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7117 48e7efb5...
[simgrid.git] / src / bindings / ruby / deploy.xml
diff --git a/src/bindings/ruby/deploy.xml b/src/bindings/ruby/deploy.xml
new file mode 100644 (file)
index 0000000..590b69e
--- /dev/null
@@ -0,0 +1,27 @@
+<?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"/>  <!-- Amount of slaves -->
+  </process>
+  <!-- The slave process (with no 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>