Logo AND Algorithmique Numérique Distribuée

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