table of contents
PAPI_flops_rate(3) | PAPI | PAPI_flops_rate(3) |
NAME¶
PAPI_flops_rate - Simplified call to get Mflops/s (floating point operation rate), real and processor time.
SYNOPSIS¶
Detailed Description¶
C Interface:
int PAPI_flops_rate ( int event, float *rtime, float *ptime, long long *flpops, float *mflops );
Parameters
*rtime realtime since the latest call
*ptime process time since the latest call
*flpops floating point operations since the latest call
*mflops incremental (Mega) floating point operations per seconds since the latest call
Return values
PAPI_ENOEVNT The floating point operations event does not exist.
PAPI_ENOMEM Insufficient 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_ipc()
PAPI_epc()
PAPI_rate_stop()
Author¶
Generated automatically by Doxygen for PAPI from the source code.
Fri Nov 17 2023 | Version 6.0.0.0 |