|
  PAPI3:PAPI event code to name.3
| |
ViewsFrom PAPIDocs
(Redirected from PAPI3:PAPI event name to code.3)
Name
SynopsisC Interface #include <papi.h> int PAPI_event_code_to_name(int EventCode, char * EventName ); int PAPI_event_name_to_code(char * EventName, int * EventCode ); Fortran Interface #include fpapi.h PAPIF_event_code_to_name(C_INT EventCode, C_STRING EventName, C_INT check ) PAPIF_event_name_to_code(C_STRING EventName, C_INT EventCode, C_INT check ) DescriptionPAPI_event_code_to_name() is used to translate a 32-bit integer PAPI event code into an ASCII PAPI event name. Either Preset event codes or Native event codes can be passed to this routine. Native event codes and names differ from platform to platform. PAPI_event_name_to_code() is used to translate an ASCII PAPI event name into an integer PAPI event code. ArgumentsEventName -- a string containing the event name as listed in PAPI_presets(3) or discussed in PAPI_native(3) EventCode -- the numeric code for the event
ErrorsPAPI_EINVAL One or more of the arguments is invalid. PAPI_ENOTPRESET The hardware event specified is not a valid PAPI preset. PAPI_ENOEVNT The hardware event is not available on the underlying hardware. Examplesint EventCode, EventSet = PAPI_NULL;
char EventCodeStr[PAPI_MAX_STR_LEN];
char EventDescr[PAPI_MAX_STR_LEN];
char EventLabel[20];
/* Convert to integer */
if (PAPI_event_name_to_code("PAPI_TOT_INS",&EventCode) != PAPI_OK)
handle_error(1);
/* Create the EventSet */
if (PAPI_create_eventset(&EventSet) != PAPI_OK)
handle_error(1);
/* Add Total Instructions Executed to our EventSet */
if (PAPI_add_event(EventSet, EventCode) != PAPI_OK)
handle_error(1);
BugsThese functions have no known bugs. See AlsoPAPI_remove_event(3), PAPI_get_event_info(3), PAPI_enum_event(3), PAPI_add_event(3), PAPI_presets(3), PAPI_native(3) |