PAPI 7.1.0.0
Loading...
Searching...
No Matches
PAPI_flops_rate Class Reference

Simplified call to get Mflops/s (floating point operation rate), real and processor time. More...

Detailed Description

C Interface:
#include <papi.h>
int PAPI_flops_rate ( int event, float *rtime, float *ptime, long long *flpops, float *mflops );
Parameters
eventone of the three presets PAPI_FP_OPS, PAPI_SP_OPS or PAPI_DP_OPS
*rtimerealtime since the latest call
*ptimeprocess time since the latest call
*flpopsfloating point operations since the latest call
*mflopsincremental (Mega) floating point operations per seconds since the latest call
Return values
PAPI_EINVALThe counters were already started by something other than PAPI_flops_rate().
PAPI_ENOEVNTThe floating point operations event does not exist.
PAPI_ENOMEMInsufficient memory to complete the operation.

The first call to PAPI_flops_rate() will initialize the PAPI interface, set up the counters to monitor the floating point operations event and start the counters.

Subsequent calls will read the counters and return real time, process time, floating point operations and the Mflop/s rate since the latest call to PAPI_flops_rate().

PAPI_flops_rate() returns information related to theoretical floating point operations rather than simple instructions. It uses the floating point operations event which attempts to 'correctly' account for, e.g., FMA undercounts and FP Store overcounts. Note that PAPI_flops_rate() is thread-safe and can therefore be called by multiple threads.

See also
PAPI_flips_rate()
PAPI_ipc()
PAPI_epc()
PAPI_rate_stop()

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