Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add include for papi
[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 private:
61   Type type_;
62   double value_;                 /*< Percentage of cpu speed available. Value fixed between 0 and 1 */
63
64   /* Dynamic */
65   double last_time_ = 0.0;             /*< Integral interval last point (discrete time) */
66   double total_    = 0.0;             /*< Integral total between 0 and last_pointn */
67
68   CpuTiTrace *trace_ = nullptr;
69   tmgr_trace_t speed_trace_ = nullptr;
70 };
71
72 /**********
73  * Action *
74  **********/
75
76 class XBT_PRIVATE CpuTiAction : public CpuAction {
77   friend class CpuTi;
78 public:
79   CpuTiAction(CpuTi* cpu, double cost);
80   ~CpuTiAction();
81
82   void set_state(kernel::resource::Action::State state) override;
83   void cancel() override;
84   void suspend() override;
85   void resume() override;
86   void set_max_duration(double duration) override;
87   void set_priority(double priority) override;
88   double get_remains() override;
89
90   CpuTi *cpu_;
91
92   boost::intrusive::list_member_hook<> action_ti_hook;
93 };
94
95 typedef boost::intrusive::member_hook<CpuTiAction, boost::intrusive::list_member_hook<>, &CpuTiAction::action_ti_hook> ActionTiListOptions;
96 typedef boost::intrusive::list<CpuTiAction, ActionTiListOptions > ActionTiList;
97
98 /************
99  * Resource *
100  ************/
101 class CpuTi : public Cpu {
102 public:
103   CpuTi(CpuTiModel* model, simgrid::s4u::Host* host, std::vector<double>* speed_per_pstate, int core);
104   ~CpuTi() override;
105
106   void set_speed_trace(tmgr_trace_t trace) override;
107
108   void apply_event(tmgr_trace_event_t event, double value) override;
109   void update_actions_finish_time(double now);
110   void update_remaining_amount(double now);
111
112   bool is_used() override;
113   CpuAction *execution_start(double size) override;
114   simgrid::kernel::resource::Action* execution_start(double size, int requested_cores) override
115   {
116     THROW_UNIMPLEMENTED;
117     return nullptr;
118   }
119   CpuAction *sleep(double duration) override;
120   double get_speed_ratio() override;
121
122   void set_modified(bool modified);
123
124   CpuTiTmgr* speed_integrated_trace_ = nullptr; /*< Structure with data needed to integrate trace file */
125   ActionTiList action_set_;                     /*< set with all actions running on cpu */
126   double sum_priority_ = 0;                  /*< the sum of actions' priority that are running on cpu */
127   double last_update_  = 0;                  /*< last update of actions' remaining amount done */
128
129   boost::intrusive::list_member_hook<> cpu_ti_hook;
130 };
131
132 typedef boost::intrusive::member_hook<CpuTi, boost::intrusive::list_member_hook<>, &CpuTi::cpu_ti_hook> CpuTiListOptions;
133 typedef boost::intrusive::list<CpuTi, CpuTiListOptions> CpuTiList;
134
135 /*********
136  * Model *
137  *********/
138 class CpuTiModel : public CpuModel {
139 public:
140   static void create_pm_vm_models(); // Make both models be TI models
141
142   CpuTiModel();
143   ~CpuTiModel() override;
144   Cpu* create_cpu(simgrid::s4u::Host* host, std::vector<double>* speed_per_pstate, int core) override;
145   double next_occuring_event(double now) override;
146   void update_actions_state(double now, double delta) override;
147
148   CpuTiList modified_cpus_;
149 };
150
151 }
152 }
153
154 #endif /* SURF_MODEL_CPUTI_H_ */