Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics in AsCluster and friends
[simgrid.git] / src / surf / cpu_interface.hpp
1 /* Copyright (c) 2004-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <list>
8
9 #include <xbt/base.h>
10 #include <xbt/dynar.h>
11 #include <xbt/signal.hpp>
12
13 #include <simgrid/forward.h>
14 #include <simgrid/s4u/host.hpp>
15
16 #include "surf/datatypes.h"
17 #include "surf_interface.hpp"
18 #include "maxmin_private.hpp"
19 #include "trace_mgr.hpp"
20
21 #ifndef SURF_CPU_INTERFACE_HPP_
22 #define SURF_CPU_INTERFACE_HPP_
23
24 /***********
25  * Classes *
26  ***********/
27
28 namespace simgrid {
29 namespace surf {
30
31 class CpuModel;
32 class Cpu;
33 class CpuAction;
34 class CpuPlugin;// FIXME:DEADCODE
35
36  /** @ingroup SURF_cpu_interface
37  * @brief SURF cpu model interface class
38  * @details A model is an object which handle the interactions between its Resources and its Actions
39  */
40 XBT_PUBLIC_CLASS CpuModel : public Model {
41 public:
42   CpuModel() : Model() {};
43   ~CpuModel() override;
44
45   /**
46    * @brief Create a Cpu
47    *
48    * @param host The host that will have this CPU
49    * @param speedPerPstate Processor speed (in Flops) of each pstate. This ignores any potential external load coming from a trace.
50    * @param core The number of core of this Cpu
51    */
52   virtual Cpu *createCpu(simgrid::s4u::Host *host, xbt_dynar_t speedPerPstate, int core)=0;
53
54   void updateActionsStateLazy(double now, double delta) override;
55   void updateActionsStateFull(double now, double delta) override;
56   bool next_occuring_event_isIdempotent() override;
57 };
58
59 /************
60  * Resource *
61  ************/
62
63 /** @ingroup SURF_cpu_interface
64 * @brief SURF cpu resource interface class
65 * @details A Cpu represent a cpu associated to a host
66 */
67 XBT_PUBLIC_CLASS Cpu : public simgrid::surf::Resource {
68 public:
69   /**
70    * @brief Cpu constructor
71    *
72    * @param model The CpuModel associated to this Cpu
73    * @param host The host in which this Cpu should be plugged
74    * @param constraint The lmm constraint associated to this Cpu if it is part of a LMM component
75    * @param speedPerPstate Processor speed (in flop per second) for each pstate
76    * @param core The number of core of this Cpu
77    */
78   Cpu(simgrid::surf::Model *model, simgrid::s4u::Host *host, lmm_constraint_t constraint, xbt_dynar_t speedPerPstate, int core);
79
80   /**
81    * @brief Cpu constructor
82    *
83    * @param model The CpuModel associated to this Cpu
84    * @param host The host in which this Cpu should be plugged
85    * @param speedPerPstate Processor speed (in flop per second) for each pstate
86    * @param core The number of core of this Cpu
87    */
88   Cpu(simgrid::surf::Model *model, simgrid::s4u::Host *host, xbt_dynar_t speedPerPstate, int core);
89
90   ~Cpu();
91
92   /**
93    * @brief Execute some quantity of computation
94    *
95    * @param size The value of the processing amount (in flop) needed to process
96    * @return The CpuAction corresponding to the processing
97    */
98   virtual simgrid::surf::Action *execution_start(double size)=0;
99
100   /**
101    * @brief Make a process sleep for duration (in seconds)
102    *
103    * @param duration The number of seconds to sleep
104    * @return The CpuAction corresponding to the sleeping
105    */
106   virtual simgrid::surf::Action *sleep(double duration)=0;
107
108   /** @brief Get the amount of cores */
109   virtual int getCore();
110
111   /** @brief Get the speed, accounting for the trace load and provided process load instead of the real current one */
112   virtual double getSpeed(double load);
113
114 protected:
115   /** @brief Take speed changes (either load or max) into account */
116   virtual void onSpeedChange();
117
118 public:
119   /** @brief Get the available speed of the current Cpu */
120   virtual double getAvailableSpeed();
121
122   /** @brief Get the current Cpu power peak */
123   virtual double getCurrentPowerPeak();
124
125   virtual double getPowerPeakAt(int pstate_index);
126
127   virtual int getNbPStates();
128   virtual void setPState(int pstate_index);
129   virtual int  getPState();
130
131   simgrid::s4u::Host* getHost() { return host_; }
132
133 public:
134   int coresAmount_ = 1;
135   simgrid::s4u::Host* host_;
136
137   xbt_dynar_t speedPerPstate_ = NULL; /*< List of supported CPU capacities (pstate related) */
138   int pstate_ = 0;                   /*< Current pstate (index in the speedPeakList)*/
139
140   /* Note (hypervisor): */
141   lmm_constraint_t *p_constraintCore=NULL;
142   void **p_constraintCoreId=NULL;
143
144 public:
145   virtual void setStateTrace(tmgr_trace_t trace); /*< setup the trace file with states events (ON or OFF). Trace must contain boolean values (0 or 1). */
146   virtual void setSpeedTrace(tmgr_trace_t trace); /*< setup the trace file with availability events (peak speed changes due to external load). Trace must contain relative values (ratio between 0 and 1) */
147
148   tmgr_trace_iterator_t stateEvent_ = nullptr;
149   s_surf_metric_t speed_ = {1.0, 0, nullptr};
150 };
151
152 /**********
153  * Action *
154  **********/
155
156  /** @ingroup SURF_cpu_interface
157  * @brief A CpuAction represents the execution of code on one or several Cpus
158  */
159 XBT_PUBLIC_CLASS CpuAction : public simgrid::surf::Action {
160 friend XBT_PUBLIC(Cpu*) getActionCpu(CpuAction *action);
161 public:
162   /** @brief Callbacks handler which emit the callbacks after CpuAction State changed *
163    * @details Callback functions have the following signature: `void(CpuAction *action, simgrid::surf::Action::State previous)`
164    */
165   static simgrid::xbt::signal<void(simgrid::surf::CpuAction*, simgrid::surf::Action::State)> onStateChange;
166
167   CpuAction(simgrid::surf::Model *model, double cost, bool failed)
168   : Action(model, cost, failed) {} //FIXME:DEADCODE?
169   CpuAction(simgrid::surf::Model *model, double cost, bool failed, lmm_variable_t var)
170   : Action(model, cost, failed, var) {}
171
172   /** @brief Set the affinity of the current CpuAction */
173   virtual void setAffinity(Cpu *cpu, unsigned long mask);
174
175   void setState(simgrid::surf::Action::State state) override;
176
177   void updateRemainingLazy(double now) override;
178   std::list<Cpu*> cpus();
179 };
180
181 }
182 }
183
184 #endif /* SURF_CPU_INTERFACE_HPP_ */