Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
15fb2ad0231625e15603afe77e0f0c2dedb0211f
[simgrid.git] / src / surf / host_ptask_L07.hpp
1 /* Copyright (c) 2013-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 <cstdlib>
8
9 #include <vector>
10
11 #include <xbt/base.h>
12
13 #include "host_interface.hpp"
14
15 #ifndef HOST_L07_HPP_
16 #define HOST_L07_HPP_
17
18 namespace simgrid {
19 namespace surf {
20
21 /***********
22  * Classes *
23  ***********/
24
25 class XBT_PRIVATE HostL07Model;
26 class XBT_PRIVATE CpuL07Model;
27 class XBT_PRIVATE NetworkL07Model;
28
29 class XBT_PRIVATE HostL07;
30 class XBT_PRIVATE CpuL07;
31 class XBT_PRIVATE LinkL07;
32
33 class XBT_PRIVATE L07Action;
34 /*********
35  * Tools *
36  *********/
37
38 /*********
39  * Model *
40  *********/
41 class HostL07Model : public HostModel {
42 public:
43   HostL07Model();
44   ~HostL07Model();
45
46   double shareResources(double now) override;
47   void updateActionsState(double now, double delta);
48   Host *createHost(const char *name,RoutingEdge *netElm, Cpu *cpu, xbt_dict_t props) override;
49   Action *executeParallelTask(int host_nb,
50                               sg_host_t *host_list,
51                                                           double *flops_amount,
52                                                           double *bytes_amount,
53                                                           double rate) override;
54   void addTraces() override;
55 };
56
57 class CpuL07Model : public CpuModel {
58 public:
59   CpuL07Model(HostL07Model *hmodel) : CpuModel() {p_hostModel = hmodel;};
60   ~CpuL07Model() {surf_cpu_model_pm = NULL;};
61
62   Cpu *createCpu(const char *name,  xbt_dynar_t speedPeak,
63                           int pstate, double speedScale,
64                           tmgr_trace_t speedTrace, int core,
65                           e_surf_resource_state_t state_initial,
66                           tmgr_trace_t state_trace) override;
67   void addTraces() override {DIE_IMPOSSIBLE;};
68
69   HostL07Model *p_hostModel;
70 };
71
72 class NetworkL07Model : public NetworkModel {
73 public:
74   NetworkL07Model(HostL07Model *hmodel) : NetworkModel() {p_hostModel = hmodel;};
75   ~NetworkL07Model() {surf_network_model = NULL;};
76   Link* createLink(const char *name,
77                   double bw_initial,
78                   tmgr_trace_t bw_trace,
79                   double lat_initial,
80                   tmgr_trace_t lat_trace,
81                   e_surf_resource_state_t state_initial,
82                   tmgr_trace_t state_trace,
83                   e_surf_link_sharing_policy_t policy,
84                   xbt_dict_t properties) override;
85
86   Action *communicate(RoutingEdge *src, RoutingEdge *dst, double size, double rate) override;
87   void addTraces() override {DIE_IMPOSSIBLE;};
88   bool shareResourcesIsIdempotent() override {return true;}
89
90   HostL07Model *p_hostModel;
91 };
92
93 /************
94  * Resource *
95  ************/
96
97 class CpuL07 : public Cpu {
98   friend void HostL07Model::addTraces();
99   tmgr_trace_event_t p_stateEvent;
100   tmgr_trace_event_t p_speedEvent;
101 public:
102   CpuL07(CpuL07Model *model, const char* name,
103                  double power_scale, double power_initial, tmgr_trace_t power_trace,
104      int core, e_surf_resource_state_t state_initial, tmgr_trace_t state_trace);
105   ~CpuL07();
106   bool isUsed() override;
107   void updateState(tmgr_trace_event_t event_type, double value, double date) override;
108   Action *execute(double size) override;
109   Action *sleep(double duration) override;
110
111   double getCurrentPowerPeak() override {THROW_UNIMPLEMENTED;};
112   double getPowerPeakAt(int /*pstate_index*/) override {THROW_UNIMPLEMENTED;};
113   int getNbPstates() override {THROW_UNIMPLEMENTED;};
114   void setPstate(int /*pstate_index*/) override {THROW_UNIMPLEMENTED;};
115   int  getPstate() override {THROW_UNIMPLEMENTED;};
116 };
117
118 class LinkL07 : public Link {
119 public:
120   LinkL07(NetworkL07Model *model, const char* name, xbt_dict_t props,
121                   double bw_initial,
122           tmgr_trace_t bw_trace,
123           double lat_initial,
124           tmgr_trace_t lat_trace,
125           e_surf_resource_state_t
126           state_initial,
127           tmgr_trace_t state_trace,
128           e_surf_link_sharing_policy_t policy);
129   ~LinkL07(){ };
130   bool isUsed() override;
131   void updateState(tmgr_trace_event_t event_type, double value, double date) override;
132   double getBandwidth() override;
133   void updateBandwidth(double value, double date=surf_get_clock()) override;
134   void updateLatency(double value, double date=surf_get_clock()) override;
135
136   double m_bwCurrent;
137   tmgr_trace_event_t p_bwEvent;
138 };
139
140 /**********
141  * Action *
142  **********/
143 class L07Action : public HostAction {
144   friend Action *CpuL07::execute(double size);
145   friend Action *CpuL07::sleep(double duration);
146   friend Action *HostL07Model::executeParallelTask(int host_nb,
147                                                    sg_host_t*host_list,
148                                                    double *flops_amount,
149                                                                                                    double *bytes_amount,
150                                                    double rate);
151 public:
152   L07Action(Model *model, double cost, bool failed)
153   : HostAction(model, cost, failed) {};
154  ~L07Action();
155
156   void updateBound();
157
158   int unref() override;
159   void cancel() override;
160   void suspend() override;
161   void resume() override;
162   bool isSuspended() override;
163   void setMaxDuration(double duration) override;
164   void setPriority(double priority) override;
165   double getRemains() override;
166
167   std::vector<RoutingEdge*> * p_edgeList = new std::vector<RoutingEdge*>();
168   double *p_computationAmount;
169   double *p_communicationAmount;
170   double m_latency;
171   double m_rate;
172 };
173
174 }
175 }
176
177 #endif /* HOST_L07_HPP_ */