1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<?xml version='1.0'?>
<!DOCTYPE platform SYSTEM "https://simgrid.org/simgrid.dtd">
<platform version="4.1">
<!-- The master actor (with 4 arguments) -->
<actor host="Tremblay" function="master">
<argument value="5"/> <!-- Workers count -->
<argument value="20"/> <!-- Tasks count -->
<argument value="50000000"/> <!-- Computation size of tasks -->
<argument value="1000000"/> <!-- Communication size of tasks -->
</actor>
<!-- The worker actors (with one argument each: the ID of this worker) -->
<actor host="Tremblay" function="worker">
<argument value="0" />
</actor>
<actor host="Jupiter" function="worker">
<argument value="1" />
</actor>
<actor host="Fafard" function="worker">
<argument value="2" />
</actor>
<actor host="Ginette" function="worker">
<argument value="3" />
</actor>
<actor host="Bourassa" function="worker">
<argument value="4" />
</actor>
</platform>
|