File: masterworker.xml

package info (click to toggle)
simgrid 3.25%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 23,308 kB
  • sloc: cpp: 100,922; ansic: 68,086; fortran: 6,061; xml: 5,176; f90: 5,123; java: 4,094; python: 2,623; perl: 1,843; sh: 1,241; makefile: 47; javascript: 7; sed: 6
file content (32 lines) | stat: -rw-r--r-- 1,325 bytes parent folder | download | duplicates (2)
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
29
30
31
32
<?xml version='1.0'?>
<!DOCTYPE platform SYSTEM "https://simgrid.org/simgrid.dtd">
<platform version="4.1">
  <actor host="Jacquelin" function="app.masterworker.Master">
    <argument value="5"/>     <!-- Amount of tasks to dispatch -->
    <argument value="50000"/> <!-- Computation size of each task -->
    <argument value="10"/>    <!-- Communication size of each one -->
    <argument value="7"/>     <!-- Amount of workers waiting for orders -->
  </actor>

  <actor host="Tremblay" function="app.masterworker.Worker">
    <argument value="0"/>  <!-- Input mailbox -->
  </actor>
  <actor host="Fafard" function="app.masterworker.Worker">
    <argument value="1"/>  <!-- Input mailbox -->
  </actor>
  <actor host="Bourassa" function="app.masterworker.Worker">
    <argument value="2"/>  <!-- Input mailbox -->
  </actor>
  <actor host="Boivin" function="app.masterworker.Worker">
    <argument value="3"/>  <!-- Input mailbox -->
  </actor>
  <actor host="Ginette" function="app.masterworker.Worker">
    <argument value="4"/>  <!-- Input mailbox -->
  </actor>
  <actor host="Jupiter" function="app.masterworker.Worker">
    <argument value="5"/>  <!-- Input mailbox -->
  </actor>
  <actor host="Jacquelin" function="app.masterworker.Worker">
    <argument value="6"/>  <!-- Input mailbox -->
  </actor>
</platform>