Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
convert all xml files to the new DTD v4
[simgrid.git] / examples / platforms / cluster_and_one_host.xml
index a789fcb..3e1cd55 100644 (file)
@@ -1,24 +1,20 @@
 <?xml version='1.0'?>
-<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
+<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
+<platform version="4">
+ <AS id="AS0"  routing="Full">   
+  <cluster id="my_cluster_1" prefix="c-" suffix=".me"
+          radical="0-1" speed="1Gf" bw="125MBps" lat="50us"
+           router_id="router1"/>
 
-<platform version="3">
-<AS  id="AS0"  routing="bob">
-    
-  <cluster id="my_cluster_1" prefix="c-" suffix=""
-               radical="0-1"   power="1000000000"    bw="125000000"     lat="5E-5"
-        router_id="router1"/>
+  <AS id="AS1" routing="None">
+    <host id="host1" speed="1Gf"/>
+  </AS>
 
- <AS id="AS1" routing="none">
-    <host id="host1" power="1000000000"/>
- </AS>
-
-  <link id="link1" bandwidth="100000" latency="0.01"/>
+  <link id="link1" bandwidth="100kBps" latency="10ms"/>
   
   <ASroute src="my_cluster_1" dst="AS1"
-    gw_src="router1"
-    gw_dst="host1">
+    gw_src="router1" gw_dst="host1">
     <link_ctn id="link1"/>
   </ASroute>
-  
-</AS>
+ </AS>
 </platform>