Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / src / surf / cpu_ti.hpp
1 /* Copyright (c) 2013-2022. 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_MODEL_CPUTI_HPP_
7 #define SURF_MODEL_CPUTI_HPP_
8
9 #include "src/kernel/resource/CpuImpl.hpp"
10 #include "src/kernel/resource/profile/Profile.hpp"
11 #include <boost/intrusive/list.hpp>
12 #include <memory>
13
14 namespace simgrid {
15 namespace kernel {
16 namespace resource {
17
18 /***********
19  * Classes *
20  ***********/
21 class XBT_PRIVATE CpuTiModel;
22 class XBT_PRIVATE CpuTi;
23 class XBT_PRIVATE CpuTiAction;
24
25 /***********
26  * Profile *
27  ***********/
28 class CpuTiProfile {
29   std::vector<double> time_points_;
30   std::vector<double> integral_;
31
32 public:
33   explicit CpuTiProfile(const profile::Profile* profile);
34
35   const std::vector<double>& get_time_points() const { return time_points_; }
36
37   double integrate_simple(double a, double b) const;
38   double integrate_simple_point(double a) const;
39   double solve_simple(double a, double amount) const;
40
41   static long binary_search(const std::vector<double>& array, double a);
42 };
43
44 class CpuTiTmgr {
45   enum class Type {
46     FIXED,  /*< Trace fixed, no availability file */
47     DYNAMIC /*< Dynamic, have an availability file */
48   };
49   Type type_ = Type::FIXED;
50   double value_; /*< Percentage of cpu speed available. Value fixed between 0 and 1 */
51
52   /* Dynamic */
53   double last_time_ = 0.0; /*< Integral interval last point (discrete time) */
54   double total_     = 0.0; /*< Integral total between 0 and last point */
55
56   std::unique_ptr<CpuTiProfile> profile_ = nullptr;
57   profile::Profile* speed_profile_       = nullptr;
58
59 public:
60   explicit CpuTiTmgr(double value) : value_(value){};
61   CpuTiTmgr(profile::Profile* speed_profile, double value);
62   CpuTiTmgr(const CpuTiTmgr&) = delete;
63   CpuTiTmgr& operator=(const CpuTiTmgr&) = delete;
64
65   double integrate(double a, double b) const;
66   double solve(double a, double amount) const;
67   double get_power_scale(double a) const;
68 };
69
70 /**********
71  * Action *
72  **********/
73
74 class XBT_PRIVATE CpuTiAction : public CpuAction {
75   friend class CpuTi;
76 public:
77   CpuTiAction(CpuTi* cpu, double cost);
78   CpuTiAction(const CpuTiAction&) = delete;
79   CpuTiAction& operator=(const CpuTiAction&) = delete;
80   ~CpuTiAction() override;
81
82   void set_state(Action::State state) override;
83   void cancel() override;
84   void suspend() override;
85   void resume() override;
86   void set_sharing_penalty(double sharing_penalty) override;
87   double get_remains() override;
88
89   CpuTi *cpu_;
90
91   boost::intrusive::list_member_hook<> action_ti_hook;
92 };
93
94 using ActionTiListOptions =
95     boost::intrusive::member_hook<CpuTiAction, boost::intrusive::list_member_hook<>, &CpuTiAction::action_ti_hook>;
96 using ActionTiList = boost::intrusive::list<CpuTiAction, ActionTiListOptions>;
97
98 /************
99  * Resource *
100  ************/
101 class CpuTi : public CpuImpl {
102 public:
103   CpuTi(s4u::Host* host, const std::vector<double>& speed_per_pstate);
104   CpuTi(const CpuTi&)            = delete;
105   CpuTi& operator&(const CpuTi&) = delete;
106   ~CpuTi() override;
107
108   CpuImpl* set_speed_profile(profile::Profile* profile) override;
109
110   void apply_event(profile::Event* event, double value) override;
111   void update_actions_finish_time(double now);
112   void update_remaining_amount(double now);
113
114   bool is_used() const override;
115   CpuAction* execution_start(double size, double user_bound) override;
116   CpuAction* execution_start(double, int, double) override
117   {
118     THROW_UNIMPLEMENTED;
119     return nullptr;
120   }
121   CpuAction* sleep(double duration) override;
122   double get_speed_ratio() override;
123
124   void set_modified(bool modified);
125
126   CpuTiTmgr* speed_integrated_trace_ = nullptr; /*< Structure with data needed to integrate trace file */
127   ActionTiList action_set_;                     /*< set with all actions running on cpu */
128   double sum_priority_ = 0;                  /*< the sum of actions' priority that are running on cpu */
129   double last_update_  = 0;                  /*< last update of actions' remaining amount done */
130
131   boost::intrusive::list_member_hook<> cpu_ti_hook;
132 };
133
134 using CpuTiListOptions =
135     boost::intrusive::member_hook<CpuTi, boost::intrusive::list_member_hook<>, &CpuTi::cpu_ti_hook>;
136 using CpuTiList = boost::intrusive::list<CpuTi, CpuTiListOptions>;
137
138 /*********
139  * Model *
140  *********/
141 class CpuTiModel : public CpuModel {
142 public:
143   static void create_pm_models(); // Make CPU PM model
144
145   using CpuModel::CpuModel;
146   CpuTiModel(const CpuTiModel&) = delete;
147   CpuTiModel& operator=(const CpuTiModel&) = delete;
148   CpuImpl* create_cpu(s4u::Host* host, const std::vector<double>& speed_per_pstate) override;
149   double next_occurring_event(double now) override;
150   void update_actions_state(double now, double delta) override;
151
152   CpuTiList modified_cpus_;
153 };
154
155 } // namespace resource
156 } // namespace kernel
157 } // namespace simgrid
158
159 #endif /* SURF_MODEL_CPUTI_HPP_ */