Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use simgrid::xbt::intrusive_erase().
[simgrid.git] / src / surf / cpu_cas01.cpp
1 /* Copyright (c) 2009-2011, 2013-2017. 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_cas01.hpp"
8 #include "cpu_ti.hpp"
9 #include "simgrid/sg_config.h"
10 #include "src/kernel/lmm/maxmin.hpp"
11 #include "xbt/utility.hpp"
12 #include <algorithm>
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_cpu_cas, surf_cpu, "Logging specific to the SURF CPU IMPROVED module");
15
16 /*********
17  * Model *
18  *********/
19 void surf_cpu_model_init_Cas01()
20 {
21   xbt_assert(not surf_cpu_model_pm);
22   xbt_assert(not surf_cpu_model_vm);
23
24   if (xbt_cfg_get_string("cpu/optim") == "TI") {
25     surf_cpu_model_init_ti();
26     return;
27   }
28
29   surf_cpu_model_pm = new simgrid::surf::CpuCas01Model();
30   all_existing_models->push_back(surf_cpu_model_pm);
31
32   surf_cpu_model_vm  = new simgrid::surf::CpuCas01Model();
33   all_existing_models->push_back(surf_cpu_model_vm);
34 }
35
36 namespace simgrid {
37 namespace surf {
38
39 CpuCas01Model::CpuCas01Model() : simgrid::surf::CpuModel()
40 {
41   std::string optim = xbt_cfg_get_string("cpu/optim");
42   bool select = xbt_cfg_get_boolean("cpu/maxmin-selective-update");
43
44   if (optim == "Full") {
45     setUpdateMechanism(UM_FULL);
46     selectiveUpdate_ = select;
47   } else if (optim == "Lazy") {
48     setUpdateMechanism(UM_LAZY);
49     selectiveUpdate_ = true;
50     xbt_assert(select || (xbt_cfg_is_default_value("cpu/maxmin-selective-update")),
51                "Disabling selective update while using the lazy update mechanism is dumb!");
52   } else {
53     xbt_die("Unsupported optimization (%s) for this model", optim.c_str());
54   }
55
56   p_cpuRunningActionSetThatDoesNotNeedBeingChecked = new ActionList();
57   maxminSystem_                                    = new simgrid::kernel::lmm::s_lmm_system_t(selectiveUpdate_);
58
59   if (getUpdateMechanism() == UM_LAZY) {
60     modifiedSet_ = new ActionLmmList();
61     maxminSystem_->keep_track = modifiedSet_;
62   }
63 }
64
65 CpuCas01Model::~CpuCas01Model()
66 {
67   delete maxminSystem_;
68   maxminSystem_ = nullptr;
69   delete modifiedSet_;
70
71   surf_cpu_model_pm = nullptr;
72
73   delete p_cpuRunningActionSetThatDoesNotNeedBeingChecked;
74 }
75
76 Cpu *CpuCas01Model::createCpu(simgrid::s4u::Host *host, std::vector<double> *speedPerPstate, int core)
77 {
78   return new CpuCas01(this, host, speedPerPstate, core);
79 }
80
81 /************
82  * Resource *
83  ************/
84 CpuCas01::CpuCas01(CpuCas01Model* model, simgrid::s4u::Host* host, std::vector<double>* speedPerPstate, int core)
85     : Cpu(model, host, model->getMaxminSystem()->constraint_new(this, core * speedPerPstate->front()), speedPerPstate,
86           core)
87 {
88 }
89
90 CpuCas01::~CpuCas01()
91 {
92   if (model() == surf_cpu_model_pm)
93     speedPerPstate_.clear();
94 }
95
96 std::vector<double> * CpuCas01::getSpeedPeakList(){
97   return &speedPerPstate_;
98 }
99
100 bool CpuCas01::isUsed()
101 {
102   return model()->getMaxminSystem()->constraint_used(constraint());
103 }
104
105 /** @brief take into account changes of speed (either load or max) */
106 void CpuCas01::onSpeedChange() {
107   lmm_variable_t var = nullptr;
108   const_lmm_element_t elem = nullptr;
109
110   model()->getMaxminSystem()->update_constraint_bound(constraint(), coresAmount_ * speed_.scale * speed_.peak);
111   while ((var = constraint()->get_variable(&elem))) {
112     CpuCas01Action* action = static_cast<CpuCas01Action*>(var->get_id());
113
114     model()->getMaxminSystem()->update_variable_bound(action->getVariable(),
115                                                       action->requestedCore() * speed_.scale * speed_.peak);
116   }
117
118   Cpu::onSpeedChange();
119 }
120
121 void CpuCas01::apply_event(tmgr_trace_event_t event, double value)
122 {
123   if (event == speed_.event) {
124     /* TODO (Hypervisor): do the same thing for constraint_core[i] */
125     xbt_assert(coresAmount_ == 1, "FIXME: add speed scaling code also for constraint_core[i]");
126
127     speed_.scale = value;
128     onSpeedChange();
129
130     tmgr_trace_event_unref(&speed_.event);
131   } else if (event == stateEvent_) {
132     /* TODO (Hypervisor): do the same thing for constraint_core[i] */
133     xbt_assert(coresAmount_ == 1, "FIXME: add state change code also for constraint_core[i]");
134
135     if (value > 0) {
136       if(isOff())
137         host_that_restart.push_back(getHost());
138       turnOn();
139     } else {
140       lmm_constraint_t cnst = constraint();
141       lmm_variable_t var = nullptr;
142       const_lmm_element_t elem = nullptr;
143       double date = surf_get_clock();
144
145       turnOff();
146
147       while ((var = cnst->get_variable(&elem))) {
148         Action* action = static_cast<Action*>(var->get_id());
149
150         if (action->getState() == Action::State::running ||
151             action->getState() == Action::State::ready ||
152             action->getState() == Action::State::not_in_the_system) {
153           action->setFinishTime(date);
154           action->setState(Action::State::failed);
155         }
156       }
157     }
158     tmgr_trace_event_unref(&stateEvent_);
159
160   } else {
161     xbt_die("Unknown event!\n");
162   }
163 }
164
165 /** @brief Start a new execution on this CPU lasting @param size flops and using one core */
166 CpuAction *CpuCas01::execution_start(double size)
167 {
168   return new CpuCas01Action(model(), size, isOff(), speed_.scale * speed_.peak, constraint());
169 }
170 CpuAction* CpuCas01::execution_start(double size, int requestedCores)
171 {
172   return new CpuCas01Action(model(), size, isOff(), speed_.scale * speed_.peak, constraint(), requestedCores);
173 }
174
175 CpuAction *CpuCas01::sleep(double duration)
176 {
177   if (duration > 0)
178     duration = std::max(duration, sg_surf_precision);
179
180   XBT_IN("(%s,%g)", getCname(), duration);
181   CpuCas01Action* action = new CpuCas01Action(model(), 1.0, isOff(), speed_.scale * speed_.peak, constraint());
182
183   // FIXME: sleep variables should not consume 1.0 in lmm_expand
184   action->setMaxDuration(duration);
185   action->suspended_ = 2;
186   if (duration < 0) { // NO_MAX_DURATION
187     /* Move to the *end* of the corresponding action set. This convention is used to speed up update_resource_state */
188     simgrid::xbt::intrusive_erase(*action->getStateSet(), *action);
189     action->stateSet_ = static_cast<CpuCas01Model*>(model())->p_cpuRunningActionSetThatDoesNotNeedBeingChecked;
190     action->getStateSet()->push_back(*action);
191   }
192
193   model()->getMaxminSystem()->update_variable_weight(action->getVariable(), 0.0);
194   if (model()->getUpdateMechanism() == UM_LAZY) { // remove action from the heap
195     action->heapRemove(model()->getActionHeap());
196     // this is necessary for a variable with weight 0 since such variables are ignored in lmm and we need to set its
197     // max_duration correctly at the next call to share_resources
198     model()->getModifiedSet()->push_front(*action);
199   }
200
201   XBT_OUT();
202   return action;
203 }
204
205 /**********
206  * Action *
207  **********/
208 CpuCas01Action::CpuCas01Action(Model* model, double cost, bool failed, double speed, lmm_constraint_t constraint,
209                                int requestedCore)
210     : CpuAction(model, cost, failed,
211                 model->getMaxminSystem()->variable_new(this, 1.0 / requestedCore, requestedCore * speed, 1))
212     , requestedCore_(requestedCore)
213 {
214   if (model->getUpdateMechanism() == UM_LAZY) {
215     refreshLastUpdate();
216     setLastValue(0.0);
217   }
218   model->getMaxminSystem()->expand(constraint, getVariable(), 1.0);
219 }
220
221 CpuCas01Action::CpuCas01Action(Model* model, double cost, bool failed, double speed, lmm_constraint_t constraint)
222     : CpuCas01Action(model, cost, failed, speed, constraint, 1)
223 {
224 }
225
226 int CpuCas01Action::requestedCore()
227 {
228   return requestedCore_;
229 }
230
231 CpuCas01Action::~CpuCas01Action()=default;
232
233 }
234 }