Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
msg properties example
[simgrid.git] / examples / msg / properties / deployment_properties.xml
diff --git a/examples/msg/properties/deployment_properties.xml b/examples/msg/properties/deployment_properties.xml
new file mode 100644 (file)
index 0000000..b3dba67
--- /dev/null
@@ -0,0 +1,15 @@
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "surfxml.dtd">
+<platform version="2">
+  <!-- The master process (with some arguments) -->
+  <process host="Jacquelin" function="master">
+     <argument value="1"/>       <!-- Number of tasks -->
+     <argument value="50000000"/>  <!-- Computation size of tasks -->
+     <argument value="1000000"/>   <!-- Communication size of tasks -->
+     <argument value="Boivin"/>  <!-- First slave -->
+  </process>
+  <!-- The slave process (with no argument) -->
+  <process host="Boivin" function="slave">
+    <prop id="SomeProp" value="SomeValue"/>
+  </process>
+</platform>