PAPI_read - Online Linux Manual Page
Section : 3
Updated : September, 2004
Source : PAPI Programmer's Reference
Note : PAPI
 
NAMEPAPI_read − read hardware counters from an event set PAPI_accum − accumulate and reset counters in an event set 
SYNOPSISC Interface #include <papi.h>
int PAPI_read(int EventSet, long_long *values);
int PAPI_accum(int EventSet, long_long *values);Fortran Interface #include "fpapi.h"
PAPIF_read(C_INT EventSet, C_LONG_LONG(*) values, C_INT check)
PAPIF_accum(C_INT EventSet, C_LONG_LONG(*) values, C_INT check)
DESCRIPTIONThese calls assume an initialized PAPI library and a properly added event set. PAPI_read() copies the counters of the indicated event set into  the array values. The counters continue counting after the read. PAPI_accum() adds the counters of the indicated event set into the array values. The counters are zeroed and continue counting after the operation. Note the differences between PAPI_read() and PAPI_accum(),  specifically that PAPI_accum() resets the values array to zero. 
ARGUMENTSEventSet --  an integer handle for a PAPI Event Set as created by "PAPI_create_eventset(3) *values -- an array to hold the counter values of the counting events 
RETURN VALUESOn success, these functions return PAPI_OK." 
 On error, a non-zero error code is returned. 
ERRORSPAPI_EINVAL"   One or more of the arguments is invalid. PAPI_ESYS"   A system or C library call failed inside PAPI, see the  errno" variable. PAPI_ENOEVST"   The event set specified does not exist. 
EXAMPLES  do_100events();
  if (PAPI_read(EventSet, values) != PAPI_OK)
    handle_error(1);
  /* values[0] now equals 100 */
  do_100events();
  if (PAPI_accum(EventSet, values) != PAPI_OK)
    handle_error(1);
  /* values[0] now equals 200 */
  values[0] = -100;
  do_100events();
  if (PAPI_accum(EventSet, values) != PAPI_OK)
    handle_error(1);
  /* values[0] now equals 0 */
BUGSThese functions have no known bugs. 
SEE ALSOPAPI_set_opt(3), PAPI_reset (3)," PAPI_start(3), PAPI (3), PAPIF (3)"  0  
   Johanes Gumabo   
 Data Size    :    9,521 byte 
man-PAPI_read.3Build    :     2025-03-22, 13:26     :     
Visitor Screen    :      x   
Visitor Counter  (  page  /  site  )     :     78  /  3,974,799  
Visitor ID    :        :     
Visitor IP    :     216.73.216.52     :     
Visitor Provider    :     AMAZON-02     :     
Provider Position  (  lat  x  lon  )     :     39.962500   x   -83.006100     :      x   
Provider Accuracy Radius  (  km  )     :     20     :     
Provider City    :     Columbus     :     
Provider Province    :     Ohio  ,     :     ,  
Provider Country    :     United States     :     
Provider Continent    :     North America     :     
Visitor Recorder    :    Version    :     
Visitor Recorder    :    Library    :     
Online Linux Manual Page    :    Version    :     Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 25.03.22  
Online Linux Manual Page    :    Library    :     lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40  
Online Linux Manual Page    :    Library    :     lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40  
Data Base    :    Version    :     Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38  
Data Base    :    Library    :     lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36  
  
 
    
  If error, please print screen and send to johanes_gumabo@yahoo.co.id
 Under development. Support me via PayPal.