Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Storage-kill: get rid of this platform file
[simgrid.git] / examples / platforms / storage / storage.xml
diff --git a/examples/platforms/storage/storage.xml b/examples/platforms/storage/storage.xml
deleted file mode 100644 (file)
index 9d1fa4f..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
-<platform version="4.1">
-  <config>
-    <prop id="path" value="../examples/platforms/"/>
-  </config>
-
-  <zone id="AS0" routing="Full">
-    <storage_type id="single_HDD" size="500GiB" content="content/storage_content.txt">
-      <model_prop id="Bwrite" value="30MBps" />
-      <model_prop id="Bread" value="100MBps" />
-      <model_prop id="Bconnection" value="120MBps" />
-    </storage_type>
-
-    <storage_type id="single_SSD" size="500GiB" content="content/storage_content.txt">
-      <model_prop id="Bwrite" value="60MBps" />
-      <model_prop id="Bread" value="200MBps" />
-      <model_prop id="Bconnection" value="220MBps" />
-    </storage_type>
-
-    <storage id="Disk1" typeId="single_HDD" attach="bob" />
-    <storage id="Disk2" typeId="single_SSD" attach="alice"
-             content="content/win_storage_content.txt"/>
-    <storage id="Disk3" typeId="single_HDD" attach="carl" />
-    <storage id="Disk4" typeId="single_SSD" attach="denise"
-             content="content/small_content.txt" />
-
-    <host id="bob" speed="1Gf">
-      <mount storageId="Disk1" name="/home"/>
-    </host>
-    <host id="alice" speed="1Gf">
-      <mount storageId="Disk2" name="c:"/>
-    </host>
-    <host id="carl" speed="1Gf">
-      <mount storageId="Disk3" name="/home"/>
-    </host>
-    <host id="denise" speed="1Gf">
-      <mount storageId="Disk2" name="c:"/>
-      <mount storageId="Disk4" name="/home"/>
-    </host>
-
-    <link id="link1" bandwidth="125MBps" latency="150us" />
-
-    <route src="bob" dst="alice">
-      <link_ctn id="link1" />
-    </route>
-  </zone>
-</platform>