Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add function MSG_comm_waitall for icomm and add one more example.
[simgrid.git] / examples / msg / icomms / deployment_peer.xml
diff --git a/examples/msg/icomms/deployment_peer.xml b/examples/msg/icomms/deployment_peer.xml
new file mode 100755 (executable)
index 0000000..b441518
--- /dev/null
@@ -0,0 +1,15 @@
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "simgrid.dtd">
+<platform version="2">
+  <!-- The master process (with some arguments) -->
+  <process host="Tremblay" function="sender">
+     <argument value="3"/>       <!-- Number of tasks -->
+     <argument value="50000000"/>  <!-- Computation size of tasks -->
+     <argument value="1000000"/>   <!-- Communication size of tasks -->
+     <argument value="1"/>         <!-- Number of receivers -->
+  </process>
+  <!-- The receiver processes -->
+  <process host="Ruby" function="receiver">
+    <argument value="0"/>
+  </process>
+</platform>