Go to the documentation of this file.
11 #include <initializer_list>
12 #include <type_traits>
14 #if defined(CORENEURON_CALIPER)
15 #include <caliper/cali.h>
18 #ifdef CORENEURON_CUDA_PROFILING
19 #include <cuda_profiler_api.h>
30 #if defined(LIKWID_PERFMON)
45 template <
class... TProfilerImpl>
47 #pragma clang diagnostic push
48 #pragma clang diagnostic ignored "-Wunused-value"
141 #pragma clang diagnostic pop
144 #if defined(CORENEURON_CALIPER)
148 CALI_MARK_BEGIN(name);
151 inline static void phase_end(
const char* name) {
166 #ifdef CORENEURON_CUDA_PROFILING
168 struct CudaProfiling {
169 inline static void phase_begin(
const char* name){};
171 inline static void phase_end(
const char* name){};
191 inline static void phase_begin(
const char* name){};
193 inline static void phase_end(
const char* name){};
196 PAT_record(PAT_STATE_ON);
200 PAT_record(PAT_STATE_OFF);
212 inline static void phase_begin(
const char* name){};
214 inline static void phase_end(
const char* name){};
217 TAU_ENABLE_INSTRUMENTATION();
221 TAU_DISABLE_INSTRUMENTATION();
231 #if defined(LIKWID_PERFMON)
235 LIKWID_MARKER_START(name);
238 inline static void phase_end(
const char* name) {
239 LIKWID_MARKER_STOP(name);
250 { LIKWID_MARKER_THREADINIT; }
270 #if defined CORENEURON_CALIPER
273 #ifdef CORENEURON_CUDA_PROFILING
274 detail::CudaProfiling,
282 #if defined(LIKWID_PERFMON)
288 namespace Instrumentor {
static void phase_begin(const char *name)
Activate the collection of profiling data within a code region.
static void finalize_profile()
static void phase_end(const char *name)
Deactivate the collection of profiling data within a code region.
static void init_profile()
Initialize the profiler.
static void stop_profile()
static void init_profile()
static void start_profile()
static void phase_end(const char *name)
static void start_profile()
Globally activate the collection of profiling data.
static void phase_begin(const char *name)
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
detail::Instrumentor< detail::NullInstrumentor > InstrumentorImpl
static void phase_begin(const char *name)
static void init_profile()
static void stop_profile()
Globally deactivate the collection of profiling data.
static void finalize_profile()
static void finalize_profile()
Finalize the profiler.
static void start_profile()
static void stop_profile()
Instrumentation infrastructure for benchmarking and profiling.
static void phase_end(const char *name)