Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move platform file
[simgrid.git] / examples / platforms / two_hosts_platform_shared.xml
diff --git a/examples/platforms/two_hosts_platform_shared.xml b/examples/platforms/two_hosts_platform_shared.xml
new file mode 100644 (file)
index 0000000..b1aeab6
--- /dev/null
@@ -0,0 +1,20 @@
+<?xml version='1.0'?>
+ <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
+ <platform version="3">
+ <AS  id="AS0"  routing="Full">
+   <host id="cpu0" power="4Gf"/>
+   <host id="cpu1" power="4Gf"/>
+   <link id="link0" bandwidth="125MBps" latency="100us" sharing_policy="SHARED"/>
+   <route src="cpu0" dst="cpu0">
+     <link_ctn id="link0"/>
+   </route>
+   <route src="cpu0" dst="cpu1">
+     <link_ctn id="link0"/>
+   </route>
+   <route src="cpu1" dst="cpu1">
+     <link_ctn id="link0"/>
+   </route>
+ </AS>
+ </platform>