Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
New implementation for bandwidth factors
[simgrid.git] / src / kernel / resource / Model.cpp
1 /* Copyright (c) 2004-2021. 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 "simgrid/kernel/resource/Model.hpp"
7 #include "src/kernel/lmm/maxmin.hpp"
8
9 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(ker_resource);
10
11 namespace simgrid {
12 namespace kernel {
13 namespace resource {
14
15 Model::Model(const std::string& name) : name_(name)
16 {
17 }
18
19 Model::~Model() =
20     default; // Don't move this declaration to the header, or it will break external projects such as SimGrid-FMI
21
22 Model* Model::set_update_algorithm(Model::UpdateAlgo algo)
23 {
24   update_algorithm_ = algo;
25   return this;
26 }
27
28 Action::ModifiedSet* Model::get_modified_set() const
29 {
30   return maxmin_system_->modified_set_.get();
31 }
32
33 void Model::set_maxmin_system(lmm::System* system)
34 {
35   maxmin_system_.release(); // ugly...
36   maxmin_system_.reset(system);
37 }
38
39 double Model::next_occurring_event(double now)
40 {
41   // FIXME: set the good function once and for all
42   if (update_algorithm_ == Model::UpdateAlgo::LAZY)
43     return next_occurring_event_lazy(now);
44   else if (update_algorithm_ == Model::UpdateAlgo::FULL)
45     return next_occurring_event_full(now);
46   else
47     xbt_die("Invalid cpu update mechanism!");
48 }
49
50 double Model::next_occurring_event_lazy(double now)
51 {
52   XBT_DEBUG("Before share resources, the size of modified actions set is %zu", maxmin_system_->modified_set_->size());
53   maxmin_system_->lmm_solve();
54   XBT_DEBUG("After share resources, The size of modified actions set is %zu", maxmin_system_->modified_set_->size());
55
56   while (not maxmin_system_->modified_set_->empty()) {
57     Action* action = &(maxmin_system_->modified_set_->front());
58     maxmin_system_->modified_set_->pop_front();
59     ActionHeap::Type action_type = ActionHeap::Type::normal;
60
61     if (action->get_state_set() != &started_action_set_)
62       continue;
63
64     /* bogus priority, skip it */
65     if (action->get_sharing_penalty() <= 0 || action->get_type() == ActionHeap::Type::latency)
66       continue;
67
68     action->update_remains_lazy(now);
69
70     double min   = -1;
71     double share = action->get_rate();
72
73     if (share > 0) {
74       double time_to_completion;
75       if (action->get_remains() > 0) {
76         time_to_completion = action->get_remains_no_update() / share;
77       } else {
78         time_to_completion = 0.0;
79       }
80       min = now + time_to_completion; // when the task will complete if nothing changes
81     }
82
83     if ((action->get_max_duration() != NO_MAX_DURATION) &&
84         (min <= -1 || action->get_start_time() + action->get_max_duration() < min)) {
85       // when the task will complete anyway because of the deadline if any
86       min         = action->get_start_time() + action->get_max_duration();
87       action_type = ActionHeap::Type::max_duration;
88     }
89
90     XBT_DEBUG("Action(%p) corresponds to variable %d", action, action->get_variable()->rank_);
91
92     XBT_DEBUG("Action(%p) Start %f. May finish at %f (got a share of %f). Max_duration %f", action,
93               action->get_start_time(), min, share, action->get_max_duration());
94
95     if (min > -1) {
96       action_heap_.update(action, min, action_type);
97       XBT_DEBUG("Insert at heap action(%p) min %f now %f", action, min, now);
98     } else
99       DIE_IMPOSSIBLE;
100   }
101
102   // hereafter must have already the min value for this resource model
103   if (not action_heap_.empty()) {
104     double min = action_heap_.top_date() - now;
105     XBT_DEBUG("minimum with the HEAP %f", min);
106     return min;
107   } else {
108     XBT_DEBUG("The HEAP is empty, thus returning -1");
109     return -1;
110   }
111 }
112
113 double Model::next_occurring_event_full(double /*now*/)
114 {
115   maxmin_system_->solve();
116
117   double min = -1;
118
119   for (Action& action : *get_started_action_set()) {
120     double value = action.get_rate();
121     if (value > 0) {
122       if (action.get_remains() > 0)
123         value = action.get_remains_no_update() / value;
124       else
125         value = 0.0;
126       if (min < 0 || value < min) {
127         min = value;
128         XBT_DEBUG("Updating min (value) with %p: %f", &action, min);
129       }
130     }
131     if ((action.get_max_duration() >= 0) && (min < 0 || action.get_max_duration() < min)) {
132       min = action.get_max_duration();
133       XBT_DEBUG("Updating min (duration) with %p: %f", &action, min);
134     }
135   }
136   XBT_DEBUG("min value : %f", min);
137
138   return min;
139 }
140
141 void Model::update_actions_state(double now, double delta)
142 {
143   if (update_algorithm_ == Model::UpdateAlgo::FULL)
144     update_actions_state_full(now, delta);
145   else if (update_algorithm_ == Model::UpdateAlgo::LAZY)
146     update_actions_state_lazy(now, delta);
147   else
148     xbt_die("Invalid cpu update mechanism!");
149 }
150
151 /** Pops and returns the first action of that state set (or nullptr if none exist) */
152 Action* Model::extract_action(Action::StateSet* list)
153 {
154   if (list->empty())
155     return nullptr;
156   Action* res = &list->front();
157   list->pop_front();
158   return res;
159 }
160
161 /** Pops and returns the first finished action (or nullptr if none exist) */
162 Action* Model::extract_done_action()
163 {
164   return extract_action(get_finished_action_set());
165 }
166
167 /** Pops and returns the failed finished action (or nullptr if none exist) */
168 Action* Model::extract_failed_action()
169 {
170   return extract_action(get_failed_action_set());
171 }
172
173 void Model::update_actions_state_lazy(double /*now*/, double /*delta*/)
174 {
175   THROW_UNIMPLEMENTED;
176 }
177
178 void Model::update_actions_state_full(double /*now*/, double /*delta*/)
179 {
180   THROW_UNIMPLEMENTED;
181 }
182
183 } // namespace resource
184 } // namespace kernel
185 } // namespace simgrid