From c9c9afbd2a24d9e7771636bd391de0c2c0271529 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr> Date: Fri, 4 Feb 2011 15:16:16 +0100 Subject: [PATCH] Make values more legible in XML files, and add a new file. File machines1000.xml is basically the same as cluster100.xml, but with smaller bandwidths (100 times smaller). --- Makefile | 2 +- README | 1 + cluster1000.xml | 6 +++--- machines1000.xml | 10 ++++++++++ 4 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 machines1000.xml diff --git a/Makefile b/Makefile index ce4b7c4..a4ccf17 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ TARGETS := $(DEFAULT_TARGETS) \ XML_FILES = \ Dep.xml Plat.xml \ platform.xml deployment.xml simple_async.xml \ - cluster1000.xml + cluster1000.xml machines1000.xml XML_DEV_FILES = $(XML_FILES:%.xml=%_dev.xml) diff --git a/README b/README index 7db502a..1cfa637 100644 --- a/README +++ b/README @@ -125,6 +125,7 @@ Liste de fichiers Plat.xml cluster1000.xml + machines1000.xml platform.xml * fichiers de description de déploiement (tests) diff --git a/cluster1000.xml b/cluster1000.xml index 35374ac..182e3f8 100644 --- a/cluster1000.xml +++ b/cluster1000.xml @@ -3,8 +3,8 @@ <platform version="3"> <AS id="AS0" routing="Full"> <cluster id="c" prefix="h-" suffix="" radical="100000-100999" - power="1000000000" - bw="125000000" lat="5E-5" - bb_bw="2250000000" bb_lat="5E-4" bb_sharing_policy="FATPIPE"/> + power="1e9" + bw="1.25e8" lat="5e-5" + bb_bw="2.25e9" bb_lat="5e-4" bb_sharing_policy="FATPIPE"/> </AS> </platform> diff --git a/machines1000.xml b/machines1000.xml new file mode 100644 index 0000000..4f64cb6 --- /dev/null +++ b/machines1000.xml @@ -0,0 +1,10 @@ +<?xml version='1.0'?> +<!DOCTYPE platform SYSTEM "simgrid.dtd"> +<platform version="3"> +<AS id="AS0" routing="Full"> + <cluster id="c" prefix="h-" suffix="" radical="100000-100999" + power="1e9" + bw="1.25e6" lat="5e-5" + bb_bw="2.25e7" bb_lat="5e-4" bb_sharing_policy="SHARED"/> +</AS> +</platform> -- 2.39.5