logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

PAPI_reset - Reset the hardware event counts in an event set.

Author

       Generated automatically by Doxygen for PAPI from the source code.

Version 7.1.0.0                                  Thu Dec 14 2023                                   PAPI_reset(3)

Detailed Description

CPrototype:
           #include <papi.h>
            int PAPI_reset(intEventSet);

       ParametersEventSet an integer handle for a PAPI event set as created by PAPI_create_eventsetReturnvaluesPAPI_OKPAPI_ESYS A system or C library call failed inside PAPI, see the errno variable.
           PAPI_ENOEVST The EventSet specified does not exist.

       PAPI_reset() zeroes the values of the counters contained in EventSet. This call assumes an initialized
       PAPI library and a properly added event set

       Example:

           int EventSet = PAPI_NULL;
           int Events[] = {PAPI_TOT_INS, PAPI_FP_OPS};
           int ret;

           // Create an empty EventSet
           ret = PAPI_create_eventset(&EventSet);
           if (ret != PAPI_OK) handle_error(ret);

           // Add two events to our EventSet
           ret = PAPI_add_events(EventSet, Events, 2);
           if (ret != PAPI_OK) handle_error(ret);

           // Start counting
           ret = PAPI_start(EventSet);
           if (ret != PAPI_OK) handle_error(ret);

           // Stop counting, ignore values
           ret = PAPI_stop(EventSet, NULL);
           if (ret != PAPI_OK) handle_error(ret);

           // reset the counters in this EventSet
           ret = PAPI_reset(EventSet);
           if (ret != PAPI_OK) handle_error(ret);

       SeealsoPAPI_create_eventset

Name

       PAPI_reset - Reset the hardware event counts in an event set.

Synopsis

See Also