Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
some documentation fixes
[simgrid.git] / src / surf / cpu_interface.hpp
1 /* Copyright (c) 2004-2015. 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 "surf_interface.hpp"
8 #include "maxmin_private.hpp"
9
10 #ifndef SURF_CPU_INTERFACE_HPP_
11 #define SURF_CPU_INTERFACE_HPP_
12
13 /***********
14  * Classes *
15  ***********/
16 class CpuModel;
17 class Cpu;
18 class CpuAction;
19 class CpuPlugin;
20
21 /*************
22  * Callbacks *
23  *************/
24 XBT_PUBLIC(Cpu*) getActionCpu(CpuAction *action);
25
26 /** @ingroup SURF_callbacks
27  * @brief Callbacks handler which emit the callbacks after Cpu creation *
28  * @details Callback functions have the following signature: `void(CpuPtr)`
29  */
30 XBT_PUBLIC_DATA( surf_callback(void, Cpu*)) cpuCreatedCallbacks;
31
32 /** @ingroup SURF_callbacks
33  * @brief Callbacks handler which emit the callbacks after Cpu destruction *
34  * @details Callback functions have the following signature: `void(CpuPtr)`
35  */
36 XBT_PUBLIC_DATA( surf_callback(void, Cpu*)) cpuDestructedCallbacks;
37
38 /** @ingroup SURF_callbacks
39  * @brief Callbacks handler which emit the callbacks after Cpu State changed *
40  * @details Callback functions have the following signature: `void(CpuAction *action, e_surf_resource_state_t old, e_surf_resource_state_t current)`
41  */
42 XBT_PUBLIC_DATA( surf_callback(void, Cpu*, e_surf_resource_state_t, e_surf_resource_state_t)) cpuStateChangedCallbacks;
43
44 /** @ingroup SURF_callbacks
45  * @brief Callbacks handler which emit the callbacks after CpuAction State changed *
46  * @details Callback functions have the following signature: `void(CpuAction *action, e_surf_action_state_t old, e_surf_action_state_t current)`
47  */
48 XBT_PUBLIC_DATA( surf_callback(void, CpuAction*, e_surf_action_state_t, e_surf_action_state_t)) cpuActionStateChangedCallbacks;
49
50 XBT_PUBLIC(void) cpu_add_traces();
51
52 /*********
53  * Model *
54  *********/
55
56  /** @ingroup SURF_cpu_interface
57  * @brief SURF cpu model interface class
58  * @details A model is an object which handle the interactions between its Resources and its Actions
59  */
60 XBT_PUBLIC_CLASS CpuModel : public Model {
61 public:
62   CpuModel() : Model() {};
63
64   /**
65    * @brief Create a Cpu
66    *
67    * @param name The name of the Cpu
68    * @param speedPeak The peak spead (max speed in Flops)
69    * @param pstate [TODO]
70    * @param speedScale The speed scale (in [O;1] available speed from peak)
71    * @param speedTrace Trace variations
72    * @param core The number of core of this Cpu
73    * @param state_initial [TODO]
74    * @param state_trace [TODO]
75    * @param cpu_properties Dictionary of properties associated to this Cpu
76    */
77   virtual Cpu *createCpu(const char *name, xbt_dynar_t speedPeak,
78                       int pstate, double speedScale,
79                           tmgr_trace_t speedTrace, int core,
80                           e_surf_resource_state_t state_initial,
81                           tmgr_trace_t state_trace,
82                           xbt_dict_t cpu_properties)=0;
83
84   void updateActionsStateLazy(double now, double delta);
85   void updateActionsStateFull(double now, double delta);
86   bool shareResourcesIsIdempotent() {return true;}
87 };
88
89 /************
90  * Resource *
91  ************/
92
93 /** @ingroup SURF_cpu_interface
94 * @brief SURF cpu resource interface class
95 * @details A Cpu represent a cpu associated to a host
96 */
97 XBT_PUBLIC_CLASS Cpu : public Resource {
98 public:
99   Cpu();
100
101   /**
102    * @brief Cpu constructor
103    *
104    * @param model The CpuModel associated to this Cpu
105    * @param name The name of the Cpu
106    * @param props Dictionary of properties associated to this Cpu
107    * @param constraint The lmm constraint associated to this Cpu if it is part of a LMM component
108    * @param core The number of core of this Cpu
109    * @param speedPeak The speed peak of this Cpu in flops (max speed)
110    * @param speedScale The speed scale of this Cpu in [0;1] (available amount)
111    * @param stateInitial whether it is created running or crashed
112    */
113   Cpu(Model *model, const char *name, xbt_dict_t props,
114           lmm_constraint_t constraint, int core, double speedPeak, double speedScale,
115           e_surf_resource_state_t stateInitial);
116
117   /**
118    * @brief Cpu constructor
119    *
120    * @param model The CpuModel associated to this Cpu
121    * @param name The name of the Cpu
122    * @param props Dictionary of properties associated to this Cpu
123    * @param core The number of core of this Cpu
124    * @param speedPeak The speed peak of this Cpu in flops (max speed)
125    * @param speedScale The speed scale of this Cpu in [0;1] (available amount)
126    * @param stateInitial whether it is created running or crashed
127    */
128   Cpu(Model *model, const char *name, xbt_dict_t props,
129           int core, double speedPeak, double speedScale,
130           e_surf_resource_state_t stateInitial);
131
132   Cpu(Model *model, const char *name, xbt_dict_t props,
133           lmm_constraint_t constraint, int core, double speedPeak, double speedScale);
134   Cpu(Model *model, const char *name, xbt_dict_t props,
135           int core, double speedPeak, double speedScale);
136
137   ~Cpu();
138
139   /**
140    * @brief Execute some quantity of computation
141    *
142    * @param size The value of the processing amount (in flop) needed to process
143    * @return The CpuAction corresponding to the processing
144    */
145   virtual Action *execute(double size)=0;
146
147   /**
148    * @brief Make a process sleep for duration (in seconds)
149    *
150    * @param duration The number of seconds to sleep
151    * @return The CpuAction corresponding to the sleeping
152    */
153   virtual Action *sleep(double duration)=0;
154
155   /** @brief Get the amount of cores */
156   virtual int getCore();
157
158   /** @brief Get the speed, accounting for the trace load and provided process load instead of the real current one */
159   virtual double getSpeed(double load);
160
161   /** @brief Get the available speed of the current Cpu */
162   virtual double getAvailableSpeed();
163
164   /** @brief Get the current Cpu power peak */
165   virtual double getCurrentPowerPeak();
166
167   virtual double getPowerPeakAt(int pstate_index)=0;
168
169   virtual int getNbPstates()=0;
170   virtual void setPstate(int pstate_index)=0;
171   virtual int  getPstate()=0;
172
173   void setState(e_surf_resource_state_t state);
174
175   void addTraces(void);
176   int m_core = 1;                /* Amount of cores */
177   double m_speedPeak;            /*< CPU speed peak, ie max value */
178   double m_speedScale;           /*< Percentage of CPU available according to the trace, in [O,1] */
179
180   /* Note (hypervisor): */
181   lmm_constraint_t *p_constraintCore;
182   void **p_constraintCoreId;
183 };
184
185 /**********
186  * Action *
187  **********/
188
189  /** @ingroup SURF_cpu_interface
190  * @brief SURF Cpu action interface class
191  * @details A CpuAction represent the execution of code on a Cpu
192  */
193 XBT_PUBLIC_CLASS CpuAction : public Action {
194 friend XBT_PUBLIC(Cpu*) getActionCpu(CpuAction *action);
195 public:
196   /** @brief CpuAction constructor */
197   CpuAction(Model *model, double cost, bool failed)
198     : Action(model, cost, failed) {} //FIXME:REMOVE
199
200   /** @brief CpuAction constructor */
201   CpuAction(Model *model, double cost, bool failed, lmm_variable_t var)
202     : Action(model, cost, failed, var) {}
203
204   /**
205    * @brief Set the affinity of the current CpuAction
206    * @details [TODO]
207    */
208   virtual void setAffinity(Cpu *cpu, unsigned long mask);
209
210   void setState(e_surf_action_state_t state);
211
212   void updateRemainingLazy(double now);
213
214 };
215
216 #endif /* SURF_CPU_INTERFACE_HPP_ */