Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Python: Add Comm.wait_any
[simgrid.git] / examples / python / async-waitany / async-waitany_d.xml
diff --git a/examples/python/async-waitany/async-waitany_d.xml b/examples/python/async-waitany/async-waitany_d.xml
new file mode 100644 (file)
index 0000000..4b4161d
--- /dev/null
@@ -0,0 +1,17 @@
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "https://simgrid.org/simgrid.dtd">
+<platform version="4.1">
+  <!-- The master actor (with some arguments) -->
+  <actor host="Tremblay" function="sender">
+    <argument value="6"/>         <!-- Number of messages -->
+    <argument value="1000000"/>   <!-- Size of messages -->
+    <argument value="2"/>         <!-- Number of receivers -->
+  </actor>
+  <!-- The receiver processes -->
+  <actor host="Fafard" function="receiver">
+    <argument value="0"/>       <!-- My name -->
+  </actor>
+  <actor host="Jupiter" function="receiver">
+    <argument value="1"/>       <!-- My name -->
+  </actor>
+</platform>