Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
A tool to find 3 segments such that each segment
[simgrid.git] / src / include / surf / surf.h
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _SURF_SURF_H
8 #define _SURF_SURF_H
9
10 #include "xbt/swag.h"
11 #include "xbt/dynar.h"
12 #include "xbt/dict.h"
13 #include "xbt/misc.h"
14 #include "portable.h"
15 #include "xbt/config.h"
16 #include "surf/datatypes.h"
17
18 SG_BEGIN_DECL()
19 /* Actions and models are highly connected structures... */
20      typedef enum {
21        SURF_RESOURCE_ON = 1,              /**< Up & ready        */
22        SURF_RESOURCE_OFF = 0              /**< Down & broken     */
23      } e_surf_resource_state_t;
24
25 /** @Brief Specify that we use that action */
26 XBT_PUBLIC(void) surf_action_ref(surf_action_t action);
27 /** @brief Creates a new action.
28  *
29  * @param size The size is the one of the subtype you want to create
30  * @param cost initial value
31  * @param model to which model we should attach this action
32  * @param failed whether we should start this action in failed mode
33  */
34 XBT_PUBLIC(void *) surf_action_new(size_t size, double cost,
35                                    surf_model_t model, int failed);
36
37
38
39 /** \brief Resource model description
40  */
41      typedef struct surf_model_description {
42        const char *name;
43        const char *description;
44        surf_model_t model;
45        void (*model_init_preparse) (const char *filename);
46        void (*model_init_postparse) (void);
47      } s_surf_model_description_t, *surf_model_description_t;
48
49 XBT_PUBLIC(void) update_model_description(s_surf_model_description_t * table,
50                                           const char *name,
51                                           surf_model_t model);
52 XBT_PUBLIC(int) find_model_description(s_surf_model_description_t * table,
53                                        const char *name);
54 XBT_PUBLIC(void) model_help(const char* category, s_surf_model_description_t * table);
55
56 /** \brief Action structure
57  * \ingroup SURF_actions
58  *
59  *  Never create s_surf_action_t by yourself ! The actions are created
60  *  on the fly when you call execute or communicate on a model.
61  *
62  *  \see e_surf_action_state_t
63  */
64      typedef struct surf_action {
65        s_xbt_swag_hookup_t state_hookup;
66        xbt_swag_t state_set;
67        double cost;             /**< cost        */
68        double priority;         /**< priority (1.0 by default) */
69        double max_duration;     /**< max_duration (may fluctuate until
70                                    the task is completed) */
71        double remains;          /**< How much of that cost remains to
72                                  * be done in the currently running task */
73        double start;            /**< start time  */
74        double finish;           /**< finish time : this is modified during the run
75                                  * and fluctuates until the task is completed */
76        void *data;              /**< for your convenience */
77        int refcount;
78        surf_model_t model_type;
79      } s_surf_action_t;
80
81      typedef struct surf_action_lmm {
82        s_surf_action_t generic_action;
83        lmm_variable_t variable;
84        int suspended;
85      } s_surf_action_lmm_t, *surf_action_lmm_t;
86
87 /** \brief Action states
88  *  \ingroup SURF_actions
89  *
90  *  Action states.
91  *
92  *  \see surf_action_t, surf_action_state_t
93  */
94      typedef enum {
95        SURF_ACTION_READY = 0,   /**< Ready        */
96        SURF_ACTION_RUNNING,     /**< Running      */
97        SURF_ACTION_FAILED,      /**< Task Failure */
98        SURF_ACTION_DONE,        /**< Completed    */
99        SURF_ACTION_TO_FREE,     /**< Action to free in next cleanup */
100        SURF_ACTION_NOT_IN_THE_SYSTEM
101                                 /**< Not in the system anymore. Why did you ask ? */
102      } e_surf_action_state_t;
103
104 /** \brief Action state sets
105  *  \ingroup SURF_actions
106  *
107  *  This structure contains some sets of actions.
108  *  It provides a fast access to the actions in each state.
109  *
110  *  \see surf_action_t, e_surf_action_state_t
111  */
112      typedef struct surf_action_state {
113        xbt_swag_t ready_action_set;
114                                  /**< Actions in state SURF_ACTION_READY */
115        xbt_swag_t running_action_set;
116                                  /**< Actions in state SURF_ACTION_RUNNING */
117        xbt_swag_t failed_action_set;
118                                  /**< Actions in state SURF_ACTION_FAILED */
119        xbt_swag_t done_action_set;
120                                  /**< Actions in state SURF_ACTION_DONE */
121      } s_surf_action_state_t, *surf_action_state_t;
122
123 /***************************/
124 /* Generic model object */
125 /***************************/
126      typedef struct s_routing s_routing_t, *routing_t;
127 XBT_PUBLIC_DATA(routing_t) used_routing;
128
129 /** \brief Private data available on all models
130  *  \ingroup SURF_models
131  */
132      typedef struct surf_model_private *surf_model_private_t;
133
134      /** \brief Timer model extension public
135       * \ingroup SURF_model
136       *
137       * Additionnal functions specific to the timer model
138       */
139      typedef struct surf_timer_model_extension_public {
140        void (*set) (double date, void *function, void *arg);
141        int (*get) (void **function, void **arg);
142      } s_surf_model_extension_timer_t;
143
144      /* Cpu model */
145
146      /** \brief CPU model extension public
147       *  \ingroup SURF_models
148       *
149       *  Public functions specific to the CPU model.
150       */
151      typedef struct surf_cpu_model_extension_public {
152        surf_action_t(*execute) (void *cpu, double size);
153        surf_action_t(*sleep) (void *cpu, double duration);
154        e_surf_resource_state_t(*get_state) (void *cpu);
155        double (*get_speed) (void *cpu, double load);
156        double (*get_available_speed) (void *cpu);
157        void (*init_bypass)(const char* id,double power);
158      } s_surf_model_extension_cpu_t;
159
160      /* Network model */
161
162      /** \brief Network model extension public
163       *  \ingroup SURF_models
164       *
165       *  Public functions specific to the network model
166       */
167      typedef struct surf_network_model_extension_public {
168        surf_action_t(*communicate) (const char *src_name,
169                                     const char *dst_name, int src, int dst,
170                                     double size, double rate);
171        xbt_dynar_t(*get_route) (int src, int dst);
172        double (*get_link_bandwidth) (const void *link);
173        double (*get_link_latency) (const void *link);
174        int (*link_shared) (const void *link);
175        void (*init_bypass) (const char *id,double intial_bandwidth,double initial_latency);
176      } s_surf_model_extension_network_t;
177
178      /** \brief Workstation model extension public
179       *  \ingroup SURF_models
180       *
181       *  Public functions specific to the workstation model.
182       */
183      typedef struct surf_workstation_model_extension_public {
184        surf_action_t(*execute) (void *workstation, double size);                           /**< Execute a computation amount on a workstation
185                                                                                         and create the corresponding action */
186        surf_action_t(*sleep) (void *workstation, double duration);                         /**< Make a workstation sleep during a given duration */
187        e_surf_resource_state_t(*get_state) (void *workstation);                                 /**< Return the CPU state of a workstation */
188        double (*get_speed) (void *workstation, double load);                               /**< Return the speed of a workstation */
189        double (*get_available_speed) (void *workstation);                                  /**< Return tha available speed of a workstation */
190          surf_action_t(*communicate) (void *workstation_src,                               /**< Execute a communication amount between two workstations */
191                                       void *workstation_dst, double size,
192                                       double max_rate);
193          xbt_dynar_t(*get_route) (void *workstation_src, void *workstation_dst);           /**< Get the list of links between two ws */
194
195          surf_action_t(*execute_parallel_task) (int workstation_nb,                        /**< Execute a parallel task on several workstations */
196                                                 void **workstation_list,
197                                                 double *computation_amount,
198                                                 double *communication_amount,
199                                                 double amount, double rate);
200        double (*get_link_bandwidth) (const void *link);                                    /**< Return the current bandwidth of a network link */
201        double (*get_link_latency) (const void *link);                                      /**< Return the current latency of a network link */
202        int (*link_shared) (const void *link);
203          xbt_dict_t(*get_properties) (const void *resource);
204      } s_surf_model_extension_workstation_t;
205
206 /** \brief Model datatype
207  *  \ingroup SURF_models
208  *
209  *  Generic data structure for a model. The workstations,
210  *  the CPUs and the network links are examples of models.
211  */
212      typedef struct surf_model {
213        const char *name;/**< Name of this model */
214        s_surf_action_state_t states; /**< Any living action on this model */
215
216          e_surf_action_state_t(*action_state_get) (surf_action_t action);
217                                                                        /**< Return the state of an action */
218        void (*action_state_set) (surf_action_t action,
219                                  e_surf_action_state_t state);
220                                                                   /**< Change an action state*/
221
222        double (*action_get_start_time) (surf_action_t action);/**< Return the start time of an action */
223        double (*action_get_finish_time) (surf_action_t action);/**< Return the finish time of an action */
224        int (*action_unref) (surf_action_t action);/**< Specify that we don't use that action anymore */
225        void (*action_cancel) (surf_action_t action);/**< Cancel a running action */
226        void (*action_recycle) (surf_action_t action);/**< Recycle an action */
227        void (*action_data_set) (surf_action_t action, void *data);/**< Set the user data of an action */
228        void (*suspend) (surf_action_t action);/**< Suspend an action */
229        void (*resume) (surf_action_t action);/**< Resume a suspended action */
230        int (*is_suspended) (surf_action_t action);/**< Return whether an action is suspended */
231        void (*set_max_duration) (surf_action_t action, double duration);/**< Set the max duration of an action*/
232        void (*set_priority) (surf_action_t action, double priority);/**< Set the priority of an action */
233        double (*get_remains) (surf_action_t action);/**< Get the remains of an action */
234
235        xbt_dict_t resource_set;
236
237
238
239        surf_model_private_t model_private;
240
241
242
243        union extension {
244          s_surf_model_extension_timer_t timer;
245          s_surf_model_extension_cpu_t cpu;
246          s_surf_model_extension_network_t network;
247          s_surf_model_extension_workstation_t workstation;
248        } extension;
249      } s_surf_model_t;
250
251      surf_model_t surf_model_init(void);
252      void surf_model_exit(surf_model_t model);
253
254      void *surf_model_resource_by_name(surf_model_t model, const char *name);
255 #define surf_model_resource_set(model) (model)->resource_set
256
257      typedef struct surf_resource {
258        surf_model_t model;
259        char *name;
260        xbt_dict_t properties;
261      } s_surf_resource_t, *surf_resource_t;
262
263
264
265 /**
266  * Resource which have a metric handled by a maxmin system
267  */
268      typedef struct {
269        double scale;
270        double peak;
271        tmgr_trace_event_t event;
272      } s_surf_metric_t;
273
274      typedef struct surf_resource_lmm {
275        s_surf_resource_t generic_resource;
276        lmm_constraint_t constraint;
277        e_surf_resource_state_t state_current;
278        tmgr_trace_event_t state_event;
279        s_surf_metric_t power;
280      } s_surf_resource_lmm_t, *surf_resource_lmm_t;
281
282 /**************************************/
283 /* Implementations of model object */
284 /**************************************/
285
286
287 /** \brief The timer model
288  *  \ingroup SURF_models
289  */
290 XBT_PUBLIC_DATA(surf_model_t) surf_timer_model;
291
292 /** \brief Initializes the timer model
293  *  \ingroup SURF_models
294  */
295 XBT_PUBLIC(void) surf_timer_model_init(const char *filename);
296
297 /** \brief The CPU model
298  *  \ingroup SURF_models
299  */
300 XBT_PUBLIC_DATA(surf_model_t) surf_cpu_model;
301
302 /** \brief Initializes the CPU model with the model Cas01
303  *  \ingroup SURF_models
304  *
305  *  This function is called by surf_workstation_model_init_CLM03
306  *  so you shouldn't have to call it by yourself.
307  *
308  *  \see surf_workstation_model_init_CLM03()
309  */
310 XBT_PUBLIC(void) surf_cpu_model_init_Cas01(const char *filename);
311
312 /** \brief Initializes the CPU model with trace integration
313  *  \ingroup SURF_models
314  *
315  */
316 XBT_PUBLIC(void) surf_cpu_model_init_ti(const char *filename);
317
318 /** \brief Initializes the CPU model with the model Cas01 Improved. This model uses a heap to order the events, decreasing the time complexity to get the minimum next event.
319  *  \ingroup SURF_models
320  *
321  *  This function is called by surf_workstation_model_init_CLM03
322  *  so you shouldn't have to call it by yourself.
323  *
324  *  \see surf_workstation_model_init_CLM03()
325  */
326 XBT_PUBLIC(void) surf_cpu_model_init_Cas01_im(const char *filename);
327
328 /**brief Initialise the cpu_im model bypassing the parser
329  *
330  */
331 XBT_PUBLIC(void) surf_cpu_model_init_bypass_im(const char*id,double power);
332
333 /** \brief The list of all available cpu model models
334  *  \ingroup SURF_models
335  */
336 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_cpu_model_description[];
337
338 XBT_PUBLIC(void) create_workstations(void);
339
340 /**\brief create new host bypass the parser
341  *
342  */
343
344
345 /** \brief The network model
346  *  \ingroup SURF_models
347  *
348  *  When creating a new API on top on SURF, you shouldn't use the
349  *  network model unless you know what you are doing. Only the workstation
350  *  model should be accessed because depending on the platform model,
351  *  the network model can be NULL.
352  */
353 XBT_PUBLIC_DATA(surf_model_t) surf_network_model;
354
355 /** \brief Same as network model 'LagrangeVelho', only with different correction factors.
356  *  \ingroup SURF_models
357  *  \param filename XML platform file name
358  *
359  * This model is proposed by Pierre-Nicolas Clauss and Martin Quinson and Stéphane Génaud
360  * based on the model 'LV08' and different correction factors depending on the communication
361  * size (< 1KiB, < 64KiB, >= 64KiB).
362  *
363  *  \see surf_workstation_model_init_SMPI()
364  */
365 XBT_PUBLIC(void) surf_network_model_init_SMPI(const char *filename);
366
367 /** \brief Initializes the platform with the network model 'LagrangeVelho'
368  *  \ingroup SURF_models
369  *  \param filename XML platform file name
370  *
371  * This model is proposed by Arnaud Legrand and Pedro Velho based on
372  * the results obtained with the GTNets simulator for onelink and
373  * dogbone sharing scenarios.
374  *
375  *  \see surf_workstation_model_init_LegrandVelho()
376  */
377 XBT_PUBLIC(void) surf_network_model_init_LegrandVelho(const char *filename);
378
379 /** \brief Initializes the platform with the network model 'Constant'
380  *  \ingroup SURF_models
381  *  \param filename XML platform file name
382  *
383  *  In this model, the communication time between two network cards is
384  *  constant, hence no need for a routing table. This is particularly
385  *  usefull when simulating huge distributed algorithms where
386  *  scalability is really an issue. This function is called in
387  *  conjunction with surf_workstation_model_init_compound.
388  *
389  *  \see surf_workstation_model_init_compound()
390  */
391 XBT_PUBLIC(void) surf_network_model_init_Constant(const char *filename);
392
393 XBT_PUBLIC(void) surf_network_model_init_Vivaldi(const char *filename);
394
395 /** \brief Initializes the platform with the network model CM02
396  *  \ingroup SURF_models
397  *  \param filename XML platform file name
398  *
399  *  This function is called by surf_workstation_model_init_CLM03
400  *  or by yourself only if you plan using surf_workstation_model_init_compound
401  *
402  *  \see surf_workstation_model_init_CLM03()
403  */
404 XBT_PUBLIC(void) surf_network_model_init_CM02(const char *filename);
405
406 /**
407  * brief initialize the the network model bypassing the XML parser
408  */
409 XBT_PUBLIC(void) surf_network_model_init_bypass(const char* id,double initial_bw,double initial_lat);
410
411 #ifdef HAVE_GTNETS
412 /** \brief Initializes the platform with the network model GTNETS
413  *  \ingroup SURF_models
414  *  \param filename XML platform file name
415  *
416  *  This function is called by surf_workstation_model_init_GTNETS
417  *  or by yourself only if you plan using surf_workstation_model_init_compound
418  *
419  *  \see surf_workstation_model_init_GTNETS()
420  */
421 XBT_PUBLIC(void) surf_network_model_init_GTNETS(const char *filename);
422 #endif
423
424 /** \brief Initializes the platform with the network model Reno
425  *  \ingroup SURF_models
426  *  \param filename XML platform file name
427  *
428  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
429  *
430  *  Reference:
431  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
432  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
433  *
434  *  Call this function only if you plan using surf_workstation_model_init_compound.
435  *
436  */
437 XBT_PUBLIC(void) surf_network_model_init_Reno(const char *filename);
438
439 /** \brief Initializes the platform with the network model Reno2
440  *  \ingroup SURF_models
441  *  \param filename XML platform file name
442  *
443  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
444  *
445  *  Reference:
446  *  [LOW01] S. H. Low. A duality model of TCP and queue management algorithms.
447  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
448  *
449  *  Call this function only if you plan using surf_workstation_model_init_compound.
450  *
451  */
452 XBT_PUBLIC(void) surf_network_model_init_Reno2(const char *filename);
453
454 /** \brief Initializes the platform with the network model Vegas
455  *  \ingroup SURF_models
456  *  \param filename XML platform file name
457  *
458  *  This problem is related to max( sum( a * Df * ln(xi) ) ) which is equivalent
459  *  to the proportional fairness.
460  *
461  *  Reference:
462  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
463  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
464  *
465  *  Call this function only if you plan using surf_workstation_model_init_compound.
466  *
467  */
468 XBT_PUBLIC(void) surf_network_model_init_Vegas(const char *filename);
469
470 /** \brief The list of all available network model models
471  *  \ingroup SURF_models
472  */
473 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_network_model_description[];
474
475
476 /** \brief The workstation model
477  *  \ingroup SURF_models
478  *
479  *  Note that when you create an API on top of SURF,
480  *  the workstation model should be the only one you use
481  *  because depending on the platform model, the network model and the CPU model
482  *  may not exist.
483  */
484 XBT_PUBLIC_DATA(surf_model_t) surf_workstation_model;
485
486 /** \brief Initializes the platform with a compound workstation model
487  *  \ingroup SURF_models
488  *  \param filename XML platform file name
489  *
490  *  This function should be called after a cpu_model and a
491  *  network_model have been set up.
492  *
493  */
494 XBT_PUBLIC(void) surf_workstation_model_init_compound(const char *filename);
495
496 /** \brief Initializes the platform with the workstation model CLM03
497  *  \ingroup SURF_models
498  *  \param filename XML platform file name
499  *
500  *  This platform model seperates the workstation model and the network model.
501  *  The workstation model will be initialized with the model CLM03, the network
502  *  model with the model CM02 and the CPU model with the model Cas01.
503  *  In future releases, some other network models will be implemented and will be
504  *  combined with the workstation model CLM03.
505  *
506  *  \see surf_workstation_model_init_KCCFLN05()
507  */
508 XBT_PUBLIC(void) surf_workstation_model_init_CLM03(const char *filename);
509
510 /** \brief Initializes the platform with the model KCCFLN05
511  *  \ingroup SURF_models
512  *  \param filename XML platform file name
513  *
514  *  With this model, the workstations and the network are handled
515  *  together. The network model is roughly the same as in CM02 but
516  *  interference between computations and communications can be taken
517  *  into account. This platform model is the default one for MSG and
518  *  SimDag.
519  *
520  */
521 XBT_PUBLIC(void) surf_workstation_model_init_KCCFLN05(const char *filename);
522
523 /** \brief Initializes the platform with the model KCCFLN05
524  *  \ingroup SURF_models
525  *  \param filename XML platform file name
526  *
527  *  With this model, only parallel tasks can be used. Resource sharing
528  *  is done by identifying bottlenecks and giving an equal share of
529  *  the model to each action.
530  *
531  */
532 XBT_PUBLIC(void) surf_workstation_model_init_ptask_L07(const char *filename);
533
534 /** \brief The list of all available workstation model models
535  *  \ingroup SURF_models
536  */
537 XBT_PUBLIC_DATA(s_surf_model_description_t)
538   surf_workstation_model_description[];
539
540 /** \brief List of initialized models
541  *  \ingroup SURF_models
542  */
543 XBT_PUBLIC_DATA(xbt_dynar_t) model_list;
544
545 /*******************************************/
546 /*** SURF Globals **************************/
547 /*******************************************/
548 XBT_PUBLIC_DATA(xbt_cfg_t) _surf_cfg_set;
549
550 /** \brief Initialize SURF
551  *  \ingroup SURF_simulation
552  *  \param argc argument number
553  *  \param argv arguments
554  *
555  *  This function has to be called to initialize the common
556  *  structures.  Then you will have to create the environment by
557  *  calling surf_timer_model_init() and
558  *  e.g. surf_workstation_model_init_CLM03() or
559  *  surf_workstation_model_init_KCCFLN05().
560  *
561  *  \see surf_timer_model_init(), surf_workstation_model_init_CLM03(),
562  *  surf_workstation_model_init_KCCFLN05(), surf_workstation_model_init_compound(), surf_exit()
563  */
564 XBT_PUBLIC(void) surf_init(int *argc, char **argv);     /* initialize common structures */
565
566 /** \brief Initialize the used models.
567  *
568  * Must be called after the surf_init so that configuration infrastructure is created
569  * Must be called before parsing/creating the environment
570  * Must not be called within the initialization process so that the use get a chance to change the settings from
571  * its code between, say, MSG_init and MSG_create_environment using MSG_config
572  */
573 XBT_PUBLIC(void) surf_config_models_setup(const char *platform_file);
574
575 /** \brief create the elements of the models
576  *
577  * Must be called after parsing the platform file and before using any elements
578  */
579 XBT_PUBLIC(void) surf_config_models_create_elms(void);
580
581 /** \brief Finish simulation initialization
582  *  \ingroup SURF_simulation
583  *
584  *  This function must be called before the first call to surf_solve()
585  */
586 XBT_PUBLIC(void) surf_presolve(void);
587
588 /** \brief Performs a part of the simulation
589  *  \ingroup SURF_simulation
590  *  \return the elapsed time, or -1.0 if no event could be executed
591  *
592  *  This function execute all possible events, update the action states
593  *  and returns the time elapsed.
594  *  When you call execute or communicate on a model, the corresponding actions
595  *  are not executed immediately but only when you call surf_solve.
596  *  Note that the returned elapsed time can be zero.
597  */
598 XBT_PUBLIC(double) surf_solve(void);
599
600 /** \brief Return the current time
601  *  \ingroup SURF_simulation
602  *
603  *  Return the current time in millisecond.
604  */
605 XBT_PUBLIC(double) surf_get_clock(void);
606
607 /** \brief Exit SURF
608  *  \ingroup SURF_simulation
609  *
610  *  Clean everything.
611  *
612  *  \see surf_init()
613  */
614 XBT_PUBLIC(void) surf_exit(void);
615
616 /* Prototypes of the functions that handle the properties */
617 XBT_PUBLIC_DATA(xbt_dict_t) current_property_set;       /* the prop set for the currently parsed element (also used in SIMIX) */
618 XBT_PUBLIC_DATA(void) parse_properties(void);
619
620 /* surf parse file related (public because called from a test suite) */
621 XBT_PUBLIC(void) parse_platform_file(const char *file);
622
623 /* Stores the sets */
624 XBT_PUBLIC_DATA(xbt_dict_t) set_list;
625
626 XBT_PUBLIC_DATA(void) manage_route(xbt_dict_t route_table,
627                                    const char *route_name, int action,
628                                    int isMultiRoute);
629 XBT_PUBLIC_DATA(int) route_action;
630
631 /* This is used by all models when creating the routing table while parsing */
632 XBT_PUBLIC_DATA(xbt_dict_t) route_table;
633 XBT_PUBLIC_DATA(xbt_dict_t) route_multi_table;
634
635
636 /* For the trace and trace:connect tag (store their content till the end of the parsing) */
637 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
638 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_host_avail;
639 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_power;
640 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_link_avail;
641 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_bandwidth;
642 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_latency;
643
644
645 XBT_PUBLIC(double) get_cpu_power(const char *power);
646
647
648 #include "surf/surf_resource.h"
649 #include "surf/surf_resource_lmm.h"
650
651 SG_END_DECL()
652 #endif /* _SURF_SURF_H */