Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move MSG and SimDag examples out of the sight of users
[simgrid.git] / examples / msg / app-masterworker / app-masterworker_d.xml
diff --git a/examples/msg/app-masterworker/app-masterworker_d.xml b/examples/msg/app-masterworker/app-masterworker_d.xml
deleted file mode 100644 (file)
index 947e9a3..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-<?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="master">
-    <argument value="20"/>       <!-- Number of tasks -->
-    <argument value="50000000"/>  <!-- Computation size of tasks -->
-    <argument value="1000000"/>   <!-- Communication size of tasks -->
-    <argument value="5"/>         <!-- Number of workers -->
-  </actor>
-  <!-- The worker processes (with mailbox to listen on as argument) -->
-  <actor host="Tremblay" function="worker" on_failure="RESTART">
-    <argument value="0"/> 
-  </actor>
-  <actor host="Jupiter" function="worker" on_failure="RESTART">
-    <argument value="1"/> 
-  </actor>
-  <actor host="Fafard" function="worker" on_failure="RESTART">
-    <argument value="2"/> 
-  </actor>
-  <actor host="Ginette" function="worker" on_failure="RESTART">
-    <argument value="3"/> 
-  </actor>
-  <actor host="Bourassa" function="worker" on_failure="RESTART">
-    <argument value="4"/> 
-  </actor>
-</platform>