Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix the way to bypass the cpu_im without hard coding the model
[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      } s_surf_model_extension_network_t;
176
177      /** \brief Workstation model extension public
178       *  \ingroup SURF_models
179       *
180       *  Public functions specific to the workstation model.
181       */
182      typedef struct surf_workstation_model_extension_public {
183        surf_action_t(*execute) (void *workstation, double size);                           /**< Execute a computation amount on a workstation
184                                                                                         and create the corresponding action */
185        surf_action_t(*sleep) (void *workstation, double duration);                         /**< Make a workstation sleep during a given duration */
186        e_surf_resource_state_t(*get_state) (void *workstation);                                 /**< Return the CPU state of a workstation */
187        double (*get_speed) (void *workstation, double load);                               /**< Return the speed of a workstation */
188        double (*get_available_speed) (void *workstation);                                  /**< Return tha available speed of a workstation */
189          surf_action_t(*communicate) (void *workstation_src,                               /**< Execute a communication amount between two workstations */
190                                       void *workstation_dst, double size,
191                                       double max_rate);
192          xbt_dynar_t(*get_route) (void *workstation_src, void *workstation_dst);           /**< Get the list of links between two ws */
193
194          surf_action_t(*execute_parallel_task) (int workstation_nb,                        /**< Execute a parallel task on several workstations */
195                                                 void **workstation_list,
196                                                 double *computation_amount,
197                                                 double *communication_amount,
198                                                 double amount, double rate);
199        double (*get_link_bandwidth) (const void *link);                                    /**< Return the current bandwidth of a network link */
200        double (*get_link_latency) (const void *link);                                      /**< Return the current latency of a network link */
201        int (*link_shared) (const void *link);
202          xbt_dict_t(*get_properties) (const void *resource);
203      } s_surf_model_extension_workstation_t;
204
205 /** \brief Model datatype
206  *  \ingroup SURF_models
207  *
208  *  Generic data structure for a model. The workstations,
209  *  the CPUs and the network links are examples of models.
210  */
211      typedef struct surf_model {
212        const char *name;/**< Name of this model */
213        s_surf_action_state_t states; /**< Any living action on this model */
214
215          e_surf_action_state_t(*action_state_get) (surf_action_t action);
216                                                                        /**< Return the state of an action */
217        void (*action_state_set) (surf_action_t action,
218                                  e_surf_action_state_t state);
219                                                                   /**< Change an action state*/
220
221        double (*action_get_start_time) (surf_action_t action);/**< Return the start time of an action */
222        double (*action_get_finish_time) (surf_action_t action);/**< Return the finish time of an action */
223        int (*action_unref) (surf_action_t action);/**< Specify that we don't use that action anymore */
224        void (*action_cancel) (surf_action_t action);/**< Cancel a running action */
225        void (*action_recycle) (surf_action_t action);/**< Recycle an action */
226        void (*action_data_set) (surf_action_t action, void *data);/**< Set the user data of an action */
227        void (*suspend) (surf_action_t action);/**< Suspend an action */
228        void (*resume) (surf_action_t action);/**< Resume a suspended action */
229        int (*is_suspended) (surf_action_t action);/**< Return whether an action is suspended */
230        void (*set_max_duration) (surf_action_t action, double duration);/**< Set the max duration of an action*/
231        void (*set_priority) (surf_action_t action, double priority);/**< Set the priority of an action */
232        double (*get_remains) (surf_action_t action);/**< Get the remains of an action */
233
234        xbt_dict_t resource_set;
235
236
237
238        surf_model_private_t model_private;
239
240
241
242        union extension {
243          s_surf_model_extension_timer_t timer;
244          s_surf_model_extension_cpu_t cpu;
245          s_surf_model_extension_network_t network;
246          s_surf_model_extension_workstation_t workstation;
247        } extension;
248      } s_surf_model_t;
249
250      surf_model_t surf_model_init(void);
251      void surf_model_exit(surf_model_t model);
252
253      void *surf_model_resource_by_name(surf_model_t model, const char *name);
254 #define surf_model_resource_set(model) (model)->resource_set
255
256      typedef struct surf_resource {
257        surf_model_t model;
258        char *name;
259        xbt_dict_t properties;
260      } s_surf_resource_t, *surf_resource_t;
261
262
263
264 /**
265  * Resource which have a metric handled by a maxmin system
266  */
267      typedef struct {
268        double scale;
269        double peak;
270        tmgr_trace_event_t event;
271      } s_surf_metric_t;
272
273      typedef struct surf_resource_lmm {
274        s_surf_resource_t generic_resource;
275        lmm_constraint_t constraint;
276        e_surf_resource_state_t state_current;
277        tmgr_trace_event_t state_event;
278        s_surf_metric_t power;
279      } s_surf_resource_lmm_t, *surf_resource_lmm_t;
280
281 /**************************************/
282 /* Implementations of model object */
283 /**************************************/
284
285
286 /** \brief The timer model
287  *  \ingroup SURF_models
288  */
289 XBT_PUBLIC_DATA(surf_model_t) surf_timer_model;
290
291 /** \brief Initializes the timer model
292  *  \ingroup SURF_models
293  */
294 XBT_PUBLIC(void) surf_timer_model_init(const char *filename);
295
296 /** \brief The CPU model
297  *  \ingroup SURF_models
298  */
299 XBT_PUBLIC_DATA(surf_model_t) surf_cpu_model;
300
301 /** \brief Initializes the CPU model with the model Cas01
302  *  \ingroup SURF_models
303  *
304  *  This function is called by surf_workstation_model_init_CLM03
305  *  so you shouldn't have to call it by yourself.
306  *
307  *  \see surf_workstation_model_init_CLM03()
308  */
309 XBT_PUBLIC(void) surf_cpu_model_init_Cas01(const char *filename);
310
311 /** \brief Initializes the CPU model with trace integration
312  *  \ingroup SURF_models
313  *
314  */
315 XBT_PUBLIC(void) surf_cpu_model_init_ti(const char *filename);
316
317 /** \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.
318  *  \ingroup SURF_models
319  *
320  *  This function is called by surf_workstation_model_init_CLM03
321  *  so you shouldn't have to call it by yourself.
322  *
323  *  \see surf_workstation_model_init_CLM03()
324  */
325 XBT_PUBLIC(void) surf_cpu_model_init_Cas01_im(const char *filename);
326
327 /**brief Initialise the cpu_im model bypassing the parser
328  *
329  */
330 XBT_PUBLIC(void) surf_cpu_model_init_bypass_im(const char*id,double power);
331
332 /** \brief The list of all available cpu model models
333  *  \ingroup SURF_models
334  */
335 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_cpu_model_description[];
336
337 XBT_PUBLIC(void) create_workstations(void);
338
339 /**\brief create new host bypass the parser
340  *
341  */
342
343
344 /** \brief The network model
345  *  \ingroup SURF_models
346  *
347  *  When creating a new API on top on SURF, you shouldn't use the
348  *  network model unless you know what you are doing. Only the workstation
349  *  model should be accessed because depending on the platform model,
350  *  the network model can be NULL.
351  */
352 XBT_PUBLIC_DATA(surf_model_t) surf_network_model;
353
354 /** \brief Same as network model 'LagrangeVelho', only with different correction factors.
355  *  \ingroup SURF_models
356  *  \param filename XML platform file name
357  *
358  * This model is proposed by Pierre-Nicolas Clauss and Martin Quinson and Stéphane Génaud
359  * based on the model 'LV08' and different correction factors depending on the communication
360  * size (< 1KiB, < 64KiB, >= 64KiB).
361  *
362  *  \see surf_workstation_model_init_SMPI()
363  */
364 XBT_PUBLIC(void) surf_network_model_init_SMPI(const char *filename);
365
366 /** \brief Initializes the platform with the network model 'LagrangeVelho'
367  *  \ingroup SURF_models
368  *  \param filename XML platform file name
369  *
370  * This model is proposed by Arnaud Legrand and Pedro Velho based on
371  * the results obtained with the GTNets simulator for onelink and
372  * dogbone sharing scenarios.
373  *
374  *  \see surf_workstation_model_init_LegrandVelho()
375  */
376 XBT_PUBLIC(void) surf_network_model_init_LegrandVelho(const char *filename);
377
378 /** \brief Initializes the platform with the network model 'Constant'
379  *  \ingroup SURF_models
380  *  \param filename XML platform file name
381  *
382  *  In this model, the communication time between two network cards is
383  *  constant, hence no need for a routing table. This is particularly
384  *  usefull when simulating huge distributed algorithms where
385  *  scalability is really an issue. This function is called in
386  *  conjunction with surf_workstation_model_init_compound.
387  *
388  *  \see surf_workstation_model_init_compound()
389  */
390 XBT_PUBLIC(void) surf_network_model_init_Constant(const char *filename);
391
392 XBT_PUBLIC(void) surf_network_model_init_Vivaldi(const char *filename);
393
394 /** \brief Initializes the platform with the network model CM02
395  *  \ingroup SURF_models
396  *  \param filename XML platform file name
397  *
398  *  This function is called by surf_workstation_model_init_CLM03
399  *  or by yourself only if you plan using surf_workstation_model_init_compound
400  *
401  *  \see surf_workstation_model_init_CLM03()
402  */
403 XBT_PUBLIC(void) surf_network_model_init_CM02(const char *filename);
404
405 #ifdef HAVE_GTNETS
406 /** \brief Initializes the platform with the network model GTNETS
407  *  \ingroup SURF_models
408  *  \param filename XML platform file name
409  *
410  *  This function is called by surf_workstation_model_init_GTNETS
411  *  or by yourself only if you plan using surf_workstation_model_init_compound
412  *
413  *  \see surf_workstation_model_init_GTNETS()
414  */
415 XBT_PUBLIC(void) surf_network_model_init_GTNETS(const char *filename);
416 #endif
417
418 /** \brief Initializes the platform with the network model Reno
419  *  \ingroup SURF_models
420  *  \param filename XML platform file name
421  *
422  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
423  *
424  *  Reference:
425  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
426  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
427  *
428  *  Call this function only if you plan using surf_workstation_model_init_compound.
429  *
430  */
431 XBT_PUBLIC(void) surf_network_model_init_Reno(const char *filename);
432
433 /** \brief Initializes the platform with the network model Reno2
434  *  \ingroup SURF_models
435  *  \param filename XML platform file name
436  *
437  *  The problem is related to max( sum( arctan(C * Df * xi) ) ).
438  *
439  *  Reference:
440  *  [LOW01] S. H. Low. A duality model of TCP and queue management algorithms.
441  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
442  *
443  *  Call this function only if you plan using surf_workstation_model_init_compound.
444  *
445  */
446 XBT_PUBLIC(void) surf_network_model_init_Reno2(const char *filename);
447
448 /** \brief Initializes the platform with the network model Vegas
449  *  \ingroup SURF_models
450  *  \param filename XML platform file name
451  *
452  *  This problem is related to max( sum( a * Df * ln(xi) ) ) which is equivalent
453  *  to the proportional fairness.
454  *
455  *  Reference:
456  *  [LOW03] S. H. Low. A duality model of TCP and queue management algorithms.
457  *  IEEE/ACM Transaction on Networking, 11(4):525-536, 2003.
458  *
459  *  Call this function only if you plan using surf_workstation_model_init_compound.
460  *
461  */
462 XBT_PUBLIC(void) surf_network_model_init_Vegas(const char *filename);
463
464 /** \brief The list of all available network model models
465  *  \ingroup SURF_models
466  */
467 XBT_PUBLIC_DATA(s_surf_model_description_t) surf_network_model_description[];
468
469
470 /** \brief The workstation model
471  *  \ingroup SURF_models
472  *
473  *  Note that when you create an API on top of SURF,
474  *  the workstation model should be the only one you use
475  *  because depending on the platform model, the network model and the CPU model
476  *  may not exist.
477  */
478 XBT_PUBLIC_DATA(surf_model_t) surf_workstation_model;
479
480 /** \brief Initializes the platform with a compound workstation model
481  *  \ingroup SURF_models
482  *  \param filename XML platform file name
483  *
484  *  This function should be called after a cpu_model and a
485  *  network_model have been set up.
486  *
487  */
488 XBT_PUBLIC(void) surf_workstation_model_init_compound(const char *filename);
489
490 /** \brief Initializes the platform with the workstation model CLM03
491  *  \ingroup SURF_models
492  *  \param filename XML platform file name
493  *
494  *  This platform model seperates the workstation model and the network model.
495  *  The workstation model will be initialized with the model CLM03, the network
496  *  model with the model CM02 and the CPU model with the model Cas01.
497  *  In future releases, some other network models will be implemented and will be
498  *  combined with the workstation model CLM03.
499  *
500  *  \see surf_workstation_model_init_KCCFLN05()
501  */
502 XBT_PUBLIC(void) surf_workstation_model_init_CLM03(const char *filename);
503
504 /** \brief Initializes the platform with the model KCCFLN05
505  *  \ingroup SURF_models
506  *  \param filename XML platform file name
507  *
508  *  With this model, the workstations and the network are handled
509  *  together. The network model is roughly the same as in CM02 but
510  *  interference between computations and communications can be taken
511  *  into account. This platform model is the default one for MSG and
512  *  SimDag.
513  *
514  */
515 XBT_PUBLIC(void) surf_workstation_model_init_KCCFLN05(const char *filename);
516
517 /** \brief Initializes the platform with the model KCCFLN05
518  *  \ingroup SURF_models
519  *  \param filename XML platform file name
520  *
521  *  With this model, only parallel tasks can be used. Resource sharing
522  *  is done by identifying bottlenecks and giving an equal share of
523  *  the model to each action.
524  *
525  */
526 XBT_PUBLIC(void) surf_workstation_model_init_ptask_L07(const char *filename);
527
528 /** \brief The list of all available workstation model models
529  *  \ingroup SURF_models
530  */
531 XBT_PUBLIC_DATA(s_surf_model_description_t)
532   surf_workstation_model_description[];
533
534 /** \brief List of initialized models
535  *  \ingroup SURF_models
536  */
537 XBT_PUBLIC_DATA(xbt_dynar_t) model_list;
538
539 /*******************************************/
540 /*** SURF Globals **************************/
541 /*******************************************/
542 XBT_PUBLIC_DATA(xbt_cfg_t) _surf_cfg_set;
543
544 /** \brief Initialize SURF
545  *  \ingroup SURF_simulation
546  *  \param argc argument number
547  *  \param argv arguments
548  *
549  *  This function has to be called to initialize the common
550  *  structures.  Then you will have to create the environment by
551  *  calling surf_timer_model_init() and
552  *  e.g. surf_workstation_model_init_CLM03() or
553  *  surf_workstation_model_init_KCCFLN05().
554  *
555  *  \see surf_timer_model_init(), surf_workstation_model_init_CLM03(),
556  *  surf_workstation_model_init_KCCFLN05(), surf_workstation_model_init_compound(), surf_exit()
557  */
558 XBT_PUBLIC(void) surf_init(int *argc, char **argv);     /* initialize common structures */
559
560 /** \brief Initialize the used models.
561  *
562  * Must be called after the surf_init so that configuration infrastructure is created
563  * Must be called before parsing/creating the environment
564  * Must not be called within the initialization process so that the use get a chance to change the settings from
565  * its code between, say, MSG_init and MSG_create_environment using MSG_config
566  */
567 XBT_PUBLIC(void) surf_config_models_setup(const char *platform_file);
568
569 /** \brief create the elements of the models
570  *
571  * Must be called after parsing the platform file and before using any elements
572  */
573 XBT_PUBLIC(void) surf_config_models_create_elms(void);
574
575 /** \brief Finish simulation initialization
576  *  \ingroup SURF_simulation
577  *
578  *  This function must be called before the first call to surf_solve()
579  */
580 XBT_PUBLIC(void) surf_presolve(void);
581
582 /** \brief Performs a part of the simulation
583  *  \ingroup SURF_simulation
584  *  \return the elapsed time, or -1.0 if no event could be executed
585  *
586  *  This function execute all possible events, update the action states
587  *  and returns the time elapsed.
588  *  When you call execute or communicate on a model, the corresponding actions
589  *  are not executed immediately but only when you call surf_solve.
590  *  Note that the returned elapsed time can be zero.
591  */
592 XBT_PUBLIC(double) surf_solve(void);
593
594 /** \brief Return the current time
595  *  \ingroup SURF_simulation
596  *
597  *  Return the current time in millisecond.
598  */
599 XBT_PUBLIC(double) surf_get_clock(void);
600
601 /** \brief Exit SURF
602  *  \ingroup SURF_simulation
603  *
604  *  Clean everything.
605  *
606  *  \see surf_init()
607  */
608 XBT_PUBLIC(void) surf_exit(void);
609
610 /* Prototypes of the functions that handle the properties */
611 XBT_PUBLIC_DATA(xbt_dict_t) current_property_set;       /* the prop set for the currently parsed element (also used in SIMIX) */
612 XBT_PUBLIC_DATA(void) parse_properties(void);
613
614 /* surf parse file related (public because called from a test suite) */
615 XBT_PUBLIC(void) parse_platform_file(const char *file);
616
617 /* Stores the sets */
618 XBT_PUBLIC_DATA(xbt_dict_t) set_list;
619
620 XBT_PUBLIC_DATA(void) manage_route(xbt_dict_t route_table,
621                                    const char *route_name, int action,
622                                    int isMultiRoute);
623 XBT_PUBLIC_DATA(int) route_action;
624
625 /* This is used by all models when creating the routing table while parsing */
626 XBT_PUBLIC_DATA(xbt_dict_t) route_table;
627 XBT_PUBLIC_DATA(xbt_dict_t) route_multi_table;
628
629
630 /* For the trace and trace:connect tag (store their content till the end of the parsing) */
631 XBT_PUBLIC_DATA(xbt_dict_t) traces_set_list;
632 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_host_avail;
633 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_power;
634 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_link_avail;
635 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_bandwidth;
636 XBT_PUBLIC_DATA(xbt_dict_t) trace_connect_list_latency;
637
638
639 XBT_PUBLIC(double) get_cpu_power(const char *power);
640
641
642 #include "surf/surf_resource.h"
643 #include "surf/surf_resource_lmm.h"
644
645 SG_END_DECL()
646 #endif /* _SURF_SURF_H */