Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'hypervisor' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid into hypervisor
[simgrid.git] / teshsuite / simdag / platforms / random.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
3 <platform version="3">
4
5 <config id="General">
6   <prop id="rngstream/seed" value="12345;12345;12345;12345;12345;12345"></prop>
7 </config>
8
9 <random_law_type id="Core2010" type="discrete_explicite" value="1:0.1;2:0.4;23=0.00001"/>
10 <random_law_type id="Core2012" type="discrete_explicite" value="1:0.01;2:0.8;23=0.00001"/>
11
12 <random_law_type id="CustomBandwidth" type="uniform" min="1000" max="10000"/>
13 <random_law_type id="CustomLatency" type="uniform" min="0.0001" max="0.0002"/>
14 <random_law_type id="CustomAvail" type="uniform" min="0" max="1"/>
15
16 <random_law_type id="expo01" type="exponential" rate="0.1"/>
17 <random_law_type id="wei01" type="weibull" shape="1" scale=".4"/>
18
19 <random_state_trace_type id="mystate" availa="expo01" unavail="wei01"/>
20 <random_availability_trace_type id="mypow_avail" duration="expo01" value="CustomAvail"/>
21 <random_availability_trace_type id="mybw" duration="expo01" value="CustomBandwidth"/>
22 <random_availability_trace_type id="mylat" duration="expo01" value="CustomLatency"/>
23
24 <random_law_type id="CustomPower" type="uniform" min="10000" max="400000"/>
25 <random_law_type id="CustomBWval" type="uniform" min="1000" max="10000"/>
26
27 <!--  tentative de description de variables linéairement corrélées. À revoir et confirmer... -->
28 <random_law_type id="white" type="Gaussion" mean="1000" max="10000"/>
29 <random_core_and_power_type 
30 id_core="foo" 
31 id_power="Core2010" 
32 mode="linear" base="NBcore" linear_a="0.5" linear_b="1000" noise="white"/>
33
34 <AS  id="AS0"  routing="Full">
35   <!-- Horizontal streams -->
36   <host id="foo" power="123.121kf" state_trace="mystate" availability_trace="mypow_avail"/> 
37   <link id="bar" bandwidth=""   bandwidth_trace="mybw" latency_trace="mylat"/>
38   <cluster  id="bob_cluster"
39         prefix="bob"
40         suffix=".hamburger.edu"
41         radical="0-1"
42         power="100kf"
43         bw=""
44         lat="50us"
45         bb_bw="2.25GBps"
46         bb_lat="500us"
47         bw_trace="mybw"
48         availability_trace="mywpow_avail"
49         state_trace="mystate"
50         />
51         
52   <!-- Vertical stream ? -->
53   <peer_set id="peer_home"
54         prefix="home"
55         suffix=".edu"
56         radical="1-10000"
57         power="CustomPower"
58         bw_in_trace="mybw"
59         bw_out="CustomBWval"
60         lat="50us"
61         />
62    <peer_set 
63      />
64 </AS>   
65 </platform>