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
|
<?xml version='1.0'?>
<!DOCTYPE platform SYSTEM "https://simgrid.org/simgrid.dtd">
<platform version="4.1">
<config>
<prop id="path" value="../examples/platforms/"/>
</config>
<zone id="AS0" routing="Full">
<storage_type id="single_HDD" size="500GiB" content="content/storage_content.txt">
<model_prop id="Bwrite" value="30MBps" />
<model_prop id="Bread" value="100MBps" />
</storage_type>
<storage_type id="single_SSD" size="500GiB" content="content/storage_content.txt">
<model_prop id="Bwrite" value="60MBps" />
<model_prop id="Bread" value="200MBps" />
</storage_type>
<storage id="Disk1" typeId="single_HDD" attach="bob" />
<storage id="Disk2" typeId="single_SSD" attach="alice"
content="content/small_content.txt"/>
<storage id="Disk3" typeId="single_HDD" attach="carl" />
<storage id="Disk4" typeId="single_SSD" attach="denise"
content="content/small_content.txt" />
<host id="bob" speed="1Gf">
<mount storageId="Disk1" name="/home"/>
</host>
<host id="alice" speed="1Gf">
<mount storageId="Disk2" name="/tmp"/>
</host>
<host id="carl" speed="1Gf">
<mount storageId="Disk3" name="/home"/>
</host>
<host id="denise" speed="1Gf">
<mount storageId="Disk2" name="/tmp"/>
<mount storageId="Disk4" name="/home"/>
</host>
<link id="link1" bandwidth="125MBps" latency="150us" />
<route src="bob" dst="alice">
<link_ctn id="link1" />
</route>
</zone>
</platform>
|