CoreNEURON
profiler_interface.h
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================
7 */
8 
9 #pragma once
10 
11 #include <initializer_list>
12 #include <type_traits>
13 
14 #if defined(CORENEURON_CALIPER)
15 #include <caliper/cali.h>
16 #endif
17 
18 #ifdef CORENEURON_CUDA_PROFILING
19 #include <cuda_profiler_api.h>
20 #endif
21 
22 #if defined(CRAYPAT)
23 #include <pat_api.h>
24 #endif
25 
26 #if defined(TAU)
27 #include <TAU.h>
28 #endif
29 
30 #if defined(LIKWID_PERFMON)
31 #include <likwid.h>
32 #endif
33 
34 namespace coreneuron {
35 
36 namespace detail {
37 
38 /*! \class Instrumentor
39  * \brief Instrumentation infrastructure for benchmarking and profiling.
40  *
41  * The Instrumentor class exposes static methods that can be used to
42  * toggle with fine-grained resolution the profiling of specific
43  * areas within the code.
44  */
45 template <class... TProfilerImpl>
46 struct Instrumentor {
47 #pragma clang diagnostic push
48 #pragma clang diagnostic ignored "-Wunused-value"
49  /*! \fn phase_begin
50  * \brief Activate the collection of profiling data within a code region.
51  *
52  * This function semantically defines the beginning of a region
53  * of code that the user wishes to profile.
54  * Loops through all enabled profilers and calls the relevant
55  * `phase_begin` function.
56  * This function should have a non-empty implementation only for
57  * profilers that allow multiple code regions with different names
58  * to be profiled concurrently.
59  *
60  * @param name the (unique) identifier of the code region to be profiled
61  */
62  inline static void phase_begin(const char* name) {
63  std::initializer_list<int>{(TProfilerImpl::phase_begin(name), 0)...};
64  }
65 
66  /*! \fn phase_end
67  * \brief Deactivate the collection of profiling data within a code region.
68  *
69  * This function semantically defines the end of a region
70  * of code that the user wishes to profile.
71  * Loops through all enabled profilers and calls the relevant
72  * `phase_end` function.
73  * This function should have a non-empty implementation only for
74  * profilers that allow multiple code regions with different names
75  * to be profiled concurrently.
76  *
77  * @param name the (unique) identifier of the code region to be profiled
78  */
79  inline static void phase_end(const char* name) {
80  std::initializer_list<int>{(TProfilerImpl::phase_end(name), 0)...};
81  }
82 
83  /*! \fn start_profile
84  * \brief Globally activate the collection of profiling data.
85  *
86  * Activate the collection of profiler data without defining
87  * a region of interest with a given name, as opposed to `phase_begin`.
88  * Loops through all enabled profilers and calls the relevant
89  * `start_profile` function.
90  * This function should have a non-empty implementation only for
91  * profilers that expose simply a global begin/end interface, without
92  * named regions.
93  */
94  inline static void start_profile() {
95  std::initializer_list<int>{(TProfilerImpl::start_profile(), 0)...};
96  }
97 
98  /*! \fn stop_profile
99  * \brief Globally deactivate the collection of profiling data.
100  *
101  * Deactivate the collection of profiler data without defining
102  * a region of interest with a given name, as opposed to `phase_end`.
103  * Loops through all enabled profilers and calls the relevant
104  * `stop_profile` function.
105  * This function should have a non-empty implementation only for
106  * profilers that expose simply a global begin/end interface, without
107  * named regions.
108  */
109  inline static void stop_profile() {
110  std::initializer_list<int>{(TProfilerImpl::stop_profile(), 0)...};
111  }
112 
113  /*! \fn init_profile
114  * \brief Initialize the profiler.
115  *
116  * Initialize a profiler's internal structure, without activating yet
117  * any data collection, similar in concept to MPI_Init.
118  * Loops through all enabled profilers and calls the relevant
119  * `init_profile` function.
120  * This function should have a non-empty implementation only for
121  * profilers that require special initialization, typically before
122  * any memory allocation is done.
123  */
124  inline static void init_profile() {
125  std::initializer_list<int>{(TProfilerImpl::init_profile(), 0)...};
126  }
127 
128  /*! \fn finalize_profile
129  * \brief Finalize the profiler.
130  *
131  * Finalize a profiler's internal structure, without activating yet
132  * any data collection, similar in concept to MPI_Finalize.
133  * Loops through all enabled profilers and calls the relevant
134  * `finalize_profile` function.
135  * This function should have a non-empty implementation only for
136  * profilers that require special finalization.
137  */
138  inline static void finalize_profile() {
139  std::initializer_list<int>{(TProfilerImpl::finalize_profile(), 0)...};
140  }
141 #pragma clang diagnostic pop
142 };
143 
144 #if defined(CORENEURON_CALIPER)
145 
146 struct Caliper {
147  inline static void phase_begin(const char* name) {
148  CALI_MARK_BEGIN(name);
149  };
150 
151  inline static void phase_end(const char* name) {
152  CALI_MARK_END(name);
153  };
154 
155  inline static void start_profile(){};
156 
157  inline static void stop_profile(){};
158 
159  inline static void init_profile(){};
160 
161  inline static void finalize_profile(){};
162 };
163 
164 #endif
165 
166 #ifdef CORENEURON_CUDA_PROFILING
167 
168 struct CudaProfiling {
169  inline static void phase_begin(const char* name){};
170 
171  inline static void phase_end(const char* name){};
172 
173  inline static void start_profile() {
174  cudaProfilerStart();
175  };
176 
177  inline static void stop_profile() {
178  cudaProfilerStop();
179  };
180 
181  inline static void init_profile(){};
182 
183  inline static void finalize_profile(){};
184 };
185 
186 #endif
187 
188 #if defined(CRAYPAT)
189 
190 struct CrayPat {
191  inline static void phase_begin(const char* name){};
192 
193  inline static void phase_end(const char* name){};
194 
195  inline static void start_profile() {
196  PAT_record(PAT_STATE_ON);
197  };
198 
199  inline static void stop_profile() {
200  PAT_record(PAT_STATE_OFF);
201  };
202 
203  inline static void init_profile(){};
204 
205  inline static void finalize_profile(){};
206 };
207 #endif
208 
209 #if defined(TAU)
210 
211 struct Tau {
212  inline static void phase_begin(const char* name){};
213 
214  inline static void phase_end(const char* name){};
215 
216  inline static void start_profile() {
217  TAU_ENABLE_INSTRUMENTATION();
218  };
219 
220  inline static void stop_profile() {
221  TAU_DISABLE_INSTRUMENTATION();
222  };
223 
224  inline static void init_profile(){};
225 
226  inline static void finalize_profile(){};
227 };
228 
229 #endif
230 
231 #if defined(LIKWID_PERFMON)
232 
233 struct Likwid {
234  inline static void phase_begin(const char* name) {
235  LIKWID_MARKER_START(name);
236  };
237 
238  inline static void phase_end(const char* name) {
239  LIKWID_MARKER_STOP(name);
240  };
241 
242  inline static void start_profile(){};
243 
244  inline static void stop_profile(){};
245 
246  inline static void init_profile() {
247  LIKWID_MARKER_INIT;
248 
249 #pragma omp parallel
250  { LIKWID_MARKER_THREADINIT; }
251  };
252 
253  inline static void finalize_profile() {
254  LIKWID_MARKER_CLOSE;
255  };
256 };
257 
258 #endif
259 
261  inline static void phase_begin(const char* name){};
262  inline static void phase_end(const char* name){};
263  inline static void start_profile(){};
264  inline static void stop_profile(){};
265  inline static void init_profile(){};
266  inline static void finalize_profile(){};
267 };
268 
270 #if defined CORENEURON_CALIPER
271  detail::Caliper,
272 #endif
273 #ifdef CORENEURON_CUDA_PROFILING
274  detail::CudaProfiling,
275 #endif
276 #if defined(CRAYPAT)
277  detail::CrayPat,
278 #endif
279 #if defined(TAU)
280  detail::Tau,
281 #endif
282 #if defined(LIKWID_PERFMON)
283  detail::Likwid,
284 #endif
286 } // namespace detail
287 
288 namespace Instrumentor {
289 struct phase {
290  const char* phase_name;
291  phase(const char* name)
292  : phase_name(name) {
294  }
295  ~phase() {
297  }
298 };
299 
300 inline static void start_profile() {
302 }
303 
304 inline static void stop_profile() {
306 }
307 
308 inline static void phase_begin(const char* name) {
310 }
311 
312 inline static void phase_end(const char* name) {
314 }
315 
316 inline static void init_profile() {
318 }
319 
320 inline static void finalize_profile() {
322 }
323 } // namespace Instrumentor
324 
325 } // namespace coreneuron
coreneuron::detail::Instrumentor::phase_begin
static void phase_begin(const char *name)
Activate the collection of profiling data within a code region.
Definition: profiler_interface.h:62
coreneuron::detail::NullInstrumentor::finalize_profile
static void finalize_profile()
Definition: profiler_interface.h:266
coreneuron::detail::Instrumentor::phase_end
static void phase_end(const char *name)
Deactivate the collection of profiling data within a code region.
Definition: profiler_interface.h:79
coreneuron::detail::Instrumentor::init_profile
static void init_profile()
Initialize the profiler.
Definition: profiler_interface.h:124
coreneuron::Instrumentor::stop_profile
static void stop_profile()
Definition: profiler_interface.h:304
coreneuron::detail::NullInstrumentor::init_profile
static void init_profile()
Definition: profiler_interface.h:265
coreneuron::Instrumentor::phase::phase
phase(const char *name)
Definition: profiler_interface.h:291
coreneuron::Instrumentor::start_profile
static void start_profile()
Definition: profiler_interface.h:300
coreneuron::detail::NullInstrumentor::phase_end
static void phase_end(const char *name)
Definition: profiler_interface.h:262
coreneuron::detail::Instrumentor::start_profile
static void start_profile()
Globally activate the collection of profiling data.
Definition: profiler_interface.h:94
coreneuron::Instrumentor::phase_begin
static void phase_begin(const char *name)
Definition: profiler_interface.h:308
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::detail::InstrumentorImpl
detail::Instrumentor< detail::NullInstrumentor > InstrumentorImpl
Definition: profiler_interface.h:285
coreneuron::Instrumentor::phase
Definition: profiler_interface.h:289
coreneuron::detail::NullInstrumentor::phase_begin
static void phase_begin(const char *name)
Definition: profiler_interface.h:261
coreneuron::Instrumentor::init_profile
static void init_profile()
Definition: profiler_interface.h:316
coreneuron::detail::Instrumentor::stop_profile
static void stop_profile()
Globally deactivate the collection of profiling data.
Definition: profiler_interface.h:109
coreneuron::Instrumentor::finalize_profile
static void finalize_profile()
Definition: profiler_interface.h:320
coreneuron::Instrumentor::phase::~phase
~phase()
Definition: profiler_interface.h:295
coreneuron::detail::NullInstrumentor
Definition: profiler_interface.h:260
coreneuron::Instrumentor::phase::phase_name
const char * phase_name
Definition: profiler_interface.h:290
coreneuron::detail::Instrumentor::finalize_profile
static void finalize_profile()
Finalize the profiler.
Definition: profiler_interface.h:138
coreneuron::detail::NullInstrumentor::start_profile
static void start_profile()
Definition: profiler_interface.h:263
coreneuron::detail::NullInstrumentor::stop_profile
static void stop_profile()
Definition: profiler_interface.h:264
coreneuron::detail::Instrumentor
Instrumentation infrastructure for benchmarking and profiling.
Definition: profiler_interface.h:46
coreneuron::Instrumentor::phase_end
static void phase_end(const char *name)
Definition: profiler_interface.h:312