Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / examples / platforms / three_multicore_hosts.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
3 <platform version="4">
4   <AS id="siteA" routing="Full">
5     <host id="PM0" speed="8.095Gf" core="4"/>
6     <host id="PM1" speed="8.095Gf" core="4"/>
7     <host id="PM2" speed="8.095Gf" core="2"/>
8
9     <link id="link1" bandwidth="125MBps" latency="100us" />
10
11     <route src="PM0" dst="PM1">
12       <link_ctn id="link1"/>
13     </route>
14     <route src="PM0" dst="PM2">
15       <link_ctn id="link1"/>
16     </route>
17     <route src="PM1" dst="PM2">
18       <link_ctn id="link1"/>
19     </route>
20   </AS>
21 </platform>