Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
doc : misc : documented that the numeric sep in trace file depends on system locale.
[simgrid.git] / doc / platform.doc
1 /*! \page platform Platform Description
2
3 \htmlinclude .platform.doc.toc
4
5 In order to run any simulation, SimGrid needs 3 things: something to run 
6 (so, your code), a description of the platform on which you want to run your 
7 application, and finally it needs something to know where to deploy what.
8
9 For the latest 2 entries, you have basically 2 ways to give it as an input :
10 \li You can program it, either using the Lua console (\ref MSG_Lua_funct) or if you're using MSG some 
11 of its platform and deployments functions(\ref msg_simulation). If you want to use it, please refer 
12 to its doc. (you can also  check the section  \ref pf_flexml_bypassing but this is strongly deprecated, as there is a new way to do it properly, but not yet documented).
13 \li You can use two XML files: a platform description file and a deployment 
14 description one.
15
16 As the second one (deployment description) just consists of saying which 
17 process runs where and which arguments it should take as input, the easier way to 
18 understand how to write it is just to take a look at the examples. Here is an example of it:
19
20 \verbatim
21 <?xml version='1.0'?>
22 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
23 <platform version="3">
24   <!-- The master process (with some arguments) -->
25   <process host="Tremblay" function="master">
26      <argument value="20"/>       <!-- Number of tasks -->
27      <argument value="50000000"/>  <!-- Computation size of tasks -->
28      <argument value="1000000"/>   <!-- Communication size of tasks -->
29      <argument value="Jupiter"/>  <!-- First slave -->
30      <argument value="Fafard"/>   <!-- Second slave -->
31      <argument value="Ginette"/>  <!-- Third slave -->
32      <argument value="Bourassa"/> <!-- Last slave -->
33      <argument value="Tremblay"/> <!-- Me! I can work too! -->
34   </process>
35   <!-- The slave processes (with no argument) -->
36   <process host="Tremblay" function="slave"/>
37   <process host="Jupiter" function="slave"/>
38   <process host="Fafard" function="slave"/>
39   <process host="Ginette" function="slave"/>
40   <process host="Bourassa" function="slave"/>
41 </platform>
42 \endverbatim
43
44 The platform description is slightly more complicated. This documentation is all about how to write this file: what are the basic concept it relies on, what possibilities are offered, and some hints and tips on how to write a good platform description.
45
46 \section pf_overview Some words about XML and DTD
47
48 We choose to use XML because of some of its possibilities: if you're 
49 using an accurate XML editor, or simply using any XML plug-in for eclipse, it 
50 will allow you to have cool stuff like auto-completion, validation and checking,
51 so all syntaxic errors may be avoided this way.
52
53 the XML checking is done based on the dtd which is nowaday online at 
54 <a href="http://simgrid.gforge.inria.fr/simgrid.dtd">http://simgrid.gforge.inria.fr/simgrid.dtd</a>
55 while you might be tempted to read it, it will not help you that much.
56
57 If you read it, you should notice two or three important things :
58 \li The platform tags contains a version attributes. At the time of writing this doc
59 the current version is 3.
60 \li The DTD contains definitions for the 2 files used by SimGrid (platform 
61 description and deployment).
62 \li There is a bunch of possibilities ! Let's see what's in it
63
64
65 \section pf_basics Basic concepts
66
67 Nowadays, the Internet is composed of a bunch of independently managed networks. Within each of those networks, there are entry and exit points (most of the time, you can both enter and exit through the same point) that allows to go out of the current network and reach other networks. At the upper level, these networks are known as <b>Autonomous System (AS)</b>, while at the lower level they are named sub-networks, or LAN. Indeed they are autonomous: routing is defined within the limits of his network by the administrator, and so, those networks can continue to operate without the existence of other networks. There are some rules to get out of networks by the entry points (or gateways). Those gateways allow you to go from a network to another one. Inside of each autonomous system, there is a bunch of equipments (cables, routers, switches, computers) that belong to the autonomous system owner.
68
69 SimGrid platform description file relies exactly on the same concepts as real life platform. Every resource (computers, network equipments, and so on) belongs to an AS. Within this AS, you can define the routing you want between its elements (that's done with the routing model attribute and eventually with some \<route\> tag). You define AS by using ... well ... the \<AS\> tag. An AS can also contain some AS : AS allows you to define the hierarchy of your platform. 
70
71 Within each AS, you basically have the following type of resources:
72 \li <b>host</b>: an host, with cores in it, and so on
73 \li <b>router</b>: a router or a gateway.
74 \li <b>link</b>: a link, that defines a connection between two (or more) resources (and have a bandwidth and a latency)
75 \li <b>cluster</b>: like a real cluster, contains many hosts interconnected by some dedicated network.
76
77 Between those elements, a routing has to be defined. As the AS is supposed to be Autonomous, this has to be done at the AS level. As AS handles two different types of entities (<b>host/router</b> and <b>AS</b>) you will have to define routes between those elements. A network model have to be provided for AS, but you may/will need, depending of the network model, or because you want to bypass the default beahviour to defines routes manually. There are 3 tags to use :
78 \li <b>ASroute</b>: to define routes between two  <b>AS</b>
79 \li <b>route</b>: to define routes between two <b>host/router</b>
80 \li <b>bypassRoute</b>: to define routes between two <b>AS</b> that will bypass default routing.
81
82 Here is an illustration of the overall concepts:
83
84 \htmlonly
85 <a href="AS_hierarchy.png" border=0><img src="AS_hierarchy.png" width="30%" border=0 align="center"></a>
86 <br/>
87 \endhtmlonly
88  Circles represent processing units and squares represent network routers. Bold
89     lines represent communication links. AS2 models the core of a national
90     network interconnecting a small flat cluster (AS4) and a larger
91     hierarchical cluster (AS5), a subset of a LAN (AS6), and a set of peers
92     scattered around the world (AS7).
93
94
95 This is all for the concepts ! To make a long story short, a SimGrid platform is made of a hierarchy of AS, each of them containing resources, and routing is defined at AS level. Let's have a deeper look in the tags.
96
97
98
99 \section pf_pftags Describing resources and their organization
100
101 \subsection  pf_As Platform organization tag : AS
102
103 AS (or Autonomous System) is an organizational unit that contains resources and defines routing between them, and eventually some other AS. So it allows you to define a hierarchy into your platform. <b>*ANY*</b> resource <b>*MUST*</b> belong to an AS. There are a few attributes.
104
105 <b>AS</b> attributes : 
106 \li <b>name (mandatory)</b>: the identifier of AS to be used when referring to it. 
107 \li <b>routing (mandatory)</b>: the routing model used into it. By model we mean the internal way the simulator will manage routing. That also have a big impact on how many information you'll have to provide to help the simulator to route between the AS elements. <b>routing</b> possible values are <b>Full, Floyd, Dijkstra, DijkstraCache, none, RuleBased, Vivaldi, Cluster</b>. For more explanation about what to choose, take a look at the section devoted to it below.
108
109 Elements into an AS are basically resources (computers, network equipments) and some routing informations if necessary (see below for more explanation).
110
111 <b>AS example</b>
112 \verbatim
113 <AS  id="AS0"  routing="Full">
114    <host id="host1" power="1000000000"/>
115    <host id="host2" power="1000000000"/>
116    <link id="link1" bandwidth="125000000" latency="0.000100"/>
117    <route src="host1" dst="host2"><link_ctn id="link1"/></route>
118  </AS>
119 \endverbatim
120
121
122 In this example, AS0 contains two hosts (host1 and host2). The route between the hosts goes through link1.
123 \subsection pf_Cr Computing resources: hosts, clusters and peers.
124
125 \subsubsection pf_host host
126 A <b>host</b> represents a computer, where you will be able to execute code and from which you can send and receive information. A host can contain more than 1 core. Here are the attributes of a host :
127
128
129 <b>host</b> attributes : 
130 \li <b>id (mandatory)</b>: the identifier of the host to be used when referring to it.
131 \li <b>power (mandatory)</b>:the peak number FLOPS the CPU can manage. Expressed in flop/s.
132 \li <b>core</b>: The number of core of this host. If setted, the power gives the power of one core. The specified computing power will be available to up to 6 sequential
133 tasks without sharing. If more tasks are placed on this host, the
134 resource will be shared accordingly. For example, if you schedule 12
135 tasks on the host, each will get half of the computing power. Please
136 note that although sound, this model were never scientifically
137 assessed. Please keep this fact in mind when using it.
138
139 \li <b>availability</b>: specify if the percentage of power available. 
140 \li <b>availability_file</b>: Allow you to use a file as input. This file will contain availability traces for this computer. The syntax of this file is defined below. Possible values : absolute or relative path, syntax similar to the one in use on your system.
141 \li <b>state</b>: the computer state, as in : is that computer ON or OFF. Possible values : "ON" or "OFF".
142 \li <b>state_file</b>: Same mechanism as availability_file, similar syntax for value.
143 \li <b>coordinates</b>: you'll have to give it if you choose the vivaldi, coordinate-based routing model for the AS the host belongs to. More details about it in the P2P coordinate based section.
144
145 An host can contain some <b>mount</b> that defines mounting points between some storage resource and the <b>host</b>. Please refer to the storage doc for more information. 
146
147 An host can also contain the <b>prop</b> tag. the prop tag allows you to define additional informations on this host following the attribute/value schema. You may want to use it to give information to the tool you use for rendering your simulation, for example.
148
149 <b>host example</b>
150 \verbatim
151    <host id="host1" power="1000000000"/>
152    <host id="host2" power="1000000000">
153         <prop id="color" value="blue"/>
154         <prop id="rendershape" value="square"/>
155    </host>      
156 \endverbatim
157
158
159 <b>Expressing dynamicity.</b>
160 It is also possible to seamlessly declare a host whose
161 availability changes over time using the availability_file
162 attribute and a separate text file whose syntax is exemplified below.
163
164
165 <b>IMPORTANT NOTE:</b> the numeric separator in both trace and availability depends on your system locale. Examples below holds for LC_NUMERIC=C. 
166
167
168 <b>Adding a trace file</b>
169 \verbatim
170     <platform version="1">
171       <host id="bob" power="500000000" 
172             availability_file="bob.trace" />
173     </platform>
174 \endverbatim
175 <b>Example of "bob.trace" file</b>
176 \verbatim
177 PERIODICITY 1.0
178   0.0 1.0
179   11.0 0.5
180   20.0 0.8
181 \endverbatim
182
183 At time 0, our host will deliver 500~Mflop/s. At time 11.0, it will
184 deliver half, that is 250~Mflop/s until time 20.0 where it will
185 will start delivering 80\% of its power, that is 400~Mflop/s. Last, at
186 time 21.0 (20.0 plus the periodicity 1.0), we loop back to the
187 beginning and the host will deliver again 500~Mflop/s.
188
189 <b>Changing initial state</b> 
190
191 It is also possible to specify whether the host
192 is up or down by setting the <b>state</b> attribute to either <b>ON</b>
193 (default value) or <b>OFF</b>.
194
195 <b>Expliciting the default value "ON"</b>
196 \verbatim
197   <platform version="1">
198      <host id="bob" 
199            power="500000000" 
200           state="ON" />
201   </platform>
202 \endverbatim
203 <b>Host switched off</b>
204 \verbatim
205   <platform version="1">
206      <host id="bob" 
207            power="500000000" 
208            state="OFF" />
209   </platform>
210 \endverbatim
211 <b>Expressing churn</b>
212 To express the fact that a host can change state over time (as in P2P
213 systems, for instance), it is possible to use a file describing the time
214 at which the host is turned on or off. An example of the content
215 of such a file is presented below.
216 <b>Adding a state file</b>
217   \verbatim  
218     <platform version="1">
219       <host id="bob" power="500000000" 
220            state_file="bob.fail" />
221     </platform>
222   \endverbatim
223 <b>Example of "bob.fail" file</b>
224 \verbatim
225   PERIODICITY 10.0
226   1.0 -1.0
227   2.0 1.0
228 \endverbatim
229
230 A negative value means <b>down</b> while a positive one means <b>up and
231   running</b>. From time 0.0 to time 1.0, the host is on. At time 1.0, it is
232 turned off and at time 2.0, it is turned on again until time 12 (2.0 plus the
233 periodicity 10.0). It will be turned on again at time 13.0 until time 23.0, and
234 so on.
235
236
237
238 \subsubsection pf_cluster cluster
239 A <b>cluster</b> represents a cluster. It is most of the time used when you want to have a bunch of machine defined quickly. It must be noted that cluster is meta-tag : <b>from the inner SimGrid point of view, a cluster is an AS where some optimized routing is defined</b> . The default inner organisation of the cluster is as follow :  
240 \verbatim
241                  _________
242                 |          |
243                 |  router  |
244     ____________|__________|_____________ backbone
245       |   |   |              |     |   |        
246     l0| l1| l2|           l97| l96 |   | l99
247       |   |   |   ........   |     |   |
248       |                                |
249     c-0.me                             c-99.me  
250 \endverbatim
251
252 You have a set of <b>host</b> defined. Each of them has a <b>link</b> to a central backbone (backbone is a <b>link</b> itsef, as a link can be used to represent a switch, see the switch or <b>link</b> section below for more details about it). A <b>router</b> gives a way to the <b>cluster</b> to be connected to the outside world. Internally, cluster is then an AS containing all hosts : the router is the default gateway for the cluster. 
253
254 There is an alternative organization, which is as follow : 
255 \verbatim
256                  _________
257                 |          |
258                 |  router  |
259                 |__________|
260                     / | \
261                    /  |  \
262                l0 / l1|   \l2 
263                  /    |    \
264                 /     |     \
265             host0   host1   host2       
266 \endverbatim
267
268 The principle is the same, except we don't have the backbone. The way to obtain it is simple : you just have to let bb_* attributes unsetted.
269
270
271
272 <b>cluster</b> attributes : 
273 \li <b>id (mandatory)</b>: the identifier of the cluster to be used when referring to it.
274 \li <b>prefix (mandatory)</b>: each node of the cluster has to have a name. This is its prefix.
275 \li <b>suffix (mandatory)</b>: node suffix name.
276 \li <b>radical (mandatory)</b>: regexp used to generate cluster nodes name. Syntax is quite common, "10-20" will give you 11 machines numbered from 10 to 20, "10-20;2" will give you 12 machines, one with the number 2, others numbered as before. The produced number is concatenated  between prefix and suffix to form machine names.
277 \li <b>power (mandatory)</b>: same as <b>host</b> power.
278 \li <b>core</b>: same as <b>host</b> core.
279 \li <b>bw (mandatory)</b>: bandwidth for the links between nodes and backbone (if any). See <b>link</b> section for syntax/details.
280 \li <b>lat (mandatory)</b>: latency for the links between nodes and backbone (if any). See <b>link</b> section for syntax/details.
281 \li <b>sharing_policy</b>: sharing policy for the links between nodes and backbone (if any). See <b>link</b> section for syntax/details.
282 \li <b>bb_bw </b>: bandwidth for backbone (if any). See <b>link</b> section for syntax/details. If both bb_* attributes are ommited, no backbone is create (alternative cluster architecture described before).
283 \li <b>bb_lat </b>: latency for backbone (if any). See <b>link</b> section for syntax/details. If both bb_* attributes are ommited, no backbone is create (alternative cluster architecture described before).
284 \li <b>bb_sharing_policy</b>: sharing policy for the backbone (if any). See <b>link</b> section for syntax/details.
285 \li <b>availability_file</b>: Allow you to use a file as input for availability. Similar to <b>hosts</b> attribute.
286 \li <b>state_file</b>: Allow you to use a file as input for states. Similar to <b>hosts</b> attribute.
287
288 the router name is defined as the resulting String in the following java line of code: router_name = prefix + "router_ + suffix ;
289
290
291 <b>cluster example</b>
292 \verbatim
293 <cluster id="my_cluster_1" prefix="" suffix=""
294                 radical="0-262144"      power="1000000000"    bw="125000000"     lat="5E-5"/>
295 <cluster id="my_cluster_1" prefix="c-" suffix=".me"
296                 radical="0-99"  power="1000000000"    bw="125000000"     lat="5E-5"
297         bb_bw="2250000000" bb_lat="5E-4"/>
298 \endverbatim
299
300 \subsubsection pf_peer peer
301 A <b>peer</b> represents a peer, as in Peer-to-Peer (P2P). Basically, as cluster, <b>A PEER IS INTERNALLY INTERPRETED AS AN \<AS\></b>. It's just a kind of shortcut that does the following : 
302 \li It creates an host 
303 \li Two links : one for download and one for upload. This is convenient to use and simulate stuff under the last mile model (as ADSL peers).
304 \li It creates a gateway that serve as entry point for this peer zone. This router has coordinates.
305  
306 <b>peer</b> attributes : 
307 \li <b>id (mandatory)</b>: the identifier of the peer to be used when referring to it.
308 \li <b>power CDATA (mandatory)</b>: as in host
309 \li <b>bw_in CDATA (mandatory)</b>: bandwidth in.
310 \li <b>bw_out CDATA (mandatory)</b>:bandwidth out.
311 \li <b>lat CDATA (mandatory)</b>: Latency for in and out links.
312 \li <b>coordinates</b>: coordinates of the gateway for this peer.
313 \li <b>sharing_policy</b>: sharing policy for links. Can be SHARED or FULLDUPLEX, FULLDUPLEX is the default. See <b>link</b> description for details.
314 \li <b>availability_file</b>: availability file for the peer. Same as host availability file. See <b>host</b> description for details.
315 \li <b>state_file </b>: state file for the peer. Same as host state file. See <b>host</b> description for details.
316
317 \subsection pf_ne Network equipments: links and routers
318
319 You have basically two entities available to represent network entities : 
320 \li <b>link</b>: represents something that has a limited bandwidth, a latency, and that can be shared according to TCP way to share this bandwidth. <b>LINKS ARE NOT EDGES BUT HYPEREDGES</b>: it means that you can have more than 2 equipments connected to it.
321 \li <b>router</b>: represents something that one message can be routed to, but does not accept any code, nor have any influence on the performances (no bandwidth, no latency, not anything).<b>ROUTERS ARE ENTITIES (ALMOST) IGNORED BY THE SIMULATOR WHEN THE SIMULATION HAS BEGUN</b>. If you want to represent something like a switch, you must use <b>link</b> (see section below). Routers are used in order to run some routing algorithm and determine routes (see routing section for details).
322
323 let's see deeper what those entities hide.
324
325 \subsubsection pf_router router
326 As said before, <b>router</b> is used only to give some information for routing algorithms. So, it does not have any attributes except : 
327  
328 <b>router</b> attributes : 
329 \li <b>id (mandatory)</b>: the identifier of the router to be used when referring to it.
330 \li <b>coordinates</b>: you'll have to give it if you choose the vivaldi, coordinate-based routing model for the AS the host belongs to. More details about it in the P2P coordinates based section.
331
332
333 <b>router example</b>
334 \verbatim
335  <router id="gw_dc1_horizdist"/>
336 \endverbatim
337
338 \subsubsection pf_link link
339 Network links can represent one-hop network connections. They are characterized by their id and their bandwidth.
340 The latency is optional with a default value of 0.0. For instance, we can declare a network link named link1
341 having bandwidth of 1Gb/s and a latency of 50µs.
342 Example link:
343 \verbatim
344  <link id="LINK1" bandwidth="125000000" latency="5E-5"/>
345 \endverbatim
346 <b>Expressing sharing policy</b>
347
348 By default a network link is SHARED, that is if more than one flow go through
349 a link, each gets a share of the available bandwidth similar to the share TCP connections offers. 
350
351 Conversely if a link is defined as a FATPIPE, each flow going through this link will get all the available bandwidth, whatever the number of flows. The FATPIPE
352 behavior allows to describe big backbones that won't affect performances (except latency). Finally a link can be considered as FULLDUPLEX, that means that in the simulator, 2 links (one named UP and the other DOWN) will be created for each link, so as the transfers from one side to the other will interact similarly as TCP when ACK returning packets circulate on the other direction. More discussion about it is available in <b>link_ctn</b> description. 
353
354 \verbatim
355  <link id="SWITCH" bandwidth="125000000" latency="5E-5" sharing_policy="FATPIPE" />
356 \endverbatim
357
358 <b>Expressing dynamicity and failures</b>
359
360  As for hosts, it is possible to declare links whose state, bandwidth or latency change over the time. In this case, the bandwidth and latency attributes are respectively replaced by the bandwidth file and latency file attributes and the corresponding text files.
361
362 \verbatim
363  <link id="LINK1" state_file="link1.fail" bandwidth="80000000" latency=".0001" bandwidth_file="link1.bw" latency_file="link1.lat" />
364 \endverbatim
365
366 It has to be noted that even if the syntax is the same, the semantic of bandwidth and latency trace files
367 differs from that of host availability files. Those files do not express availability as a fraction of the available
368 capacity but directly in bytes per seconds for the bandwidth and in seconds for the latency. This is because
369 most tools allowing to capture traces on real platforms (such as NWS ) express their results this way.
370
371 <b>Example of "link1.bw" file</b>
372 \verbatim
373  
374 1 PERIODICITY 12.0
375 2 4.0 40000000
376 3 8.0 60000000
377 \endverbatim
378 <b>Example of "link1.lat" file</b>
379 \verbatim
380  1 PERIODICITY 5.0
381 2 1.0 0.001
382 3 2.0 0.01
383 4 3.0 0.001
384 \endverbatim
385 In this example, the bandwidth varies with a period of 12 seconds while the latency varies with a period of
386 5 seconds. At the beginning of simulation, the link’s bandwidth is of 80,000,000 B/s (i.e., 80 Mb/s). After four
387 seconds, it drops at 40 Mb/s, and climbs back to 60 Mb/s after eight seconds. It keeps that way until second
388 12 (ie, until the end of the period), point at which it loops its behavior (seconds 12-16 will experience 80 Mb/s,
389 16-20 40 Mb/s and so on). In the same time, the latency values are 100µs (initial value) on the [0, 1[ time
390 interval, 1ms on [1, 2[, 10ms on [2, 3[, 1ms on [3,5[ (i.e., until the end of period). It then loops back, starting
391 at 100µs for one second.
392
393 <b>link</b> attributes : 
394 \li <b>id (mandatory)</b>: the identifier of the link to be used when referring to it.
395 \li <b>bandwidth (mandatory)</b>: bandwidth for the link.
396 \li <b>lat </b>: latency for the link. Default is 0.0.
397 \li <b>sharing_policy</b>: sharing policy for the link.
398 \li <b>state</b>: Allow you to to set link as ON or OFF. Default is ON.
399 \li <b>bandwidth_file</b>: Allow you to use a file as input for bandwidth.
400 \li <b>latency_file</b>: Allow you to use a file as input for latency.
401 \li <b>state_file</b>: Allow you to use a file as input for states.
402
403 As an host, a <b>link</b> tag can also contain the <b>prop</b> tag.
404
405 <b>link example</b>
406 \verbatim
407    <link id="link1" bandwidth="125000000" latency="0.000100"/>
408 \endverbatim
409
410
411 \subsection pf_storage Storage
412 <b>Note : This is a prototype version that should evolve quickly, this is just some doc valuable only at the time of writing this doc</b>
413 This section describes the storage management under SimGrid ; nowadays
414 it's only usable with MSG. It relies basically on linux-like concepts.
415 You also may want to have a look to its corresponding section in \ref
416 msg_file_management ; functions access are organized as a POSIX-like interface.
417
418 \subsubsection pf_sto_conc Storage Main concepts
419 Basically there is 3 different entities to know : 
420 \li the <b>storage_type</b>: here you define some kind of storage that you will instantiate many type on your platform. Think of it like a definition of throughput of a specific disk.
421 \li the <b>storage</b>: instance of a <b>storage_type</b>. Defines a new storage of <b>storage_type</b>
422 \li the <b>mount</b>: says that the storage is located into this specific resource.
423
424 the content of a storage has to be defined in a content file that contains the content. The path to this file has to be passed within the <b>content</b> attribute . Here is a way to generate it:
425 \verbatim
426 find /path/you/want -type f -exec ls -l {} \; 2>/dev/null > ./content.txt
427 \endverbatim
428
429 \subsubsection pf_sto_sttp storage_type
430
431
432 <b>storage_type</b> attributes : 
433 \li <b>id (mandatory)</b>: the identifier of the storage_type to be used when referring to it.
434 \li <b>model (mandatory)</b>: Unused for now by the simulator (but mandatory, ok)
435 \li <b>content</b>: default value 0. The file containing the disk content. (may be moved soon or later to <b>storage</b> tag.
436
437 The tag must contains some predefined prop, as may do some other resources tags. This should moved to attributes soon or later.
438 <b>storage_type</b> mandatory <b>prop</b> : 
439 \li <b>Bwrite</b>: value in B/s. Write throughput
440 \li <b>Bread</b>: value in B/s. Read throughput
441 \li <b>Bconnexion</b>: value in B/s. Connection throughput (i.e. the throughput of the storage connector).
442
443 \subsubsection pf_sto_st storage
444
445 <b>storage_type</b> attributes : 
446 \li <b>id (mandatory)</b>: the identifier of the storage to be used when referring to it.
447 \li <b>typeId (mandatory)</b>: the identifier of the storage_type that this storage  belongs to.
448
449
450 \subsubsection pf_sto_mo mount
451
452
453 <b>mount</b> attributes : 
454 \li <b>id (mandatory)</b>: the id of the <b>storage</b> that must be mounted on that computer.
455 \li <b>name (mandatory)</b>: the name that will be the logical reference to this disk (the mount point).
456
457 \subsubsection pf_sto_mst mstorage
458 <b>Note : unused for now</b>
459 <b>mstorage</b> attributes : 
460 \li <b>typeId (mandatory)</b>: the id of the <b>storage</b> that must be mounted on that computer.
461 \li <b>name (mandatory)</b>: the name that will be the logical reference to this disk (the mount point).
462
463 \section pf_routing Routing
464
465 In order to run fast, it has been chosen to use static routing within SimGrid. By static, it means that it is calculated once (or almost), and will not change during execution. We chose to do that because it is rare to have a real deficience of a resource ; most of the time, a communication fails because the links are too overloaded, and so your connection stops before the time out, or because the computer at the other end is not answering. 
466
467 We also chose to use shortests paths algorithms in order to emulate routing. Doing so is consistent with the reality: RIP, OSPF, BGP are all calculating shortest paths. They have some convergence time, but at the end, so when the platform is stable (and this should be the moment you want to simulate something using SimGrid) your packets will follow the shortest paths.  
468  
469 \subsection pf_rm Routing models
470
471 Within each AS, you have to define a routing model to use. You have basically 3 main kind of routing models :
472 \li Shortest-path based models: you let SimGrid calculates shortest paths and manage it. Behaves more or less as most real life routing.
473 \li Manually-entered route models: you'll have to define all routes manually by yourself into the platform description file. Consistent with some manually managed real life routing.
474 \li Simple/fast models: those models offers fast, low memory routing algorithms. You should consider to use it if you can make some assumptions about your AS. Routing in this case is more or less ignored
475
476 \subsubsection pf_raf The router affair
477
478 Expressing routers becomes mandatory when using shortest-path based models or when using ns-3 or the bindings to the GTNetS packet-level simulator instead of the native analytical network model implemented in SimGrid. 
479
480 For graph-based shortest path algorithms, routers are mandatory, because both algorithms need a graph, and so we need to have source and destination for each edge. 
481
482 Routers are naturally an important concept in GTNetS or ns-3 since the way they run the packet routing algorithms is actually simulated. Instead, the
483 SimGrid’s analytical models aggregate the routing time with the transfer time.
484 Rebuilding a graph representation only from the route information turns to be a very difficult task, because
485 of the missing information about how routes intersect. That is why we introduced a \<router\> tag, which is
486 simply used to express these intersection points. The only attribute accepted by this tag an id.
487 It is important to understand that the \<router\> tag is only used to provide topological information. 
488
489 To express those topological information, some <b>route</b> have to be defined saying which link is between which routers. Description or the route syntax is given below, as well as example for the different models.
490
491 \subsubsection pf_rm_sh Shortest-path based models 
492
493 Here is the complete list of such models, that computes routes using classic shortest-paths algorithms. How to choose the best suited algorithm is discussed later in the section devoted to it.
494 \li <b>Floyd</b>: Floyd routing data. Pre-calculates all routes once.
495 \li <b>Dijkstra</b>: Dijkstra routing data ,calculating routes when necessary.
496 \li <b>DijkstraCache</b>: Dijkstra routing data. Handle some cache for already calculated routes.
497
498 All those shortest-path models are instanciated the same way. Here are some example of it: 
499
500 Floyd example : 
501 \verbatim
502 <AS  id="AS0"  routing="Floyd">
503     
504   <cluster id="my_cluster_1" prefix="c-" suffix=""
505                 radical="0-1"   power="1000000000"    bw="125000000"     lat="5E-5"
506         router_id="router1"/>
507
508  <AS id="AS1" routing="none">
509     <host id="host1" power="1000000000"/>
510  </AS>
511
512   <link id="link1" bandwidth="100000" latency="0.01"/>
513   
514   <ASroute src="my_cluster_1" dst="AS1"
515     gw_src="router1"
516     gw_dst="host1">
517     <link_ctn id="link1"/>
518   </ASroute>
519   
520 </AS>
521 \endverbatim
522 ASroute given at the end gives a topological information : link1 is between router1 and host1.
523
524
525 Dijsktra example : 
526 \verbatim
527  <AS id="AS_2" routing="Dijsktra">    
528      <host id="AS_2_host1" power="1000000000"/> 
529      <host id="AS_2_host2" power="1000000000"/> 
530      <host id="AS_2_host3" power="1000000000"/> 
531      <link id="AS_2_link1" bandwidth="1250000000" latency="5E-4"/>  
532      <link id="AS_2_link2" bandwidth="1250000000" latency="5E-4"/>  
533      <link id="AS_2_link3" bandwidth="1250000000" latency="5E-4"/>  
534      <link id="AS_2_link4" bandwidth="1250000000" latency="5E-4"/>  
535      <router id="central_router"/>
536      <router id="AS_2_gateway"/>
537      <!-- routes providing topological information -->  
538      <route src="central_router" dst="AS_2_host1"><link_ctn id="AS_2_link1"/></route>   
539      <route src="central_router" dst="AS_2_host2"><link_ctn id="AS_2_link2"/></route>   
540      <route src="central_router" dst="AS_2_host3"><link_ctn id="AS_2_link3"/></route>   
541      <route src="central_router" dst="AS_2_gateway"><link_ctn id="AS_2_link4"/></route> 
542   </AS>
543 \endverbatim
544
545 DijsktraCache example : 
546 \verbatim
547 <AS id="AS_2" routing="DijsktraCache">    
548      <host id="AS_2_host1" power="1000000000"/> 
549      ...
550 (platform unchanged compared to upper example)
551 \endverbatim
552
553 \subsubsection pf_rm_me Manually-entered route models 
554
555 \li <b>Full</b>: You have to enter all necessary routes manually
556 \li <b>RuleBased</b>: Rule-Based routing data; same as Full except you can use regexp to express route. As SimGrid has to evaluate the regexp, it's slower than Full, but requires less memory. Regexp syntax is similar as <a href="http://www.pcre.org">pcre</a> ones, as this is the lib SimGrid use to do so.
557
558 Full example : 
559 \verbatim
560 <AS  id="AS0"  routing="Full">
561    <host id="host1" power="1000000000"/>
562    <host id="host2" power="1000000000"/>
563    <link id="link1" bandwidth="125000000" latency="0.000100"/>
564    <route src="host1" dst="host2"><link_ctn id="link1"/></route>
565  </AS>
566 \endverbatim
567
568 RuleBased example : 
569 \verbatim
570 <AS id="AS_orsay" routing="RuleBased" >
571                         <cluster id="AS_gdx" prefix="gdx-" suffix=".orsay.grid5000.fr"
572                                 radical="1-310" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
573                                 bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
574                         <link   id="link_gdx" bandwidth="1.25E9" latency="1.0E-4"/>
575
576                         <cluster id="AS_netgdx" prefix="netgdx-" suffix=".orsay.grid5000.fr"
577                                 radical="1-30" power="4.7144E9" bw="1.25E8" lat="1.0E-4"
578                                 bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
579                         <link   id="link_netgdx" bandwidth="1.25E9" latency="1.0E-4"/>
580
581                         <AS id="gw_AS_orsay" routing="Full">
582                                 <router id="gw_orsay"/>
583                         </AS>
584                         <link   id="link_gw_orsay" bandwidth="1.25E9" latency="1.0E-4"/>
585
586                         <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
587                                 gw_src="$1src-AS_$1src_router.orsay.grid5000.fr"
588                                 gw_dst="$1dst-AS_$1dst_router.orsay.grid5000.fr"
589                                 symmetrical="YES">
590                                         <link_ctn id="link_$1src"/>
591                                         <link_ctn id="link_$1dst"/>
592                         </ASroute>
593
594                         <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
595                                 gw_src="$1src-AS_$1src_router.orsay.grid5000.fr"
596                                 gw_dst="gw_$1dst"
597                                 symmetrical="NO">
598                                         <link_ctn id="link_$1src"/>
599                         </ASroute>
600
601                         <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
602                                 gw_src="gw_$1src"
603                                 gw_dst="$1dst-AS_$1dst_router.orsay.grid5000.fr"
604                                 symmetrical="NO">
605                                         <link_ctn id="link_$1dst"/>
606                         </ASroute>
607
608                 </AS>
609 \endverbatim
610
611 The example upper contains $1src and $1dst. It's simply a reference to string matching regexp enclosed by "()" within respectively <b>src</b> and <b>dst</b> attributes. If they were more than 1 "()", then you could referer to it as $2src, $3src and so on.
612
613 \subsubsection pf_rm_sf Simple/fast models 
614
615 \li <b>none</b>: No routing (Unless you know what you are doing, avoid using this mode in combination with a non Constant network model).
616 None Example :
617 \verbatim
618 <AS id="exitAS"  routing="none">
619         <router id="exit_gateway"/>
620 </AS>\endverbatim
621
622 \li <b>Vivaldi</b>: Vivaldi routing, so when you want to use coordinates. See the corresponding section P2P below for details.
623 \li <b>Cluster</b>: Cluster routing, specific to cluster tag, should not be used, except internally.
624
625 \subsection ps_dec Defining routes
626
627 The principle of route definition is the same for the 4 available tags for doing it. Those for tags are: 
628
629 \li <b>route</b>: to define route between host/router
630 \li <b>ASroute</b>: to define route between AS
631 \li <b>bypassRoute</b>: to bypass normal routes as calculated by the network model between host/router
632 \li <b>bypassASroute</b>: same as bypassRoute, but for AS
633
634 Basically all those tags will contain an (ordered) list of references to link that compose the route you want to define. 
635
636 Consider the example below: 
637
638 \verbatim
639 <route src="Alice" dst="Bob">
640         <link_ctn id="link1"/>
641         <link_ctn id="link2"/>
642         <link_ctn id="link3"/>
643    </route>
644 \endverbatim
645
646 The route here fom host Alice to Bob will be first link1, then link2, and finally link3. What about the reverse route ? <b>route</b> and <b>ASroute</b> have an optional attribute <b>symmetrical</b>, that can be either YES or NO. YES means that the reverse route is the same route in the inverse order, and is setted to YES by default. Note that this is not the case for bypass*Route, as it is more probable that you want to bypass only one default route.
647
648 For an ASroute, things are just sligthly more complicated, as you have to give the id of the gateway which is inside the AS you're talking about you want to access ... So it looks like this : 
649
650
651 \verbatim
652   <ASroute src="AS1" dst="AS2"
653     gw_src="router1" gw_dst="router2">
654     <link_ctn id="link1"/>
655   </ASroute>
656 \endverbatim
657
658 gw == gateway, so when any message are trying to go from AS1 to AS2, it means that it must pass through router1 to get out of the AS, then pass through link1, and get into AS2 by being received by router2. router1 must belong to AS1 and router2 must belong to AS2. 
659
660 \subsubsection pf_linkctn link_ctn
661
662 a <b>link_ctn</b> is the tag that is used in order to reference a <b>link</b> in a route. Its id is the link id it refers to.
663
664 <b>link_ctn</b> attributes : 
665 \li <b>id (mandatory)</b>: Id of the link this tag refers to
666 \li <b>direction</b>: if the link referenced by <b>id</b> has been declared as FULLDUPLEX, this is used to indicate in which direction the route you're defining is going through this link. Possible values "UP" or "DOWN".
667
668 \subsubsection pf_asro ASroute
669
670 ASroute tag purpose is to let people write manually their routes between AS. It's usefull when you're in Full or Rule-based model.
671
672 <b>ASroute</b> attributes : 
673 \li <b>src (mandatory)</b>: the source AS id.
674 \li <b>dst (mandatory)</b>: the destination AS id.
675 \li <b>gw_src (mandatory)</b>: the gateway to be used within the AS. Can be any <b>host</b> or \b router defined into the \b src AS or into one of the AS it includes.  
676 \li <b>gw_dst (mandatory)</b>: the gateway to be used within the AS. Can be any <b>host</b> or \b router defined into the \b dst AS or into one of the AS it includes.
677 \li <b>symmetrical</b>: if the route is symmetric, the reverse route will be the opposite of the one defined. Can be either YES or NO, default is  YES.
678
679 <b>Example of ASroute with RuleBased</b>
680 \verbatim
681 <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
682                                 gw_src="gw_$1src"
683                                 gw_dst="$1dst-AS_$1dst_router.orsay.grid5000.fr"
684                                 symmetrical="NO">
685                                         <link_ctn id="link_$1dst"/>
686                         </ASroute>
687 \endverbatim
688 <b>Example of ASroute with Full</b>
689 \verbatim
690 <AS  id="AS0"  routing="Full">
691   <cluster id="my_cluster_1" prefix="c-" suffix=".me"
692                 radical="0-149" power="1000000000"    bw="125000000"     lat="5E-5"
693         bb_bw="2250000000" bb_lat="5E-4"/>
694                 
695   <cluster id="my_cluster_2" prefix="c-" suffix=".me"
696             radical="150-299" power="1000000000"        bw="125000000"  lat="5E-5"
697             bb_bw="2250000000" bb_lat="5E-4"/>  
698        
699      <link id="backbone" bandwidth="1250000000" latency="5E-4"/>  
700         
701      <ASroute src="my_cluster_1" dst="my_cluster_2" 
702          gw_src="c-my_cluster_1_router.me" 
703          gw_dst="c-my_cluster_2_router.me">
704                 <link_ctn id="backbone"/>
705      </ASroute>   
706      <ASroute src="my_cluster_2" dst="my_cluster_1" 
707          gw_src="c-my_cluster_2_router.me" 
708          gw_dst="c-my_cluster_1_router.me">
709                 <link_ctn id="backbone"/>
710      </ASroute> 
711 </AS>
712 \endverbatim
713
714 \subsubsection pf_ro route
715 The principle is the same as ASroute : <b>route</b> contains list of links that are in the path between src and dst, except that it is for routes between a src that can be either <b>host</b> or \b router and a dst that can be either <b>host</b> or \b router. Usefull for Full and RuleBased, as well as for the shortest-paths based models, where you have to give topological informations.
716
717
718 <b>route</b> attributes : 
719 \li <b>src (mandatory)</b>: the source id.
720 \li <b>dst (mandatory)</b>: the destination id.
721 \li <b>symmetrical</b>: if the route is symmetric, the reverse route will be the opposite of the one defined. Can be either YES or NO, default is  YES.
722
723 <b>route example in Full</b>
724 \verbatim
725  <route src="Tremblay" dst="Bourassa">
726      <link_ctn id="4"/><link_ctn id="3"/><link_ctn id="2"/><link_ctn id="0"/><link_ctn id="1"/><link_ctn id="6"/><link_ctn id="7"/>
727    </route>
728 \endverbatim
729
730 <b>route example in a shortest-path model</b>
731 \verbatim
732  <route src="Tremblay" dst="Bourassa">
733      <link_ctn id="3"/>
734    </route>
735 \endverbatim
736 Note that when using route to give topological information, you have to give routes with one link only in it, as SimGrid needs to know which host are at the end of the link.
737
738 \subsubsection pf_byro bypassASroute
739 <b>Note : bypassASroute and bypassRoute are under rewriting to perform better ; so you may not use it yet</b>
740 As said before, once you choose a model, it (if so) calculates routes for you. But maybe you want to define some of your routes, which will be specific. You may also want to bypass some routes defined in lower level AS at an upper stage : <b>bypassASroute</b> is the tag you're looking for. It allows to bypass routes defined between already defined between AS (if you want to bypass route for a specific host, you should just use byPassRoute). The principle is the same as ASroute : <b>bypassASroute</b> contains list of links that are in the path between src and dst.
741
742 <b>bypassASroute</b> attributes : 
743 \li <b>src (mandatory)</b>: the source AS id.
744 \li <b>dst (mandatory)</b>: the destination AS id.
745 \li <b>gw_src (mandatory)</b>: the gateway to be used within the AS. Can be any <b>host</b> or \b router defined into the \b src AS or into one of the AS it includes.  
746 \li <b>gw_dst (mandatory)</b>: the gateway to be used within the AS. Can be any <b>host</b> or \b router defined into the \b dst AS or into one of the AS it includes.
747 \li <b>symmetrical</b>: if the route is symmetric, the reverse route will be the opposite of the one defined. Can be either YES or NO, default is  YES.
748
749 <b>bypassASroute Example</b>
750 \verbatim
751     <bypassASRoute src="my_cluster_1" dst="my_cluster_2"
752      gw_src="my_cluster_1_router" 
753      gw_dst="my_cluster_2_router">
754         <link_ctn id="link_tmp"/>  
755      </bypassASroute>
756 \endverbatim
757
758 \subsubsection pf_byro bypassRoute
759 <b>Note : bypassASRoute and bypassRoute are under rewriting to perform better ; so you may not use it yet</b>
760 As said before, once you choose a model, it (if so) calculates routes for you. But maybe you want to define some of your routes, which will be specific. You may also want to bypass some routes defined in lower level AS at an upper stage : <b>bypassRoute</b> is the tag you're looking for. It allows to bypass routes defined between <b>host/router</b>. The principle is the same as route : <b>bypassRoute</b> contains list of links references of links that are in the path between src and dst.
761
762 <b>bypassRoute</b> attributes : 
763 \li <b>src (mandatory)</b>: the source AS id.
764 \li <b>dst (mandatory)</b>: the destination AS id.
765 \li <b>symmetrical</b>: if the route is symmetric, the reverse route will be the opposite of the one defined. Can be either YES or NO, default is  YES.
766
767 <b>bypassRoute Example</b>
768 \verbatim
769 <b>bypassRoute Example</b>
770 \verbatim
771     <bypassRoute src="host_1" dst="host_2">
772         <link_ctn id="link_tmp"/>  
773      </bypassRoute>
774 \endverbatim
775
776
777 \subsection pb_baroex Basic Routing Example
778
779 Let's say you have an AS named AS_Big that contains two other AS, AS_1 and AS_2. If you want to make an host (h1) from AS_1 with another one (h2) from  AS_2 then you'll have to proceed as follow: 
780 \li First, you have to ensure that a route is defined from h1 to the AS_1's exit gateway and from h2 to AS_2's exit gateway.
781 \li Then, you'll have to define a route between AS_1 to AS_2. As those AS are both resources belonging to AS_Big, then it has to be done at AS_big level. To define such a route, you have to give the source AS (AS_1), the destination AS (AS_2), and their respective gateway (as the route is effectively defined between those two entry/exit points). Elements of this route can only be elements belonging to AS_Big, so links and routers in this route should be defined inside AS_Big. If you choose some shortest-path model, this route will be computed automatically.
782
783 As said before, there are mainly 2 tags for routing :
784 \li <b>ASroute</b>: to define routes between two  <b>AS</b>
785 \li <b>route</b>: to define routes between two <b>host/router</b>
786
787 As we are dealing with routes between AS, it means that those we'll have some definition at AS_Big level. Let consider AS_1  contains 1 host, 1 link and one router and AS_2 3 hosts, 4 links and one router. There will be a central router, and a cross-like topology. At the end of the crosses arms, you'll find the 3 hosts and the router that will act as a gateway. We have to define routes inside those two AS. Let say that AS_1 contains full routes, and AS_2 contains some Floyd routing (as we don't want to bother with defining all routes). As we're using some shortest path algorithms to  route into AS_2, we'll then have to define some <b>route</b> to gives some topological information to SimGrid. Here is a file doing it all :
788
789 \verbatim
790 <AS  id="AS_Big"  routing="Dijsktra">
791   <AS id="AS_1" routing="Full">    
792      <host id="AS_1_host1" power="1000000000"/> 
793      <link id="AS_1_link" bandwidth="1250000000" latency="5E-4"/>  
794      <router id="AS_1_gateway"/>
795      <route src="AS_1_host1" dst="AS_1_gateway">
796             <link_ctn id="AS_1_link"/>
797      </route>   
798   </AS>
799   <AS id="AS_2" routing="Floyd">    
800      <host id="AS_2_host1" power="1000000000"/> 
801      <host id="AS_2_host2" power="1000000000"/> 
802      <host id="AS_2_host3" power="1000000000"/> 
803      <link id="AS_2_link1" bandwidth="1250000000" latency="5E-4"/>  
804      <link id="AS_2_link2" bandwidth="1250000000" latency="5E-4"/>  
805      <link id="AS_2_link3" bandwidth="1250000000" latency="5E-4"/>  
806      <link id="AS_2_link4" bandwidth="1250000000" latency="5E-4"/>  
807      <router id="central_router"/>
808      <router id="AS_2_gateway"/>
809      <!-- routes providing topological information -->  
810      <route src="central_router" dst="AS_2_host1"><link_ctn id="AS_2_link1"/></route>   
811      <route src="central_router" dst="AS_2_host2"><link_ctn id="AS_2_link2"/></route>   
812      <route src="central_router" dst="AS_2_host3"><link_ctn id="AS_2_link3"/></route>   
813      <route src="central_router" dst="AS_2_gateway"><link_ctn id="AS_2_link4"/></route> 
814   </AS>
815     <link id="backbone" bandwidth="1250000000" latency="5E-4"/>         
816
817      <ASroute src="AS_1" dst="AS_2" 
818          gw_src="AS_1_gateway" 
819          gw_dst="AS_2_gateway">
820                 <link_ctn id="backbone"/>
821      </ASroute>   
822 </AS>
823 \endverbatim
824
825 \section pf_other_tags Tags not (directly) describing the platform
826
827 There are 3 tags, that you can use inside a \<platform\> tag that are not describing the platform:
828 \li random: it allows you to define random generators you want to use for your simulation.
829 \li config: it allows you to pass some configuration stuff like, for example, the network model and so on. It follows the 
830 \li include: simply allows you to include another file into the current one.
831
832 \subsection pf_conf config
833 <b>config</b> attributes : 
834 \li <b>id (mandatory)</b>: the identifier of the config to be used when referring to it.
835
836
837 <b>config</b> tag only purpose is to include <b>prop</b> tags. Valid id are basically the same as the list of possible parameters you can use by command line, except that "/" are used for namespace definition. See the \ref options config and options page for more information.
838
839
840 <b>config example</b>
841 \verbatim
842 <?xml version='1.0'?>
843 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
844 <platform version="3">  
845 <config id="General">
846         <prop id="maxmin/precision" value="0.000010"></prop>
847         <prop id="cpu/optim" value="TI"></prop>
848         <prop id="workstation/model" value="compound"></prop>
849         <prop id="network/model" value="SMPI"></prop>
850         <prop id="path" value="~/"></prop>
851         <prop id="smpi/bw_factor" value="65472:0.940694;15424:0.697866;9376:0.58729"></prop>
852 </config>
853         
854 <AS  id="AS0"  routing="Full">
855 ...
856 \endverbatim
857
858
859 \subsection pf_rand random
860 Not yet in use, and possibly subject to huge modifications.
861
862 \subsection pf_incl include
863 <b>include</b> tag allows to import into a file platform parts located in another file. This is done with the intention to help people combine their different AS and provide new platforms. Those files should contains XML part that contains either <b>include,cluster,peer,AS,trace,trace_connect</b> tags.
864
865 <b>include</b> attributes : 
866 \li <b>file (mandatory)</b>: filename of the file to include. Possible values : absolute or relative path, syntax similar to the one in use on your system.
867
868 <b>Note</b> : due to some obscure technical reasons, you have to open and close tag in order to let it work. 
869 <b>include Example</b>
870 \verbatim
871 <?xml version='1.0'?>
872 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
873 <platform version="3">
874         <AS id="main" routing="Full">
875                 <include file="clusterA.xml"></include>
876                 <include file="clusterB.xml"></include>
877         </AS>
878 </platform>
879 \endverbatim
880
881 \subsection pf_tra trace and trace_connect
882 Both tags are an alternate way to passe availability, state, and so on files to entity. Instead of refering to the file directly in the host, link, or cluster tag, you proceed by defining a trace with an id corresponding to a file, later an host/link/cluster, and finally using trace_connect you say that the file trace must be used by the entity. Get it ? Let's have a look at an example :
883
884 \verbatim
885 <AS  id="AS0"  routing="Full">
886   <host id="bob" power="1000000000"/>  
887 </AS>
888   <trace id="myTrace" file="bob.trace" periodicity="1.0"/>
889   <trace_connect trace="myTrace" element="bob" kind="POWER"/>
890 \endverbatim
891
892 All constraints you have is that <b>trace_connect</b> is after <b>trace</b> and <b>host</b> definitions. 
893
894
895 <b>trace</b> attributes : 
896 \li <b>id (mandatory)</b>: the identifier of the trace to be used when referring to it.
897 \li <b>file</b>: filename of the file to include. Possible values : absolute or relative path, syntax similar to the one in use on your system.
898 \li <b>trace periodicity (mandatory)</b>: trace periodicity, same definition as in hosts (see upper for details).
899
900 <b>trace_connect</b> attributes : 
901 \li <b>kind</b>: the type of trace, possible values <b>HOST_AVAIL|POWER|LINK_AVAIL|BANDWIDTH|LATENCY,</b>  default: <b>HOST_AVAIL</b>
902 \li <b>trace (mandatory)</b>: the identifier of the trace referenced.
903 \li <b>element (mandatory)</b>: the identifier of the entity referenced.
904
905
906
907 \section pf_hints Hints and tips, or how to write a platform efficiently
908
909 Now you should know at least the syntax dans be able to create a platform. However, after having ourselves wrote some platforms, there are some best practices you should pay attention to in order to produce good platform and some choices you can make in order to have faster simulations. Here's some hints and tips, then.
910
911 \subsection pf_as_h AS Hierarchy 
912 The AS design allows SimGrid to go fast, because computing route is done only for the set of resources defined in this AS. If you're using only a big AS containing all resource with no AS into it and you're using Full model, then ... you'll loose all interest into it. On the other hand, designing a binary tree of AS with, at the lower level, only one host, then you'll also loose all the good AS hierarchy can give you. Remind you should always be "reasonable" in your platform definition when choosing the hierarchy. A good choice if you try to describe a real life platform is to follow the AS described in reality, since this kind og trade-off works well for real life platforms.
913
914 \subsection pf_exit_as Exit AS: why and how
915 Users that have looked at some of our platforms may have notice a non-intuitive schema ... Something like that : 
916
917
918 \verbatim
919 <AS id="AS_4"  routing="Full">
920 <AS id="exitAS_4"  routing="Full">
921         <router id="router_4"/>
922 </AS>
923 <cluster id="cl_4_1" prefix="c_4_1-" suffix="" radical="1-20" power="1000000000" bw="125000000" lat="5E-5" bb_bw="2250000000" bb_lat="5E-4"/>
924 <cluster id="cl_4_2" prefix="c_4_2-" suffix="" radical="1-20" power="1000000000" bw="125000000" lat="5E-5" bb_bw="2250000000" bb_lat="5E-4"/>
925 <link id="4_1" bandwidth="2250000000" latency="5E-5"/>
926 <link id="4_2" bandwidth="2250000000" latency="5E-5"/>
927 <link id="bb_4" bandwidth="2250000000" latency="5E-4"/>
928 <ASroute src="cl_4_1"
929         dst="cl_4_2"
930         gw_src="c_4_1-cl_4_1_router"
931         gw_dst="c_4_2-cl_4_2_router"
932         symmetrical="YES">
933                 <link_ctn id="4_1"/>
934                 <link_ctn id="bb_4"/>
935                 <link_ctn id="4_2"/>
936 </ASroute>
937 <ASroute src="cl_4_1"
938         dst="exitAS_4"
939         gw_src="c_4_1-cl_4_1_router"
940         gw_dst="router_4"
941         symmetrical="YES">
942                 <link_ctn id="4_1"/>
943                 <link_ctn id="bb_4"/>
944 </ASroute>
945 <ASroute src="cl_4_2"
946         dst="exitAS_4"
947         gw_src="c_4_2-cl_4_2_router"
948         gw_dst="router_4"
949         symmetrical="YES">
950                 <link_ctn id="4_2"/>
951                 <link_ctn id="bb_4"/>
952 </ASroute>
953 </AS>
954 \endverbatim
955
956 In the AS_4, you have an exitAS_4 defined, containing only one router, and routes defined to that AS from all other AS (as cluster is only a shortcut for an AS, see cluster description for details). If there was an upper AS, it would define routes to and from AS_4 with the gateway router_4. It's just because, as we did not allowed (for performances issues) to have routes from an AS to a single host/router, you have to enclose your gateway, when you have AS included in your AS, within an AS to define routes to it. 
957
958
959 \subsection pf_P2P_tags P2P or how to use coordinates
960 SimGrid allows you to use some coordinated-based system, like vivaldi, to describe a platform. The main concept is that you have some peers that are located somewhere: this is the function of the  <b>coordinates</b> of the \<peer\> or \<host\> tag. There's nothing complicated in using it, here is an example of it:
961
962 \verbatim
963 <?xml version='1.0'?>
964 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
965 <platform version="3">
966         
967 <config id="General">
968         <prop id="network/coordinates" value="yes"></prop>
969 </config>       
970  <AS  id="AS0"  routing="Vivaldi">
971         <host id="100030591" coordinates="25.5 9.4 1.4" power="1500000000.0" />
972         <host id="100036570" coordinates="-12.7 -9.9 2.1" power="730000000.0" />
973         ...
974         <host id="100429957" coordinates="17.5 6.7 18.8" power="830000000.0" />
975         </AS>
976 </platform>
977 \endverbatim
978
979 Coordinates are then used to calculate latency between two hosts by calculating the euclidian distance between the two hosts coordinates. The results express the latency in ms.
980
981 \subsection pf_wisely Choosing wisely the routing model to use
982
983
984 Choosing wisely the routing model to use can significantly fasten your simulation/save your time when writing the platform/save tremendeous disk space. Here is the list of available model and their characteristics (lookup : time to resolve a route):
985
986 \li <b>Full</b>: Full routing data (fast, large memory requirements, fully expressive)
987 \li <b>Floyd</b>: Floyd routing data (slow initialization, fast lookup, lesser memory requirements, shortest path routing only). Calculates all routes at once at the beginning.
988 \li <b>Dijkstra</b>: Dijkstra routing data (fast initialization, slow lookup, small memory requirements, shortest path routing only). Calculates a route when necessary.
989 \li <b>DijkstraCache</b>: Dijkstra routing data (fast initialization, fast lookup, small memory requirements, shortest path routing only). Same as Dijkstra, except it handles a cache for latest used routes.
990 \li <b>none</b>: No routing (usable with Constant network only). Defines that there is no routes, so if you try to determine a route without constant network within this AS, SimGrid will raie an exception.
991 \li <b>RuleBased</b>: Rule-Based routing data (fast initialisation, relatively slow lookup, moderate memory requirements, fully expressive): uses regexp to define routes;
992 \li <b>Vivaldi</b>: Vivaldi routing, so when you want to use coordinates
993 \li <b>Cluster</b>: Cluster routing, specific to cluster tag, should not be used.
994
995
996
997 \subsection pf_switch Hey, I want to describe a switch but there is no switch tag !
998
999 Actually we did not include swith tag, ok. But when you're trying to simulate a switch, the only major impact it has when you're using fluid model (and SimGrid uses fluid model unless you activate GTNetS, ns-3, or constant network mode) is the impact of the upper limit of the switch motherboard speed that will eventually be reached if you're using intensively your switch. So, the switch impact is similar to a link one. That's why we are used to describe a switch using a link tag (as a link is not an edge by a hyperedge, you can connect more than 2 other links to it).
1000 \subsection pf_platform_multipath How to express multipath routing in platform files?
1001
1002 It is unfortunately impossible to express the fact that there is more
1003 than one routing path between two given hosts. Let's consider the
1004 following platform file:
1005
1006 \verbatim
1007 <route src="A" dst="B">
1008    <link_ctn id="1"/>
1009 </route>
1010 <route src="B" dst="C">
1011   <link_ctn id="2"/>
1012 </route>
1013 <route src="A" dst="C">
1014   <link_ctn id="3"/>
1015 </route>
1016 \endverbatim
1017
1018 Although it is perfectly valid, it does not mean that data traveling
1019 from A to C can either go directly (using link 3) or through B (using
1020 links 1 and 2). It simply means that the routing on the graph is not
1021 trivial, and that data do not following the shortest path in number of
1022 hops on this graph. Another way to say it is that there is no implicit
1023 in these routing descriptions. The system will only use the routes you
1024 declare (such as &lt;route src="A" dst="C"&gt;&lt;link_ctn
1025 id="3"/&gt;&lt;/route&gt;), without trying to build new routes by aggregating
1026 the provided ones.
1027   
1028 You are also free to declare platform where the routing is not
1029 symmetric. For example, add the following to the previous file:
1030
1031 \verbatim
1032 <route src="C" dst="A">
1033   <link_ctn id="2"/>
1034   <link_ctn id="1"/>
1035 </route>
1036 \endverbatim
1037
1038 This makes sure that data from C to A go through B where data from A
1039 to C go directly. Don't worry about realism of such settings since
1040 we've seen ways more weird situation in real settings (in fact, that's
1041 the realism of very regular platforms which is questionable, but
1042 that's another story).
1043
1044 \section pf_flexml_bypassing Bypassing the XML parser with your own C functions
1045 <b>NOTE THAT THIS DOCUMENTATION, WHILE STILL WORKING, IS STRONGLY DEPRECATED</b>
1046
1047 So you want to bypass the XML files parser, uh? Maybe doing some parameter
1048 sweep experiments on your simulations or so? This is possible, and
1049 it's not even really difficult (well. Such a brutal idea could be
1050 harder to implement). Here is how it goes.
1051
1052 For this, you have to first remember that the XML parsing in SimGrid is done
1053 using a tool called FleXML. Given a DTD, this gives a flex-based parser. If
1054 you want to bypass the parser, you need to provide some code mimicking what
1055 it does and replacing it in its interactions with the SURF code. So, let's
1056 have a look at these interactions.
1057
1058 FleXML parser are close to classical SAX parsers. It means that a
1059 well-formed SimGrid platform XML file might result in the following
1060 "events":
1061
1062   - start "platform_description" with attribute version="2"
1063   - start "host" with attributes id="host1" power="1.0"
1064   - end "host"
1065   - start "host" with attributes id="host2" power="2.0"
1066   - end "host"
1067   - start "link" with ...
1068   - end "link"
1069   - start "route" with ...
1070   - start "link_ctn" with ...
1071   - end "link_ctn"
1072   - end "route"
1073   - end "platform_description"
1074
1075 The communication from the parser to the SURF code uses two means:
1076 Attributes get copied into some global variables, and a surf-provided
1077 function gets called by the parser for each event. For example, the event
1078   - start "host" with attributes id="host1" power="1.0"
1079
1080 let the parser do something roughly equivalent to:
1081 \verbatim
1082   strcpy(A_host_id,"host1");
1083   A_host_power = 1.0;
1084   STag_host();
1085 \endverbatim
1086
1087 In SURF, we attach callbacks to the different events by initializing the
1088 pointer functions to some the right surf functions. Since there can be
1089 more than one callback attached to the same event (if more than one
1090 model is in use, for example), they are stored in a dynar. Example in
1091 workstation_ptask_L07.c:
1092 \verbatim
1093   /* Adding callback functions */
1094   surf_parse_reset_parser();
1095   surfxml_add_callback(STag_surfxml_host_cb_list, &parse_cpu_init);
1096   surfxml_add_callback(STag_surfxml_prop_cb_list, &parse_properties);
1097   surfxml_add_callback(STag_surfxml_link_cb_list, &parse_link_init);
1098   surfxml_add_callback(STag_surfxml_route_cb_list, &parse_route_set_endpoints);
1099   surfxml_add_callback(ETag_surfxml_link_c_ctn_cb_list, &parse_route_elem);
1100   surfxml_add_callback(ETag_surfxml_route_cb_list, &parse_route_set_route);
1101                 
1102   /* Parse the file */
1103   surf_parse_open(file);
1104   xbt_assert(!surf_parse(), "Parse error in %s", file);
1105   surf_parse_close();
1106 \endverbatim
1107     
1108 So, to bypass the FleXML parser, you need to write your own version of the
1109 surf_parse function, which should do the following:
1110    - Fill the A_<tag>_<attribute> variables with the wanted values
1111    - Call the corresponding STag_<tag>_fun function to simulate tag start
1112    - Call the corresponding ETag_<tag>_fun function to simulate tag end
1113    - (do the same for the next set of values, and loop)
1114
1115 Then, tell SimGrid that you want to use your own "parser" instead of the stock one:
1116 \verbatim
1117   surf_parse = surf_parse_bypass_environment;
1118   MSG_create_environment(NULL);
1119   surf_parse = surf_parse_bypass_application;
1120   MSG_launch_application(NULL);
1121 \endverbatim
1122
1123 A set of macros are provided at the end of
1124 include/surf/surfxml_parse.h to ease the writing of the bypass
1125 functions. An example of this trick is distributed in the file
1126 examples/msg/masterslave/masterslave_bypass.c
1127
1128
1129 */