|
PAPI
5.0.1.0
|

Go to the source code of this file.
Defines | |
| #define | ERROR_RETURN(retval) { fprintf(stderr, "Error %d %s:line %d: \n", retval,__FILE__,__LINE__); exit(retval); } |
Functions | |
| int | poorly_tuned_function () |
| int | main () |
| #define ERROR_RETURN | ( | retval | ) | { fprintf(stderr, "Error %d %s:line %d: \n", retval,__FILE__,__LINE__); exit(retval); } |
Definition at line 12 of file PAPI_get_opt.c.
| int main | ( | ) |
Definition at line 26 of file PAPI_get_opt.c.
{
int num, retval, EventSet = PAPI_NULL;
PAPI_option_t options;
long long values[2];
/****************************************************************************
* This part initializes the library and compares the version number of the *
* header file, to the version of the library, if these don't match then it *
* is likely that PAPI won't work correctly.If there is an error, retval *
* keeps track of the version number. *
****************************************************************************/
if((retval = PAPI_library_init(PAPI_VER_CURRENT)) != PAPI_VER_CURRENT )
{
printf("Library initialization error! \n");
exit(1);
}
/*PAPI_get_opt returns a negative number if there is an error */
/* This call returns the maximum available hardware counters */
if((num = PAPI_get_opt(PAPI_MAX_HWCTRS,NULL)) <= 0)
ERROR_RETURN(num);
printf("This machine has %d counters.\n",num);
if ((retval=PAPI_create_eventset(&EventSet)) != PAPI_OK)
ERROR_RETURN(retval);
/* Set the domain of this EventSet to counter user and
kernel modes for this process. */
memset(&options,0x0,sizeof(options));
options.domain.eventset = EventSet;
/* Default domain is PAPI_DOM_USER */
options.domain.domain = PAPI_DOM_ALL;
/* this sets the options for the domain */
if ((retval=PAPI_set_opt(PAPI_DOMAIN, &options)) != PAPI_OK)
ERROR_RETURN(retval);
/* Add Total Instructions Executed event to the EventSet */
if ( (retval = PAPI_add_event(EventSet, PAPI_TOT_INS)) != PAPI_OK)
ERROR_RETURN(retval);
/* Add Total Cycles Executed event to the EventSet */
if ( (retval = PAPI_add_event(EventSet, PAPI_TOT_CYC)) != PAPI_OK)
ERROR_RETURN(retval);
/* Start counting */
if((retval=PAPI_start(EventSet)) != PAPI_OK)
ERROR_RETURN(retval);
poorly_tuned_function();
/* Stop counting */
if((retval=PAPI_stop(EventSet, values)) != PAPI_OK)
ERROR_RETURN(retval);
printf(" Total instructions: %lld Total Cycles: %lld \n", values[0],
values[1]);
/* clean up */
PAPI_shutdown();
exit(0);
}

| int poorly_tuned_function | ( | ) |