File: prop.xml

package info (click to toggle)
simgrid 4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,192 kB
  • sloc: cpp: 124,913; ansic: 66,744; python: 8,560; java: 6,773; fortran: 6,079; f90: 5,123; xml: 4,587; sh: 2,194; perl: 1,436; makefile: 111; lisp: 49; javascript: 7; sed: 6
file content (51 lines) | stat: -rw-r--r-- 1,715 bytes parent folder | download | duplicates (3)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version='1.0'?>
<!DOCTYPE platform SYSTEM "https://simgrid.org/simgrid.dtd">
<platform version="4.1">
  <!-- This file describe a super simple platform which main interest is to define some properties on hosts,
       actors and links. It is used in several regression cases on properties -->
  <zone  id="AS0"  routing="Full">
    <prop id="filename" value="prop.xml"/>
    <prop id="date" value="31-08-12"/>
    <prop id="author" value="pnavarro"/>

    <zone id="AS3"  routing="Full">
      <zone id="AS1" routing="None">
        <prop id="name" value="AS1"/>
      </zone>
      <zone id="AS2" routing="None">
        <prop id="name" value="AS2"/>
     </zone>
    </zone>

    <cluster id="acme" prefix="node-" suffix=".simgrid.org" radical="0-4" speed="1Gf"
             bw="125MBps" lat="50us" bb_bw="2.25GBps"  bb_lat="500us">
      <!-- these props will be attached to the network zone constituting the cluster -->
      <prop id="bla" value="acme cluster"/>
      <prop id="Hdd"  value="180"/>
      <prop id="mem"  value="42"/>
    </cluster>

    <zone  id="AS4"  routing="Full">
      <prop id="bla" value="bli"/>
      <host id="host1" speed="1Gf">
        <prop id="Hdd" value="180"/>
        <prop id="mem" value="4"/>
      </host>
      <host id="host2" speed="1Gf">
        <prop id="Hdd" value="120"/>
      </host>

      <link id="l1" bandwidth="125MBps" latency="100us">
        <prop id="type" value="Ethernet"/>
      </link>
      <link id="l2" bandwidth="125MBps" latency="100us">
        <prop id="type" value="ethernet"/>
      </link>

      <route src="host1" dst="host2">
        <link_ctn id="l1"/>
        <link_ctn id="l2"/>
      </route>
    </zone>
  </zone>
</platform>