Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a platform with one cluster and a host
authorNavarrop <Pierre.Navarro@imag.fr>
Wed, 30 Nov 2011 15:30:51 +0000 (16:30 +0100)
committerNavarrop <Pierre.Navarro@imag.fr>
Wed, 30 Nov 2011 15:30:51 +0000 (16:30 +0100)
examples/platforms/One_cluster_one_host.xml [new file with mode: 0644]

diff --git a/examples/platforms/One_cluster_one_host.xml b/examples/platforms/One_cluster_one_host.xml
new file mode 100644 (file)
index 0000000..1966d43
--- /dev/null
@@ -0,0 +1,24 @@
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
+
+<platform version="3">
+<AS  id="AS0"  routing="Floyd">
+    
+  <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" power="1000000000"/>
+ </AS>
+
+  <link id="link1" bandwidth="100000" latency="0.01"/>
+  
+  <ASroute src="my_cluster_1" dst="AS1"
+    gw_src="router1"
+    gw_dst="host1">
+    <link_ctn id="link1"/>
+  </ASroute>
+  
+</AS>
+</platform>