~ubuntu-branches/ubuntu/raring/simgrid/raring

« back to all changes in this revision

Viewing changes to examples/msg/cloud/masterslave_virtual_machines.xml

  • Committer: Package Import Robot
  • Author(s): Martin Quinson
  • Date: 2013-01-31 00:24:51 UTC
  • mfrom: (10.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20130131002451-krejhf7w7h24lpsc
Tags: 3.9~rc1-1
* New upstream release: the "Grasgory" release. Major changes:
  - Gras was completely removed from this version.
  - Documentation reorganization to ease browsing it.
  - New default value for the TCP_gamma parameter: 4MiB

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version='1.0'?>
 
2
<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
 
3
<platform version="3">
 
4
  <!-- The master process (with some arguments) -->
 
5
  <process host="Tremblay" function="master">
 
6
     <argument value="20"/>       <!-- Number of tasks -->
 
7
     <argument value="50000000"/>  <!-- Computation size of tasks -->
 
8
     <argument value="1000000"/>   <!-- Communication size of tasks -->
 
9
     <argument value="Jupiter"/>  <!-- First slave -->
 
10
     <argument value="Fafard"/>   <!-- Second slave -->
 
11
     <argument value="Ginette"/>  <!-- Third slave -->
 
12
     <argument value="Bourassa"/> <!-- Last slave -->
 
13
  </process>
 
14
  <!-- The slave process (with no argument) -->
 
15
  <process host="Tremblay" function="slave"/>
 
16
  <process host="Jupiter" function="slave"/>
 
17
  <process host="Fafard" function="slave"/>
 
18
  <process host="Ginette" function="slave"/>
 
19
  <process host="Bourassa" function="slave"/>
 
20
</platform>