Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Pass the real pointer to the englobing MC class for the event callback.
[simgrid.git] / src / surf / cpu_interface.hpp
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 #ifndef SURF_CPU_INTERFACE_HPP_
7 #define SURF_CPU_INTERFACE_HPP_
8
9 #include "simgrid/kernel/resource/Model.hpp"
10 #include "simgrid/kernel/resource/Resource.hpp"
11 #include "simgrid/s4u/Host.hpp"
12 #include "src/kernel/lmm/maxmin.hpp"
13
14 #include <list>
15
16 /***********
17  * Classes *
18  ***********/
19
20 namespace simgrid {
21 namespace kernel {
22 namespace resource {
23
24 class CpuAction;
25
26 /*********
27  * Model *
28  *********/
29 class XBT_PUBLIC CpuModel : public Model {
30 public:
31   using Model::Model;
32
33   /**
34    * @brief Create a Cpu
35    *
36    * @param host The host that will have this CPU
37    * @param speed_per_pstate Processor speed (in Flops) of each pstate.
38    *                         This ignores any potential external load coming from a trace.
39    * @param core The number of core of this Cpu
40    */
41   virtual CpuImpl* create_cpu(s4u::Host* host, const std::vector<double>& speed_per_pstate) = 0;
42
43   void update_actions_state_lazy(double now, double delta) override;
44   void update_actions_state_full(double now, double delta) override;
45 };
46
47 /************
48  * Resource *
49  ************/
50
51 class XBT_PUBLIC CpuImpl : public Resource_T<CpuImpl> {
52   friend vm::VirtualMachineImpl; // Resets the VCPU
53
54   s4u::Host* piface_;
55   int core_count_ = 1;
56   int pstate_ = 0;                       /*< Current pstate (index in the speed_per_pstate_)*/
57   std::vector<double> speed_per_pstate_; /*< List of supported CPU capacities (pstate related). Not 'const' because VCPU
58                                             get modified on migration */
59
60 public:
61   /**
62    * @brief Cpu constructor
63    *
64    * @param host The host in which this Cpu should be plugged
65    * @param speed_per_pstate Processor speed (in flop per second) for each pstate
66    */
67   CpuImpl(s4u::Host* host, const std::vector<double>& speed_per_pstate);
68
69   CpuImpl(const CpuImpl&) = delete;
70   CpuImpl& operator=(const CpuImpl&) = delete;
71
72   /** @brief Public interface */
73   s4u::Host* get_iface() { return piface_; }
74
75   CpuImpl* set_core_count(int core_count);
76   virtual int get_core_count();
77
78   void seal() override;
79
80   /** @brief Get a forecast of the speed (in flops/s) if the load were as provided.
81    *
82    * The provided load should encompasses both the application's activities and the external load that come from a
83    * trace.
84    *
85    * Use a load of 1.0 to compute the amount of flops that the Cpu would deliver with one CPU-bound task.
86    * If you use a load of 0, this function will return 0: when nobody is using the Cpu, it delivers nothing.
87    *
88    * If you want to know the amount of flops currently delivered, use  load = get_load()*get_speed_ratio()
89    */
90   virtual double get_speed(double load) const { return load * speed_.peak; }
91
92   /** @brief Get the available speed ratio, in [0:1]. This accounts for external load (see @ref set_speed_profile()). */
93   virtual double get_speed_ratio() { return speed_.scale; }
94
95   /** @brief Get the peak processor speed (in flops/s), at the specified pstate */
96   virtual double get_pstate_peak_speed(int pstate_index) const;
97
98   virtual int get_pstate_count() const { return speed_per_pstate_.size(); }
99
100   virtual int get_pstate() const { return pstate_; }
101   virtual CpuImpl* set_pstate(int pstate_index);
102
103   /*< @brief Setup the profile file with availability events (peak speed changes due to external load).
104    * Profile must contain relative values (ratio between 0 and 1)
105    */
106   virtual CpuImpl* set_speed_profile(profile::Profile* profile);
107
108   /**
109    * @brief Set the CPU's speed
110    *
111    * @param speed_per_state list of powers for this processor (default power is at index 0)
112    */
113   CpuImpl* set_pstate_speed(const std::vector<double>& speed_per_state);
114
115   /**
116    * @brief Execute some quantity of computation
117    *
118    * @param size The value of the processing amount (in flop) needed to process
119    * @return The CpuAction corresponding to the processing
120    */
121   virtual CpuAction* execution_start(double size) = 0;
122
123   /**
124    * @brief Execute some quantity of computation on more than one core
125    *
126    * @param size The value of the processing amount (in flop) needed to process
127    * @param requested_cores The desired amount of cores. Must be >= 1
128    * @return The CpuAction corresponding to the processing
129    */
130   virtual CpuAction* execution_start(double size, int requested_cores) = 0;
131
132   /**
133    * @brief Make a process sleep for duration (in seconds)
134    *
135    * @param duration The number of seconds to sleep
136    * @return The CpuAction corresponding to the sleeping
137    */
138   virtual CpuAction* sleep(double duration) = 0;
139
140 protected:
141   /** @brief Take speed changes (either load or max) into account */
142   virtual void on_speed_change();
143
144   /** Reset most characteristics of this CPU to the one of that CPU.
145    *
146    * Used to reset a VCPU when its VM migrates to another host, so it only resets the fields that should be in this
147    *case.
148    **/
149   virtual void reset_vcpu(CpuImpl* that);
150
151   Metric speed_                  = {1.0, 0, nullptr};
152 };
153
154 /**********
155  * Action *
156  **********/
157
158  /** @ingroup SURF_cpu_interface
159  * @brief A CpuAction represents the execution of code on one or several Cpus
160  */
161 class XBT_PUBLIC CpuAction : public Action {
162 public:
163   /** @brief Signal emitted when the action state changes (ready/running/done, etc)
164    *  Signature: `void(CpuAction const& action, simgrid::kernel::resource::Action::State previous)`
165    */
166   static xbt::signal<void(CpuAction const&, Action::State)> on_state_change;
167
168   using Action::Action;
169
170   void set_state(Action::State state) override;
171
172   void update_remains_lazy(double now) override;
173   std::list<CpuImpl*> cpus() const;
174
175   void suspend() override;
176   void resume() override;
177 };
178 } // namespace resource
179 } // namespace kernel
180 } // namespace simgrid
181
182 #endif /* SURF_CPU_INTERFACE_HPP_ */