Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add a platform file using the new disk tag
[simgrid.git] / examples / platforms / hosts_with_disks.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "https://simgrid.org/simgrid.dtd">
3 <platform version="4.1">
4   <zone id="AS0" routing="Full">
5     <host id="bob" speed="1Gf">
6       <disk id="Disk1" read_bw="100MBps" wite_bw="30MBps">
7         <prop id="size" value="500GiB"/>
8       </disk>
9     </host>
10
11     <host id="alice" speed="1Gf">
12       <mount id="Disk2" read_bw="200MBps" write_bw="60MBps"/>
13     </host>
14
15     <link id="link1" bandwidth="125MBps" latency="150us" />
16
17     <route src="bob" dst="alice">
18       <link_ctn id="link1" />
19     </route>
20   </zone>
21 </platform>