Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
refactor TRACE_start and TRACE_end
[simgrid.git] / src / instr / instr_private.hpp
1 /* Copyright (c) 2010-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 INSTR_PRIVATE_HPP
7 #define INSTR_PRIVATE_HPP
8
9 #include <xbt/base.h>
10
11 #include "simgrid/instr.h"
12 #include "simgrid/s4u/Actor.hpp"
13 #include "simgrid_config.h"
14 #include "src/instr/instr_paje_containers.hpp"
15 #include "src/instr/instr_paje_events.hpp"
16 #include "src/instr/instr_paje_types.hpp"
17 #include "src/instr/instr_paje_values.hpp"
18 #include "src/internal_config.h"
19 #include "xbt/graph.h"
20
21 #include <iomanip> /** std::setprecision **/
22 #include <map>
23 #include <memory>
24 #include <set>
25 #include <sstream>
26 #include <string>
27 #include <sys/stat.h>
28 #ifdef WIN32
29 #include <direct.h> // _mkdir
30 /* Need to define function drand48 for Windows */
31 #define drand48() (rand() / (RAND_MAX + 1.0))
32 #endif
33
34 typedef simgrid::instr::Container* container_t;
35
36 namespace simgrid {
37 namespace instr {
38
39 /* Format of TRACING output.
40  *   - paje is the regular format, that we all know
41  *   - TI is a trick to reuse the tracing functions to generate a time independent trace during the execution. Such
42  *     trace can easily be replayed with smpi_replay afterward. This trick should be removed and replaced by some code
43  *     using the signal that we will create to cleanup the TRACING
44  */
45 enum class TraceFormat { Paje, /*TimeIndependent*/ Ti };
46 extern TraceFormat trace_format;
47
48 class TIData {
49   std::string name_;
50   double amount_ = 0;
51
52 public:
53   int endpoint                 = 0;
54   int send_size                = 0;
55   std::shared_ptr<std::vector<int>> sendcounts = nullptr;
56   int recv_size                = 0;
57   std::shared_ptr<std::vector<int>> recvcounts = nullptr;
58   std::string send_type        = "";
59   std::string recv_type        = "";
60
61   // NoOpTI: init, finalize, test, wait, barrier
62   explicit TIData(std::string name) : name_(name){};
63   // CPuTI: compute, sleep (+ waitAny and waitAll out of laziness)
64   explicit TIData(std::string name, double amount) : name_(name), amount_(amount){};
65   // Pt2PtTI: send, isend, sssend, issend, recv, irecv
66   explicit TIData(std::string name, int endpoint, int size, std::string datatype)
67       : name_(name), endpoint(endpoint), send_size(size), send_type(datatype){};
68   // CollTI: bcast, reduce, allReduce, gather, scatter, allGather, allToAll
69   explicit TIData(std::string name, int root, double amount, int send_size, int recv_size, std::string send_type,
70                   std::string recv_type)
71       : name_(name)
72       , amount_(amount)
73       , endpoint(root)
74       , send_size(send_size)
75       , recv_size(recv_size)
76       , send_type(send_type)
77       , recv_type(recv_type){};
78   // VarCollTI: gatherV, scatterV, allGatherV, allToAllV (+ reduceScatter out of laziness)
79   explicit TIData(std::string name, int root, int send_size, std::vector<int>* sendcounts, int recv_size,
80                   std::vector<int>* recvcounts, std::string send_type, std::string recv_type)
81       : TIData(name, root, send_size, std::shared_ptr<std::vector<int>>(sendcounts), recv_size,
82                std::shared_ptr<std::vector<int>>(recvcounts), send_type, recv_type){};
83
84   explicit TIData(std::string name, int root, int send_size, std::shared_ptr<std::vector<int>> sendcounts,
85                   int recv_size, std::shared_ptr<std::vector<int>> recvcounts, std::string send_type,
86                   std::string recv_type)
87       : name_(name)
88       , endpoint(root)
89       , send_size(send_size)
90       , sendcounts(sendcounts)
91       , recv_size(recv_size)
92       , recvcounts(recvcounts)
93       , send_type(send_type)
94       , recv_type(recv_type){};
95
96   virtual ~TIData() {}
97
98   std::string getName() { return name_; }
99   double getAmount() { return amount_; }
100   virtual std::string print()        = 0;
101   virtual std::string display_size() = 0;
102 };
103
104 class NoOpTIData : public TIData {
105 public:
106   explicit NoOpTIData(std::string name) : TIData(name){};
107   std::string print() override { return getName(); }
108   std::string display_size() override { return ""; }
109 };
110
111 class CpuTIData : public TIData {
112 public:
113   explicit CpuTIData(std::string name, double amount) : TIData(name, amount){};
114   std::string print() override
115   {
116     std::stringstream stream;
117     stream << getName() << " " << getAmount();
118     return stream.str();
119   }
120   std::string display_size() override { return std::to_string(getAmount()); }
121 };
122
123 class Pt2PtTIData : public TIData {
124   int tag;
125 public:
126   explicit Pt2PtTIData(std::string name, int endpoint, int size, int tag, std::string datatype)
127       : TIData(name, endpoint, size, datatype), tag(tag) {};
128
129   explicit Pt2PtTIData(std::string name, int endpoint, int size, std::string datatype)
130       : TIData(name, endpoint, size, datatype), tag(0) {};
131   std::string print() override
132   {
133     std::stringstream stream;
134     stream << getName() << " ";
135     if (endpoint >= 0)
136       stream << endpoint << " ";
137     stream << tag << " " << send_size << " " << send_type;
138     return stream.str();
139   }
140   std::string display_size() override { return std::to_string(send_size); }
141 };
142
143 class CollTIData : public TIData {
144 public:
145   explicit CollTIData(std::string name, int root, double amount, int send_size, int recv_size, std::string send_type,
146                       std::string recv_type)
147       : TIData(name, root, amount, send_size, recv_size, send_type, recv_type){};
148   std::string print() override
149   {
150     std::stringstream stream;
151     stream << getName() << " " << send_size << " ";
152     if (recv_size >= 0)
153       stream << recv_size << " ";
154     if (getAmount() >= 0.0)
155       stream << getAmount() << " ";
156     if (endpoint > 0 || (endpoint == 0 && not send_type.empty()))
157       stream << endpoint << " ";
158     stream << send_type << " " << recv_type;
159
160     return stream.str();
161   }
162   std::string display_size() override { return std::to_string(send_size); }
163 };
164
165 class VarCollTIData : public TIData {
166 public:
167   explicit VarCollTIData(std::string name, int root, int send_size, std::vector<int>* sendcounts, int recv_size,
168                          std::vector<int>* recvcounts, std::string send_type, std::string recv_type)
169       : TIData(name, root, send_size, sendcounts, recv_size, recvcounts, send_type, recv_type){};
170
171   explicit VarCollTIData(std::string name, int root, int send_size, std::shared_ptr<std::vector<int>> sendcounts,
172                          int recv_size, std::shared_ptr<std::vector<int>> recvcounts, std::string send_type,
173                          std::string recv_type)
174       : TIData(name, root, send_size, sendcounts, recv_size, recvcounts, send_type, recv_type){};
175
176   std::string print() override
177   {
178     std::stringstream stream;
179     stream << getName() << " ";
180     if (send_size >= 0)
181       stream << send_size << " ";
182     if (sendcounts != nullptr)
183       for (auto count : *sendcounts)
184         stream << count << " ";
185     if (recv_size >= 0)
186       stream << recv_size << " ";
187     if (recvcounts != nullptr)
188       for (auto count : *recvcounts)
189         stream << count << " ";
190     if (endpoint > 0 || (endpoint == 0 && not send_type.empty()))
191       stream << endpoint << " ";
192     stream << send_type << " " << recv_type;
193
194     return stream.str();
195   }
196   std::string display_size() override { return std::to_string(send_size > 0 ? send_size : recv_size); }
197 };
198 }
199 }
200
201 XBT_PRIVATE std::string instr_pid(s4u_Actor* proc);
202
203 extern XBT_PRIVATE std::set<std::string> created_categories;
204 extern XBT_PRIVATE std::set<std::string> declared_marks;
205 extern XBT_PRIVATE std::set<std::string> user_host_variables;
206 extern XBT_PRIVATE std::set<std::string> user_vm_variables;
207 extern XBT_PRIVATE std::set<std::string> user_link_variables;
208 extern XBT_PRIVATE double TRACE_last_timestamp_to_dump;
209
210 /* instr_paje_header.c */
211 XBT_PRIVATE void TRACE_header(bool basic, int size);
212
213 /* from instr_config.c */
214 XBT_PRIVATE bool TRACE_needs_platform();
215 XBT_PRIVATE bool TRACE_is_enabled();
216 XBT_PRIVATE bool TRACE_platform();
217 XBT_PRIVATE bool TRACE_platform_topology();
218 XBT_PRIVATE bool TRACE_categorized();
219 XBT_PRIVATE bool TRACE_uncategorized();
220 XBT_PRIVATE bool TRACE_actor_is_enabled();
221 XBT_PRIVATE bool TRACE_vm_is_enabled();
222 XBT_PRIVATE bool TRACE_buffer();
223 XBT_PRIVATE bool TRACE_disable_link();
224 XBT_PRIVATE bool TRACE_disable_speed();
225 XBT_PRIVATE bool TRACE_disable_destroy();
226 XBT_PRIVATE bool TRACE_basic();
227 XBT_PRIVATE bool TRACE_display_sizes();
228 XBT_PRIVATE int TRACE_precision();
229
230 /* Public functions used in SMPI */
231 XBT_PUBLIC bool TRACE_smpi_is_enabled();
232 XBT_PUBLIC bool TRACE_smpi_is_grouped();
233 XBT_PUBLIC bool TRACE_smpi_is_computing();
234 XBT_PUBLIC bool TRACE_smpi_is_sleeping();
235 XBT_PUBLIC bool TRACE_smpi_view_internals();
236
237 /* from resource_utilization.c */
238 XBT_PRIVATE void TRACE_surf_host_set_utilization(const char* resource, const char* category, double value, double now,
239                                                  double delta);
240 XBT_PRIVATE void TRACE_surf_link_set_utilization(const char* resource, const char* category, double value, double now,
241                                                  double delta);
242
243 /* instr_paje.c */
244 extern XBT_PRIVATE std::set<std::string> trivaNodeTypes;
245 extern XBT_PRIVATE std::set<std::string> trivaEdgeTypes;
246 XBT_PRIVATE long long int instr_new_paje_id();
247 XBT_PRIVATE void instr_define_callbacks();
248 void instr_new_variable_type(std::string new_typename, std::string color);
249 void instr_new_user_variable_type(std::string father_type, std::string new_typename, std::string color);
250 void instr_new_user_state_type(std::string father_type, std::string new_typename);
251 void instr_new_value_for_user_state_type(std::string new_typename, const char* value, std::string color);
252
253 XBT_PRIVATE void TRACE_global_init();
254 XBT_PRIVATE void TRACE_help(int detailed);
255
256 XBT_PRIVATE void TRACE_paje_dump_buffer(bool force);
257 XBT_PRIVATE void dump_comment_file(std::string filename);
258 XBT_PRIVATE void dump_comment(std::string comment);
259
260 XBT_PRIVATE std::string TRACE_get_comment();
261 XBT_PRIVATE std::string TRACE_get_comment_file();
262 XBT_PRIVATE std::string TRACE_get_filename();
263
264 #endif