Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ruby examples
[simgrid.git] / examples / ruby / deploy.xml
diff --git a/examples/ruby/deploy.xml b/examples/ruby/deploy.xml
new file mode 100644 (file)
index 0000000..a0c6ec9
--- /dev/null
@@ -0,0 +1,24 @@
+<?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="4"/>  <!-- Amount of slaves -->
+  </process>
+  <!-- The slave process (argument: slave rank) -->
+  <process host="Bourassa" 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>
+</platform>