Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please sonar with some cleanups
[simgrid.git] / src / surf / cpu_interface.cpp
1 /* Copyright (c) 2013-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 <xbt/dynar.h>
8 #include "cpu_interface.hpp"
9 #include "plugins/energy.hpp"
10 #include "src/instr/instr_private.h" // TRACE_is_enabled(). FIXME: remove by subscribing tracing to the surf signals
11
12 XBT_LOG_EXTERNAL_CATEGORY(surf_kernel);
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_cpu, surf, "Logging specific to the SURF cpu module");
14
15 void_f_void_t surf_cpu_model_init_preparse = nullptr;
16
17 simgrid::surf::CpuModel *surf_cpu_model_pm;
18 simgrid::surf::CpuModel *surf_cpu_model_vm;
19
20 namespace simgrid {
21 namespace surf {
22
23 /*************
24  * Callbacks *
25  *************/
26
27 simgrid::xbt::signal<void(CpuAction*, Action::State, Action::State)> cpuActionStateChangedCallbacks;
28
29 /*********
30  * Model *
31  *********/
32
33 CpuModel::~CpuModel() {}
34
35 void CpuModel::updateActionsStateLazy(double now, double /*delta*/)
36 {
37   CpuAction *action;
38   while ((xbt_heap_size(getActionHeap()) > 0)
39          && (double_equals(xbt_heap_maxkey(getActionHeap()), now, sg_surf_precision))) {
40     action = static_cast<CpuAction*>(xbt_heap_pop(getActionHeap()));
41     XBT_CDEBUG(surf_kernel, "Something happened to action %p", action);
42     if (TRACE_is_enabled()) {
43       Cpu *cpu = static_cast<Cpu*>(lmm_constraint_id(lmm_get_cnst_from_var(getMaxminSystem(), action->getVariable(), 0)));
44       TRACE_surf_host_set_utilization(cpu->getName(), action->getCategory(),
45                                       lmm_variable_getvalue(action->getVariable()),
46                                       action->getLastUpdate(),
47                                       now - action->getLastUpdate());
48     }
49
50     action->finish();
51     XBT_CDEBUG(surf_kernel, "Action %p finished", action);
52
53     /* set the remains to 0 due to precision problems when updating the remaining amount */
54     action->setRemains(0);
55     action->setState(Action::State::done);
56     action->heapRemove(getActionHeap()); //FIXME: strange call since action was already popped
57   }
58   if (TRACE_is_enabled()) {
59     //defining the last timestamp that we can safely dump to trace file
60     //without losing the event ascending order (considering all CPU's)
61     double smaller = -1;
62     ActionList *actionSet = getRunningActionSet();
63     for(ActionList::iterator it(actionSet->begin()), itend(actionSet->end())
64        ; it != itend ; ++it) {
65       action = static_cast<CpuAction*>(&*it);
66         if (smaller < 0) {
67           smaller = action->getLastUpdate();
68           continue;
69         }
70         if (action->getLastUpdate() < smaller) {
71           smaller = action->getLastUpdate();
72         }
73     }
74     if (smaller > 0) {
75       TRACE_last_timestamp_to_dump = smaller;
76     }
77   }
78   return;
79 }
80
81 void CpuModel::updateActionsStateFull(double now, double delta)
82 {
83   CpuAction *action = nullptr;
84   ActionList *running_actions = getRunningActionSet();
85
86   for(ActionList::iterator it(running_actions->begin()), itNext=it, itend(running_actions->end())
87      ; it != itend ; it=itNext) {
88     ++itNext;
89     action = static_cast<CpuAction*>(&*it);
90     if (TRACE_is_enabled()) {
91       Cpu *cpu = static_cast<Cpu*> (lmm_constraint_id(lmm_get_cnst_from_var(getMaxminSystem(), action->getVariable(), 0)) );
92
93       TRACE_surf_host_set_utilization(cpu->getName(),
94                                       action->getCategory(),
95                                       lmm_variable_getvalue(action->getVariable()),
96                                       now - delta,
97                                       delta);
98       TRACE_last_timestamp_to_dump = now - delta;
99     }
100
101     action->updateRemains(lmm_variable_getvalue(action->getVariable()) * delta);
102
103
104     if (action->getMaxDuration() != NO_MAX_DURATION)
105       action->updateMaxDuration(delta);
106
107
108     if ((action->getRemainsNoUpdate() <= 0) &&
109         (lmm_get_variable_weight(action->getVariable()) > 0)) {
110       action->finish();
111       action->setState(Action::State::done);
112     } else if ((action->getMaxDuration() != NO_MAX_DURATION) &&
113                (action->getMaxDuration() <= 0)) {
114       action->finish();
115       action->setState(Action::State::done);
116     }
117   }
118 }
119
120 bool CpuModel::next_occuring_event_isIdempotent()
121 {
122   return true;
123 }
124
125 /************
126  * Resource *
127  ************/
128 Cpu::Cpu(Model *model, simgrid::s4u::Host *host, std::vector<double> *speedPerPstate, int core)
129  : Cpu(model, host, nullptr/*constraint*/, speedPerPstate, core)
130 {
131 }
132
133 Cpu::Cpu(Model *model, simgrid::s4u::Host *host, lmm_constraint_t constraint,
134     std::vector<double> * speedPerPstate, int core)
135  : Resource(model, host->name().c_str(), constraint)
136  , coresAmount_(core)
137  , host_(host)
138 {
139   xbt_assert(core > 0, "Host %s must have at least one core, not 0.", host->name().c_str());
140
141   speed_.peak = speedPerPstate->front();
142   speed_.scale = 1;
143   host->pimpl_cpu = this;
144   xbt_assert(speed_.scale > 0, "Speed of host %s must be >0", host->name().c_str());
145
146   // Copy the power peak array:
147   unsigned long n = speedPerPstate->size();
148   for (unsigned long i = 0; i != n; ++i) {
149     double value = speedPerPstate->at(i);
150     speedPerPstate_.push_back(value);
151   }
152
153   xbt_assert(model == surf_cpu_model_pm || core==1, "Currently, VM cannot be multicore");
154 }
155
156 Cpu::~Cpu() = default;
157
158 double Cpu::getPstateSpeedCurrent()
159 {
160   return speed_.peak;
161 }
162
163 int Cpu::getNbPStates()
164 {
165   return speedPerPstate_.size();
166 }
167
168 void Cpu::setPState(int pstate_index)
169 {
170   xbt_assert(pstate_index <= static_cast<int>(speedPerPstate_.size()),
171       "Invalid parameters for CPU %s (pstate %d > length of pstates %d)", getName(), pstate_index,
172       static_cast<int>(speedPerPstate_.size()));
173
174   double new_peak_speed = speedPerPstate_[pstate_index];
175   pstate_ = pstate_index;
176   speed_.peak = new_peak_speed;
177
178   onSpeedChange();
179 }
180
181 int Cpu::getPState()
182 {
183   return pstate_;
184 }
185
186 double Cpu::getPstateSpeed(int pstate_index)
187 {
188   xbt_assert((pstate_index <= static_cast<int>(speedPerPstate_.size())), "Invalid parameters (pstate index out of bounds)");
189
190   return speedPerPstate_[pstate_index];
191 }
192
193 double Cpu::getSpeed(double load)
194 {
195   return load * speed_.peak;
196 }
197
198 double Cpu::getAvailableSpeed()
199 {
200 /* number between 0 and 1 */
201   return speed_.scale;
202 }
203
204 void Cpu::onSpeedChange() {
205   TRACE_surf_host_set_speed(surf_get_clock(), getName(), coresAmount_ * speed_.scale * speed_.peak);
206 }
207
208
209 int Cpu::getCore()
210 {
211   return coresAmount_;
212 }
213
214 void Cpu::setStateTrace(tmgr_trace_t trace)
215 {
216   xbt_assert(stateEvent_==nullptr,"Cannot set a second state trace to Host %s", host_->name().c_str());
217
218   stateEvent_ = future_evt_set->add_trace(trace, 0.0, this);
219 }
220 void Cpu::setSpeedTrace(tmgr_trace_t trace)
221 {
222   xbt_assert(speed_.event==nullptr,"Cannot set a second speed trace to Host %s", host_->name().c_str());
223
224   speed_.event = future_evt_set->add_trace(trace, 0.0, this);
225 }
226
227
228 /**********
229  * Action *
230  **********/
231
232 void CpuAction::updateRemainingLazy(double now)
233 {
234   xbt_assert(getStateSet() == getModel()->getRunningActionSet(), "You're updating an action that is not running.");
235   xbt_assert(getPriority() > 0, "You're updating an action that seems suspended.");
236
237   double delta = now - lastUpdate_;
238
239   if (remains_ > 0) {
240     XBT_CDEBUG(surf_kernel, "Updating action(%p): remains was %f, last_update was: %f", this, remains_, lastUpdate_);
241     double_update(&(remains_), lastValue_ * delta, sg_maxmin_precision*sg_surf_precision);
242
243     if (TRACE_is_enabled()) {
244       Cpu *cpu = static_cast<Cpu*>(lmm_constraint_id(lmm_get_cnst_from_var(getModel()->getMaxminSystem(), getVariable(), 0)));
245       TRACE_surf_host_set_utilization(cpu->getName(), getCategory(), lastValue_, lastUpdate_, now - lastUpdate_);
246     }
247     XBT_CDEBUG(surf_kernel, "Updating action(%p): remains is now %f", this, remains_);
248   }
249
250   lastUpdate_ = now;
251   lastValue_ = lmm_variable_getvalue(getVariable());
252 }
253
254 simgrid::xbt::signal<void(simgrid::surf::CpuAction*, Action::State)> CpuAction::onStateChange;
255
256 void CpuAction::setState(Action::State state){
257   Action::State previous = getState();
258   Action::setState(state);
259   onStateChange(this, previous);
260 }
261 std::list<Cpu*> CpuAction::cpus() {
262   std::list<Cpu*> retlist;
263   lmm_system_t sys = getModel()->getMaxminSystem();
264   int llen = lmm_get_number_of_cnst_from_var(sys, getVariable());
265
266   for(int i = 0; i<llen; i++)
267     retlist.push_back( (Cpu*)(lmm_constraint_id( lmm_get_cnst_from_var(sys, getVariable(), i) )) );
268
269   return retlist;
270 }
271
272 }
273 }