Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
"new ruby host method"
[simgrid.git] / src / surf / cpu_ti_private.h
1
2 /*      $Id$     */
3
4 /* Copyright (c) 2004 Arnaud Legrand. All rights reserved.                  */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef _SURF_CPU_TI_PRIVATE_H
10 #define _SURF_CPU_TI_PRIVATE_H
11
12 typedef struct surf_cpu_ti_trace {
13   double *time_points;
14   double *integral;
15   int nb_points;
16 } s_surf_cpu_ti_trace_t, *surf_cpu_ti_trace_t;
17
18 /* TRACE */
19 typedef struct surf_cpu_ti_tgmr {
20   enum trace_type {
21     TRACE_FIXED,                /*< Trace fixed, no availability file */
22     TRACE_DYNAMIC               /*< Dynamic, availability file disponible */
23   } type;
24
25   double value;                 /*< Percentage of cpu power disponible. Value fixed between 0 and 1 */
26
27   /* Dynamic */
28   double last_time;             /*< Integral interval last point (discret time) */
29   double total;                 /*< Integral total between 0 and last_pointn */
30
31   surf_cpu_ti_trace_t trace;
32   tmgr_trace_t power_trace;
33
34 } s_surf_cpu_ti_tgmr_t, *surf_cpu_ti_tgmr_t;
35
36
37 /* CPU with trace integration feature */
38 typedef struct cpu_ti {
39   s_surf_resource_t generic_resource;   /*< Structure with generic data. Needed at begin to interate with SURF */
40   double power_peak;            /*< CPU power peak */
41   double power_scale;           /*< Percentage of CPU disponible */
42   surf_cpu_ti_tgmr_t avail_trace;       /*< Structure with data needed to integrate trace file */
43   e_surf_resource_state_t state_current;        /*< CPU current state (ON or OFF) */
44   tmgr_trace_event_t state_event;       /*< trace file with states events (ON or OFF) */
45   tmgr_trace_event_t power_event;       /*< trace file with availabitly events */
46   xbt_swag_t action_set;        /*< set with all actions running on cpu */
47   s_xbt_swag_hookup_t modified_cpu_hookup;      /*< hookup to swag that indicacates whether share resources must be recalculated or not */
48   double sum_priority;          /*< the sum of actions' priority that are running on cpu */
49   double last_update;           /*< last update of actions' remaining amount done */
50 } s_cpu_ti_t, *cpu_ti_t;
51
52 typedef struct surf_action_ti {
53   s_surf_action_t generic_action;
54   s_xbt_swag_hookup_t cpu_list_hookup;
55   void *cpu;
56   int suspended;
57   int index_heap;
58 } s_surf_action_cpu_ti_t, *surf_action_cpu_ti_t;
59
60 /* Epsilon */
61 #define EPSILON 0.000000001
62 /* Usefull define to get the cpu where action is running on */
63 #define ACTION_GET_CPU(action) ((cpu_ti_t)((surf_action_cpu_ti_t)action)->cpu)
64
65
66 #endif /* _SURF_CPU_TI_PRIVATE_H */