Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ebe52e9cb8506b35fb7de1b112f92413da419c44
[simgrid.git] / src / surf / cpu_interface.cpp
1 /* Copyright (c) 2013-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "cpu_interface.hpp"
7 #include "src/instr/instr_private.hpp" // TRACE_is_enabled(). FIXME: remove by subscribing tracing to the surf signals
8 #include "src/surf/surf_interface.hpp"
9 #include "surf/surf.hpp"
10
11 XBT_LOG_EXTERNAL_CATEGORY(surf_kernel);
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_cpu, surf, "Logging specific to the SURF cpu module");
13
14 simgrid::surf::CpuModel *surf_cpu_model_pm;
15 simgrid::surf::CpuModel *surf_cpu_model_vm;
16
17 namespace simgrid {
18 namespace surf {
19
20 /*********
21  * Model *
22  *********/
23
24 void CpuModel::update_actions_state_lazy(double now, double /*delta*/)
25 {
26   while (not get_action_heap().empty() && double_equals(get_action_heap().top_date(), now, sg_surf_precision)) {
27
28     CpuAction* action = static_cast<CpuAction*>(get_action_heap().pop());
29     XBT_CDEBUG(surf_kernel, "Something happened to action %p", action);
30
31     action->finish(kernel::resource::Action::State::done);
32     XBT_CDEBUG(surf_kernel, "Action %p finished", action);
33   }
34   if (TRACE_is_enabled()) {
35     //defining the last timestamp that we can safely dump to trace file
36     //without losing the event ascending order (considering all CPU's)
37     double smaller = -1;
38     for (kernel::resource::Action const& action : *get_running_action_set()) {
39       if (smaller < 0 || action.get_last_update() < smaller)
40         smaller = action.get_last_update();
41     }
42     if (smaller > 0) {
43       TRACE_last_timestamp_to_dump = smaller;
44     }
45   }
46 }
47
48 void CpuModel::update_actions_state_full(double now, double delta)
49 {
50   for (auto it = std::begin(*get_running_action_set()); it != std::end(*get_running_action_set());) {
51     CpuAction& action = static_cast<CpuAction&>(*it);
52     ++it; // increment iterator here since the following calls to action.finish() may invalidate it
53
54     action.update_remains(action.get_variable()->get_value() * delta);
55
56     if (action.get_max_duration() != NO_MAX_DURATION)
57       action.update_max_duration(delta);
58
59     if (((action.get_remains_no_update() <= 0) && (action.get_variable()->get_weight() > 0)) ||
60         ((action.get_max_duration() != NO_MAX_DURATION) && (action.get_max_duration() <= 0))) {
61       action.finish(kernel::resource::Action::State::done);
62     }
63   }
64 }
65
66 /************
67  * Resource *
68  ************/
69 Cpu::Cpu(kernel::resource::Model* model, simgrid::s4u::Host* host, std::vector<double>* speedPerPstate, int core)
70     : Cpu(model, host, nullptr /*constraint*/, speedPerPstate, core)
71 {
72 }
73
74 Cpu::Cpu(kernel::resource::Model* model, simgrid::s4u::Host* host, kernel::lmm::Constraint* constraint,
75          std::vector<double>* speedPerPstate, int core)
76     : Resource(model, host->get_cname(), constraint), coresAmount_(core), host_(host)
77 {
78   xbt_assert(core > 0, "Host %s must have at least one core, not 0.", host->get_cname());
79
80   speed_.peak = speedPerPstate->front();
81   speed_.scale = 1;
82   host->pimpl_cpu = this;
83   xbt_assert(speed_.scale > 0, "Speed of host %s must be >0", host->get_cname());
84
85   // Copy the power peak array:
86   for (double const& value : *speedPerPstate) {
87     speedPerPstate_.push_back(value);
88   }
89 }
90
91 Cpu::~Cpu() = default;
92
93 int Cpu::getNbPStates()
94 {
95   return speedPerPstate_.size();
96 }
97
98 void Cpu::setPState(int pstate_index)
99 {
100   xbt_assert(pstate_index <= static_cast<int>(speedPerPstate_.size()),
101              "Invalid parameters for CPU %s (pstate %d > length of pstates %d). Please fix your platform file, or your "
102              "call to change the pstate.",
103              get_cname(), pstate_index, static_cast<int>(speedPerPstate_.size()));
104
105   double new_peak_speed = speedPerPstate_[pstate_index];
106   pstate_ = pstate_index;
107   speed_.peak = new_peak_speed;
108
109   onSpeedChange();
110 }
111
112 int Cpu::getPState()
113 {
114   return pstate_;
115 }
116
117 double Cpu::getPstateSpeed(int pstate_index)
118 {
119   xbt_assert((pstate_index <= static_cast<int>(speedPerPstate_.size())), "Invalid parameters (pstate index out of bounds)");
120
121   return speedPerPstate_[pstate_index];
122 }
123
124 double Cpu::getSpeed(double load)
125 {
126   return load * speed_.peak;
127 }
128
129 double Cpu::get_available_speed()
130 {
131 /* number between 0 and 1 */
132   return speed_.scale;
133 }
134
135 void Cpu::onSpeedChange() {
136   if (TRACE_categorized() || TRACE_uncategorized() || TRACE_platform())
137     instr::Container::by_name(get_cname())
138         ->get_variable("power")
139         ->set_event(surf_get_clock(), coresAmount_ * speed_.scale * speed_.peak);
140   s4u::Host::onSpeedChange(*host_);
141 }
142
143 int Cpu::coreCount()
144 {
145   return coresAmount_;
146 }
147
148 void Cpu::setStateTrace(tmgr_trace_t trace)
149 {
150   xbt_assert(stateEvent_ == nullptr, "Cannot set a second state trace to Host %s", host_->get_cname());
151
152   stateEvent_ = future_evt_set->add_trace(trace, this);
153 }
154 void Cpu::set_speed_trace(tmgr_trace_t trace)
155 {
156   xbt_assert(speed_.event == nullptr, "Cannot set a second speed trace to Host %s", host_->get_cname());
157
158   speed_.event = future_evt_set->add_trace(trace, this);
159 }
160
161
162 /**********
163  * Action *
164  **********/
165
166 void CpuAction::update_remains_lazy(double now)
167 {
168   xbt_assert(get_state_set() == get_model()->get_running_action_set(),
169              "You're updating an action that is not running.");
170   xbt_assert(get_priority() > 0, "You're updating an action that seems suspended.");
171
172   double delta = now - get_last_update();
173
174   if (get_remains_no_update() > 0) {
175     XBT_CDEBUG(surf_kernel, "Updating action(%p): remains was %f, last_update was: %f", this, get_remains_no_update(),
176                get_last_update());
177     update_remains(get_last_value() * delta);
178
179     if (TRACE_is_enabled()) {
180       Cpu* cpu = static_cast<Cpu*>(get_variable()->get_constraint(0)->get_id());
181       TRACE_surf_resource_set_utilization("HOST", "power_used", cpu->get_cname(), get_category(), get_last_value(),
182                                           get_last_update(), now - get_last_update());
183     }
184     XBT_CDEBUG(surf_kernel, "Updating action(%p): remains is now %f", this, get_remains_no_update());
185   }
186
187   set_last_update();
188   set_last_value(get_variable()->get_value());
189 }
190
191 simgrid::xbt::signal<void(simgrid::surf::CpuAction*, kernel::resource::Action::State)> CpuAction::onStateChange;
192
193 void CpuAction::suspend(){
194   Action::State previous = get_state();
195   onStateChange(this, previous);
196   Action::suspend();
197 }
198
199 void CpuAction::resume(){
200   Action::State previous = get_state();
201   onStateChange(this, previous);
202   Action::resume();
203 }
204
205 void CpuAction::set_state(Action::State state)
206 {
207   Action::State previous = get_state();
208   Action::set_state(state);
209   onStateChange(this, previous);
210 }
211 /** @brief returns a list of all CPUs that this action is using */
212 std::list<Cpu*> CpuAction::cpus() {
213   std::list<Cpu*> retlist;
214   int llen = get_variable()->get_number_of_constraint();
215
216   for (int i = 0; i < llen; i++) {
217     /* Beware of composite actions: ptasks put links and cpus together */
218     // extra pb: we cannot dynamic_cast from void*...
219     kernel::resource::Resource* resource =
220         static_cast<kernel::resource::Resource*>(get_variable()->get_constraint(i)->get_id());
221     Cpu* cpu           = dynamic_cast<Cpu*>(resource);
222     if (cpu != nullptr)
223       retlist.push_back(cpu);
224   }
225
226   return retlist;
227 }
228
229 }
230 }