-
Notifications
You must be signed in to change notification settings - Fork 0
/
remote_io.xml
34 lines (26 loc) · 1.05 KB
/
remote_io.xml
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
<?xml version='1.0'?>
<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
<platform version="4">
<AS id="AS0" routing="Full">
<storage_type id="SATA-II_HDD" size="10GB" model="linear_no_lat"
content_type="txt_unix" content="content/small_content.txt">
<model_prop id="Bread" value="1kBps"/>
<model_prop id="Bwrite" value="1kBps"/>
<model_prop id="Bconnection" value="100MBps"/>
</storage_type>
<storage id="Disk1" typeId="SATA-II_HDD" attach="carl"/>
<storage id="Disk2" typeId="SATA-II_HDD" attach="dave"
content_type="txt_windows" content="content/win_storage_content.txt" />
<host id="carl" speed="1Gf">
<mount storageId="Disk1" name="/scratch"/>
</host>
<host id="dave" speed="1Gf" core="1">
<mount storageId="Disk2" name="c:"/>
<mount storageId="Disk1" name="/scratch"/>
</host>
<link id="link6" bandwidth="1kBps" latency="0us"/>
<route src="carl" dst="dave">
<link_ctn id="link6"/>
</route>
</AS>
</platform>