Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove a redundant parameter to the Cpu constructor
[simgrid.git] / src / surf / cpu_cas01.cpp
1 /* Copyright (c) 2009-2011, 2013-2016. 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 "maxmin_private.hpp"
10 #include "simgrid/sg_config.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_cpu_cas, surf_cpu,
13                                 "Logging specific to the SURF CPU IMPROVED module");
14
15 /*********
16  * Model *
17  *********/
18 void surf_cpu_model_init_Cas01()
19 {
20   xbt_assert(!surf_cpu_model_pm);
21   xbt_assert(!surf_cpu_model_vm);
22
23   char *optim = xbt_cfg_get_string(_sg_cfg_set, "cpu/optim");
24   if (!strcmp(optim, "TI")) {
25     surf_cpu_model_init_ti();
26     return;
27   }
28
29   surf_cpu_model_pm = new simgrid::surf::CpuCas01Model();
30   xbt_dynar_push(all_existing_models, &surf_cpu_model_pm);
31
32   surf_cpu_model_vm  = new simgrid::surf::CpuCas01Model();
33   xbt_dynar_push(all_existing_models, &surf_cpu_model_vm);
34 }
35
36 namespace simgrid {
37 namespace surf {
38
39 CpuCas01Model::CpuCas01Model() : simgrid::surf::CpuModel()
40 {
41   char *optim = xbt_cfg_get_string(_sg_cfg_set, "cpu/optim");
42   int select = xbt_cfg_get_boolean(_sg_cfg_set, "cpu/maxmin_selective_update");
43
44   if (!strcmp(optim, "Full")) {
45     updateMechanism_ = UM_FULL;
46     selectiveUpdate_ = select;
47   } else if (!strcmp(optim, "Lazy")) {
48     updateMechanism_ = UM_LAZY;
49     selectiveUpdate_ = 1;
50     xbt_assert((select == 1)
51                ||
52                (xbt_cfg_is_default_value
53                 (_sg_cfg_set, "cpu/maxmin_selective_update")),
54                "Disabling selective update while using the lazy update mechanism is dumb!");
55   } else {
56     xbt_die("Unsupported optimization (%s) for this model", optim);
57   }
58
59   p_cpuRunningActionSetThatDoesNotNeedBeingChecked = new ActionList();
60
61   maxminSystem_ = lmm_system_new(selectiveUpdate_);
62
63   if (getUpdateMechanism() == UM_LAZY) {
64     actionHeap_ = xbt_heap_new(8, NULL);
65     xbt_heap_set_update_callback(actionHeap_,  surf_action_lmm_update_index_heap);
66     modifiedSet_ = new ActionLmmList();
67     maxminSystem_->keep_track = modifiedSet_;
68   }
69 }
70
71 CpuCas01Model::~CpuCas01Model()
72 {
73   lmm_system_free(maxminSystem_);
74   maxminSystem_ = NULL;
75
76   if (actionHeap_)
77     xbt_heap_free(actionHeap_);
78   delete modifiedSet_;
79
80   surf_cpu_model_pm = NULL;
81
82   delete p_cpuRunningActionSetThatDoesNotNeedBeingChecked;
83 }
84
85 Cpu *CpuCas01Model::createCpu(simgrid::s4u::Host *host, xbt_dynar_t speedPerPstate, int core)
86 {
87   xbt_assert(xbt_dynar_getfirst_as(speedPerPstate, double) > 0.0,
88       "Speed has to be >0.0. Did you forget to specify the mandatory power attribute?");
89   xbt_assert(core > 0, "Invalid number of cores %d. Must be larger than 0", core);
90   return new CpuCas01(this, host, speedPerPstate, core);
91 }
92
93 double CpuCas01Model::next_occuring_event_full(double /*now*/)
94 {
95   return Model::shareResourcesMaxMin(getRunningActionSet(), maxminSystem_, lmm_solve);
96 }
97
98 /************
99  * Resource *
100  ************/
101 CpuCas01::CpuCas01(CpuCas01Model *model, simgrid::s4u::Host *host, xbt_dynar_t speedPerPstate, int core)
102 : Cpu(model, host,
103     lmm_constraint_new(model->getMaxminSystem(), this, core * xbt_dynar_get_as(speedPerPstate, 0/*pstate*/, double)),
104     speedPerPstate, core)
105 {
106   XBT_DEBUG("CPU create: peak=%f, pstate=%d", speed_.peak, pstate_);
107
108   coresAmount_ = core;
109 }
110
111 CpuCas01::~CpuCas01()
112 {
113   if (getModel() == surf_cpu_model_pm)
114     xbt_dynar_free(&speedPerPstate_);
115 }
116
117 xbt_dynar_t CpuCas01::getSpeedPeakList(){
118   return speedPerPstate_;
119 }
120
121 bool CpuCas01::isUsed()
122 {
123   return lmm_constraint_used(getModel()->getMaxminSystem(), getConstraint());
124 }
125
126 /** @brief take into account changes of speed (either load or max) */
127 void CpuCas01::onSpeedChange() {
128   lmm_variable_t var = NULL;
129   lmm_element_t elem = NULL;
130
131     lmm_update_constraint_bound(getModel()->getMaxminSystem(), getConstraint(),
132                                 coresAmount_ * speed_.scale * speed_.peak);
133     while ((var = lmm_get_var_from_cnst
134             (getModel()->getMaxminSystem(), getConstraint(), &elem))) {
135       CpuCas01Action *action = static_cast<CpuCas01Action*>(lmm_variable_id(var));
136
137       lmm_update_variable_bound(getModel()->getMaxminSystem(),
138                                 action->getVariable(),
139                                 speed_.scale * speed_.peak);
140     }
141
142   Cpu::onSpeedChange();
143 }
144
145 void CpuCas01::apply_event(tmgr_trace_iterator_t event, double value)
146 {
147   if (event == speed_.event) {
148     /* TODO (Hypervisor): do the same thing for constraint_core[i] */
149     xbt_assert(coresAmount_ == 1, "FIXME: add speed scaling code also for constraint_core[i]");
150
151     speed_.scale = value;
152     onSpeedChange();
153
154     tmgr_trace_event_unref(&speed_.event);
155   } else if (event == stateEvent_) {
156     /* TODO (Hypervisor): do the same thing for constraint_core[i] */
157     xbt_assert(coresAmount_ == 1, "FIXME: add state change code also for constraint_core[i]");
158
159     if (value > 0) {
160       if(isOff())
161         xbt_dynar_push_as(host_that_restart, char*, (char *)getName());
162       turnOn();
163     } else {
164       lmm_constraint_t cnst = getConstraint();
165       lmm_variable_t var = NULL;
166       lmm_element_t elem = NULL;
167       double date = surf_get_clock();
168
169       turnOff();
170
171       while ((var = lmm_get_var_from_cnst(getModel()->getMaxminSystem(), cnst, &elem))) {
172         Action *action = static_cast<Action*>(lmm_variable_id(var));
173
174         if (action->getState() == SURF_ACTION_RUNNING ||
175             action->getState() == SURF_ACTION_READY ||
176             action->getState() == SURF_ACTION_NOT_IN_THE_SYSTEM) {
177           action->setFinishTime(date);
178           action->setState(SURF_ACTION_FAILED);
179         }
180       }
181     }
182     tmgr_trace_event_unref(&stateEvent_);
183
184   } else {
185     xbt_die("Unknown event!\n");
186   }
187 }
188
189 CpuAction *CpuCas01::execution_start(double size)
190 {
191
192   XBT_IN("(%s,%g)", getName(), size);
193   CpuCas01Action *action = new CpuCas01Action(getModel(), size, isOff(),
194       speed_.scale * speed_.peak, getConstraint());
195
196   XBT_OUT();
197   return action;
198 }
199
200 CpuAction *CpuCas01::sleep(double duration)
201 {
202   if (duration > 0)
203     duration = MAX(duration, sg_surf_precision);
204
205   XBT_IN("(%s,%g)", getName(), duration);
206   CpuCas01Action *action = new CpuCas01Action(getModel(), 1.0, isOff(),
207       speed_.scale * speed_.peak, getConstraint());
208
209
210   // FIXME: sleep variables should not consume 1.0 in lmm_expand
211   action->m_maxDuration = duration;
212   action->m_suspended = 2;
213   if (duration == NO_MAX_DURATION) {
214     /* Move to the *end* of the corresponding action set. This convention
215        is used to speed up update_resource_state  */
216     action->getStateSet()->erase(action->getStateSet()->iterator_to(*action));
217     action->p_stateSet = static_cast<CpuCas01Model*>(getModel())->p_cpuRunningActionSetThatDoesNotNeedBeingChecked;
218     action->getStateSet()->push_back(*action);
219   }
220
221   lmm_update_variable_weight(getModel()->getMaxminSystem(),
222       action->getVariable(), 0.0);
223   if (getModel()->getUpdateMechanism() == UM_LAZY) {     // remove action from the heap
224     action->heapRemove(getModel()->getActionHeap());
225     // this is necessary for a variable with weight 0 since such
226     // variables are ignored in lmm and we need to set its max_duration
227     // correctly at the next call to share_resources
228     getModel()->getModifiedSet()->push_front(*action);
229   }
230
231   XBT_OUT();
232   return action;
233 }
234
235 /**********
236  * Action *
237  **********/
238
239 CpuCas01Action::CpuCas01Action(Model *model, double cost, bool failed, double speed, lmm_constraint_t constraint)
240  : CpuAction(model, cost, failed,
241          lmm_variable_new(model->getMaxminSystem(), this,
242          1.0, speed, 1))
243 {
244   if (model->getUpdateMechanism() == UM_LAZY) {
245     m_indexHeap = -1;
246     m_lastUpdate = surf_get_clock();
247     m_lastValue = 0.0;
248   }
249   lmm_expand(model->getMaxminSystem(), constraint, getVariable(), 1.0);
250 }
251
252 }
253 }