Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add sg_exec_set_host
[simgrid.git] / src / s4u / s4u_Exec.cpp
1 /* Copyright (c) 2006-2020. 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/Exception.hpp"
7 #include "simgrid/exec.h"
8 #include "simgrid/s4u/Actor.hpp"
9 #include "simgrid/s4u/Exec.hpp"
10 #include "src/kernel/activity/ExecImpl.hpp"
11 #include "xbt/log.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_exec, s4u_activity, "S4U asynchronous executions");
14
15 namespace simgrid {
16 namespace s4u {
17 xbt::signal<void(Actor const&, Exec const&)> Exec::on_start;
18 xbt::signal<void(Actor const&, Exec const&)> Exec::on_completion;
19
20 Exec::Exec()
21 {
22   pimpl_ = kernel::activity::ExecImplPtr(new kernel::activity::ExecImpl());
23 }
24
25 Exec* Exec::wait()
26 {
27   return this->wait_for(-1);
28 }
29
30 Exec* Exec::wait_for(double timeout)
31 {
32   if (state_ == State::INITED)
33     vetoable_start();
34
35   kernel::actor::ActorImpl* issuer = Actor::self()->get_impl();
36   kernel::actor::simcall_blocking<void>([this, issuer, timeout] { this->get_impl()->wait_for(issuer, timeout); });
37   state_ = State::FINISHED;
38   on_completion(*Actor::self(), *this);
39   this->release_dependencies();
40   return this;
41 }
42
43 int Exec::wait_any_for(std::vector<ExecPtr>* execs, double timeout)
44 {
45   std::unique_ptr<kernel::activity::ExecImpl* []> rexecs(new kernel::activity::ExecImpl*[execs->size()]);
46   std::transform(begin(*execs), end(*execs), rexecs.get(),
47                  [](const ExecPtr& exec) { return static_cast<kernel::activity::ExecImpl*>(exec->pimpl_.get()); });
48
49   int changed_pos = simcall_execution_waitany_for(rexecs.get(), execs->size(), timeout);
50   if (changed_pos != -1)
51     execs->at(changed_pos)->release_dependencies();
52   return changed_pos;
53 }
54
55 Exec* Exec::cancel()
56 {
57   kernel::actor::simcall([this] { boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->cancel(); });
58   state_ = State::CANCELED;
59   return this;
60 }
61
62 /** @brief change the execution bound
63  * This means changing the maximal amount of flops per second that it may consume, regardless of what the host may
64  * deliver. Currently, this cannot be changed once the exec started.
65  */
66 ExecPtr Exec::set_bound(double bound)
67 {
68   xbt_assert(state_ == State::INITED, "Cannot change the bound of an exec after its start");
69   bound_ = bound;
70   return this;
71 }
72 ExecPtr Exec::set_timeout(double timeout) // XBT_ATTRIB_DEPRECATED_v329
73 {
74   xbt_assert(state_ == State::INITED, "Cannot change the bound of an exec after its start");
75   timeout_ = timeout;
76   return this;
77 }
78
79 ExecPtr Exec::set_flops_amount(double flops_amount)
80 {
81   xbt_assert(state_ == State::INITED, "Cannot change the flop_amount of an exec after its start");
82   flops_amounts_.assign(1, flops_amount);
83   Activity::set_remaining(flops_amounts_.front());
84   return this;
85 }
86
87 ExecPtr Exec::set_flops_amounts(const std::vector<double>& flops_amounts)
88 {
89   xbt_assert(state_ == State::INITED, "Cannot change the flops_amounts of an exec after its start");
90   flops_amounts_ = flops_amounts;
91   parallel_      = true;
92   return this;
93 }
94
95 ExecPtr Exec::set_bytes_amounts(const std::vector<double>& bytes_amounts)
96 {
97   xbt_assert(state_ == State::INITED, "Cannot change the bytes_amounts of an exec after its start");
98   bytes_amounts_ = bytes_amounts;
99   parallel_      = true;
100   return this;
101 }
102
103 /** @brief Retrieve the host on which this activity takes place.
104  *  If it runs on more than one host, only the first host is returned.
105  */
106 Host* Exec::get_host() const
107 {
108   return static_cast<kernel::activity::ExecImpl*>(pimpl_.get())->get_host();
109 }
110 unsigned int Exec::get_host_number() const
111 {
112   return static_cast<kernel::activity::ExecImpl*>(pimpl_.get())->get_host_number();
113 }
114 double Exec::get_start_time() const
115 {
116   return (pimpl_->surf_action_ == nullptr) ? -1 : pimpl_->surf_action_->get_start_time();
117 }
118 double Exec::get_finish_time() const
119 {
120   return (pimpl_->surf_action_ == nullptr) ? -1 : pimpl_->surf_action_->get_finish_time();
121 }
122 double Exec::get_cost() const
123 {
124   return (pimpl_->surf_action_ == nullptr) ? -1 : pimpl_->surf_action_->get_cost();
125 }
126
127 /** @brief  Change the execution priority, don't you think?
128  *
129  * An execution with twice the priority will get twice the amount of flops when the resource is shared.
130  * The default priority is 1.
131  *
132  * Currently, this cannot be changed once the exec started. */
133 ExecPtr Exec::set_priority(double priority)
134 {
135   xbt_assert(state_ == State::INITED, "Cannot change the priority of an exec after its start");
136   priority_ = priority;
137   return this;
138 }
139
140 /** @brief Change the host on which this activity takes place.
141  *
142  * The activity cannot be terminated already (but it may be started). */
143 ExecPtr Exec::set_host(Host* host)
144 {
145   xbt_assert(state_ == State::INITED || state_ == State::STARTED,
146              "Cannot change the host of an exec once it's done (state: %d)", (int)state_);
147   if (state_ == State::STARTED)
148     boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->migrate(host);
149   boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->set_host(host);
150   return this;
151 }
152
153 ExecPtr Exec::set_hosts(const std::vector<Host*>& hosts)
154 {
155   xbt_assert(state_ == State::INITED, "Cannot change the hosts of an exec once it's done (state: %d)", (int)state_);
156   hosts_    = hosts;
157   parallel_ = true;
158   return this;
159 }
160
161 ///////////// SEQUENTIAL EXECUTIONS ////////
162 Exec* Exec::start()
163 {
164   if (is_parallel())
165     kernel::actor::simcall([this] {
166       (*boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_))
167           .set_hosts(hosts_)
168           .set_timeout(timeout_)
169           .set_flops_amounts(flops_amounts_)
170           .set_bytes_amounts(bytes_amounts_)
171           .start();
172     });
173   else
174     kernel::actor::simcall([this] {
175       (*boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_))
176           .set_name(get_name())
177           .set_tracing_category(get_tracing_category())
178           .set_sharing_penalty(1. / priority_)
179           .set_bound(bound_)
180           .set_flops_amount(flops_amounts_.front())
181           .start();
182     });
183   state_ = State::STARTED;
184   on_start(*Actor::self(), *this);
185   return this;
186 }
187
188 double Exec::get_remaining() const
189 {
190   if (is_parallel()) {
191     XBT_WARN("Calling get_remaining() on a parallel execution is not allowed. Call get_remaining_ratio() instead.");
192     return get_remaining_ratio();
193   } else
194     return kernel::actor::simcall(
195         [this]() { return boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->get_remaining(); });
196 }
197
198 /** @brief Returns the ratio of elements that are still to do
199  *
200  * The returned value is between 0 (completely done) and 1 (nothing done yet).
201  */
202 double Exec::get_remaining_ratio() const
203 {
204   if (is_parallel())
205     return kernel::actor::simcall(
206         [this]() { return boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->get_par_remaining_ratio(); });
207   else
208     return kernel::actor::simcall(
209         [this]() { return boost::static_pointer_cast<kernel::activity::ExecImpl>(pimpl_)->get_seq_remaining_ratio(); });
210 }
211
212 } // namespace s4u
213 } // namespace simgrid
214 /* **************************** Public C interface *************************** */
215 void sg_exec_set_bound(sg_exec_t exec, double bound)
216 {
217   exec->set_bound(bound);
218 }
219
220 void sg_exec_set_host(sg_exec_t exec, sg_host_t new_host)
221 {
222   exec->set_host(new_host);
223 }
224
225 double sg_exec_get_remaining(const_sg_exec_t exec)
226 {
227   return exec->get_remaining();
228 }
229
230 void sg_exec_start(sg_exec_t exec)
231 {
232   exec->start();
233 }
234
235 void sg_exec_wait(sg_exec_t exec)
236 {
237   exec->wait_for(-1);
238   exec->unref();
239 }
240
241 void sg_exec_wait_for(sg_exec_t exec, double timeout)
242 {
243   try {
244     exec->wait_for(timeout);
245   } catch (const simgrid::TimeoutException&) {
246     // FIXME: add better exception handling
247     XBT_DEBUG("Exec reached its timeout");
248   }
249   exec->unref();
250 }