CoreNEURON
coreneuron::detail::Instrumentor< TProfilerImpl > Class Template Reference

Instrumentation infrastructure for benchmarking and profiling. More...

Detailed Description

template<class... TProfilerImpl>
class coreneuron::detail::Instrumentor< TProfilerImpl >

Instrumentation infrastructure for benchmarking and profiling.

The Instrumentor class exposes static methods that can be used to toggle with fine-grained resolution the profiling of specific areas within the code.

Definition at line 46 of file profiler_interface.h.

#include <profiler_interface.h>

Static Public Member Functions

static void phase_begin (const char *name)
 Activate the collection of profiling data within a code region. More...
 
static void phase_end (const char *name)
 Deactivate the collection of profiling data within a code region. More...
 
static void start_profile ()
 Globally activate the collection of profiling data. More...
 
static void stop_profile ()
 Globally deactivate the collection of profiling data. More...
 
static void init_profile ()
 Initialize the profiler. More...
 
static void finalize_profile ()
 Finalize the profiler. More...
 

Member Function Documentation

◆ finalize_profile()

template<class... TProfilerImpl>
coreneuron::detail::Instrumentor< TProfilerImpl >::finalize_profile ( )
inlinestatic

Finalize the profiler.

Finalize a profiler's internal structure, without activating yet any data collection, similar in concept to MPI_Finalize. Loops through all enabled profilers and calls the relevant finalize_profile function. This function should have a non-empty implementation only for profilers that require special finalization.

Definition at line 138 of file profiler_interface.h.

◆ init_profile()

template<class... TProfilerImpl>
coreneuron::detail::Instrumentor< TProfilerImpl >::init_profile ( )
inlinestatic

Initialize the profiler.

Initialize a profiler's internal structure, without activating yet any data collection, similar in concept to MPI_Init. Loops through all enabled profilers and calls the relevant init_profile function. This function should have a non-empty implementation only for profilers that require special initialization, typically before any memory allocation is done.

Definition at line 124 of file profiler_interface.h.

◆ phase_begin()

template<class... TProfilerImpl>
coreneuron::detail::Instrumentor< TProfilerImpl >::phase_begin ( const char *  name)
inlinestatic

Activate the collection of profiling data within a code region.

This function semantically defines the beginning of a region of code that the user wishes to profile. Loops through all enabled profilers and calls the relevant phase_begin function. This function should have a non-empty implementation only for profilers that allow multiple code regions with different names to be profiled concurrently.

Parameters
namethe (unique) identifier of the code region to be profiled

Definition at line 62 of file profiler_interface.h.

◆ phase_end()

template<class... TProfilerImpl>
coreneuron::detail::Instrumentor< TProfilerImpl >::phase_end ( const char *  name)
inlinestatic

Deactivate the collection of profiling data within a code region.

This function semantically defines the end of a region of code that the user wishes to profile. Loops through all enabled profilers and calls the relevant phase_end function. This function should have a non-empty implementation only for profilers that allow multiple code regions with different names to be profiled concurrently.

Parameters
namethe (unique) identifier of the code region to be profiled

Definition at line 79 of file profiler_interface.h.

◆ start_profile()

template<class... TProfilerImpl>
coreneuron::detail::Instrumentor< TProfilerImpl >::start_profile ( )
inlinestatic

Globally activate the collection of profiling data.

Activate the collection of profiler data without defining a region of interest with a given name, as opposed to phase_begin. Loops through all enabled profilers and calls the relevant start_profile function. This function should have a non-empty implementation only for profilers that expose simply a global begin/end interface, without named regions.

Definition at line 94 of file profiler_interface.h.

◆ stop_profile()

template<class... TProfilerImpl>
coreneuron::detail::Instrumentor< TProfilerImpl >::stop_profile ( )
inlinestatic

Globally deactivate the collection of profiling data.

Deactivate the collection of profiler data without defining a region of interest with a given name, as opposed to phase_end. Loops through all enabled profilers and calls the relevant stop_profile function. This function should have a non-empty implementation only for profilers that expose simply a global begin/end interface, without named regions.

Definition at line 109 of file profiler_interface.h.


The documentation for this class was generated from the following file: