PAPI_hl_region_begin(3) | PAPI | PAPI_hl_region_begin(3) |
PAPI_hl_region_begin -
Read performance events at the beginning of a region.
C Interface:
Parameters:
Return values:
PAPI_hl_region_begin reads performance events and stores them internally at the beginning of an instrumented code region. If not specified via the environment variable PAPI_EVENTS, default events are used. The first call sets all counters implicitly to zero and starts counting. Note that if PAPI_EVENTS is not set or cannot be interpreted, default performance events are recorded.
Example:
export PAPI_EVENTS="PAPI_TOT_INS,PAPI_TOT_CYC"
int retval; retval = PAPI_hl_region_begin("computation"); if ( retval != PAPI_OK )
handle_error(1);
//Do some computation here retval = PAPI_hl_region_end("computation"); if ( retval != PAPI_OK )
handle_error(1);
See Also:
PAPI_hl_region_end
PAPI_hl_stop
Generated automatically by Doxygen for PAPI from the source code.
Mon Nov 14 2022 | Version 7.0.0.0 |