Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unnecessary casts
[simgrid.git] / src / surf / cpu_ti.hpp
1 /* Copyright (c) 2013-2014. 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 #include "cpu_interface.hpp"
8 #include "trace_mgr_private.h"
9 #include "surf/surf_routing.h"
10
11 /* Epsilon */
12 #define EPSILON 0.000000001
13
14 /***********
15  * Classes *
16  ***********/
17 class CpuTiTrace;
18 typedef CpuTiTrace *CpuTiTracePtr;
19
20 class CpuTiTgmr;
21 typedef CpuTiTgmr *CpuTiTgmrPtr;
22
23 class CpuTiModel;
24 typedef CpuTiModel *CpuTiModelPtr;
25
26 class CpuTi;
27 typedef CpuTi *CpuTiPtr;
28
29 class CpuTiAction;
30 typedef CpuTiAction *CpuTiActionPtr;
31
32 /*********
33  * Trace *
34  *********/
35 class CpuTiTrace {
36 public:
37   CpuTiTrace(tmgr_trace_t powerTrace);
38   ~CpuTiTrace();
39
40   double integrateSimple(double a, double b);
41   double integrateSimplePoint(double a);
42   double solveSimple(double a, double amount);
43
44   double *p_timePoints;
45   double *p_integral;
46   int m_nbPoints;
47   int binarySearch(double *array, double a, int low, int high);
48
49 private:
50 };
51
52 enum trace_type {
53
54   TRACE_FIXED,                /*< Trace fixed, no availability file */
55   TRACE_DYNAMIC               /*< Dynamic, availability file disponible */
56 };
57
58 class CpuTiTgmr {
59 public:
60   CpuTiTgmr(trace_type type, double value): m_type(type), m_value(value){};
61   CpuTiTgmr(tmgr_trace_t power_trace, double value);
62   ~CpuTiTgmr();
63
64   double integrate(double a, double b);
65   double solve(double a, double amount);
66   double solveSomewhatSimple(double a, double amount);
67   double getPowerScale(double a);
68
69   trace_type m_type;
70   double m_value;                 /*< Percentage of cpu power disponible. Value fixed between 0 and 1 */
71
72   /* Dynamic */
73   double m_lastTime;             /*< Integral interval last point (discret time) */
74   double m_total;                 /*< Integral total between 0 and last_pointn */
75
76   CpuTiTracePtr p_trace;
77   tmgr_trace_t p_powerTrace;
78 };
79
80 /*********
81  * Model *
82  *********/
83 class CpuTiModel : public CpuModel {
84 public:
85   CpuTiModel();
86   ~CpuTiModel();
87   CpuPtr createCpu(const char *name,  xbt_dynar_t powerPeak,
88                           int pstate, double power_scale,
89                           tmgr_trace_t power_trace, int core,
90                           e_surf_resource_state_t state_initial,
91                           tmgr_trace_t state_trace,
92                           xbt_dict_t cpu_properties);
93   double shareResources(double now);
94   void updateActionsState(double now, double delta);
95   void addTraces();
96
97   ActionListPtr p_runningActionSetThatDoesNotNeedBeingChecked;
98   xbt_swag_t p_modifiedCpu;
99   xbt_heap_t p_tiActionHeap;
100
101 protected:
102   void NotifyResourceTurnedOn(ResourcePtr){};
103   void NotifyResourceTurnedOff(ResourcePtr){};
104
105   void NotifyActionCancel(ActionPtr){};
106   void NotifyActionResume(ActionPtr){};
107   void NotifyActionSuspend(ActionPtr){};
108 };
109
110 /************
111  * Resource *
112  ************/
113 class CpuTi : public Cpu {
114 public:
115   CpuTi() {};
116   CpuTi(CpuTiModelPtr model, const char *name, xbt_dynar_t powerPeak,
117         int pstate, double powerScale, tmgr_trace_t powerTrace, int core,
118         e_surf_resource_state_t stateInitial, tmgr_trace_t stateTrace,
119         xbt_dict_t properties) ;
120   ~CpuTi();
121
122   void updateState(tmgr_trace_event_t event_type, double value, double date);
123   void updateActionsFinishTime(double now);
124   bool isUsed();
125   void printCpuTiModel();
126   CpuActionPtr execute(double size);
127   CpuActionPtr sleep(double duration);
128   double getAvailableSpeed();
129
130   double getCurrentPowerPeak() {THROW_UNIMPLEMENTED;};
131   double getPowerPeakAt(int /*pstate_index*/) {THROW_UNIMPLEMENTED;};
132   int getNbPstates() {THROW_UNIMPLEMENTED;};
133   void setPowerPeakAt(int /*pstate_index*/) {THROW_UNIMPLEMENTED;};
134
135   CpuTiTgmrPtr p_availTrace;       /*< Structure with data needed to integrate trace file */
136   tmgr_trace_event_t p_stateEvent;       /*< trace file with states events (ON or OFF) */
137   tmgr_trace_event_t p_powerEvent;       /*< trace file with availability events */
138   xbt_swag_t p_actionSet;        /*< set with all actions running on cpu */
139   s_xbt_swag_hookup_t p_modifiedCpuHookup;      /*< hookup to swag that indicates whether share resources must be recalculated or not */
140   double m_sumPriority;          /*< the sum of actions' priority that are running on cpu */
141   double m_lastUpdate;           /*< last update of actions' remaining amount done */
142
143   int m_pstate;                                                         /*< Current pstate (index in the power_peak_list)*/
144   double current_frequency;
145
146   void updateRemainingAmount(double now);
147 };
148
149 /**********
150  * Action *
151  **********/
152
153 class CpuTiAction: public CpuAction {
154   friend CpuActionPtr CpuTi::execute(double size);
155   friend CpuActionPtr CpuTi::sleep(double duration);
156   friend void CpuTi::updateActionsFinishTime(double now);//FIXME
157   friend void CpuTi::updateRemainingAmount(double now);//FIXME
158
159 public:
160   CpuTiAction(CpuTiModelPtr model, double cost, bool failed,
161                                  CpuTiPtr cpu);
162
163   void setState(e_surf_action_state_t state);
164   int unref();
165   void cancel();
166   void recycle();
167   void updateIndexHeap(int i);
168   void suspend();
169   void resume();
170   bool isSuspended();
171   void setMaxDuration(double duration);
172   void setPriority(double priority);
173   double getRemains();
174   void setAffinity(CpuPtr /*cpu*/, unsigned long /*mask*/) {};
175
176   CpuTiPtr p_cpu;
177   int m_indexHeap;
178   s_xbt_swag_hookup_t p_cpuListHookup;
179   int m_suspended;
180 private:
181 };