|
PAPI
5.0.1.0
|

Go to the source code of this file.
Defines | |
| #define | NUM_EVENTS 3 |
| Tests basic mx myrinet functionality. | |
Functions | |
| int | main (int argc, char **argv) |
| #define NUM_EVENTS 3 |
test case for mx myrinet component
Definition at line 15 of file mx_elapsed.c.
| int main | ( | int | argc, |
| char ** | argv | ||
| ) |
Definition at line 17 of file mx_elapsed.c.
{
int retval,cid,numcmp,our_cmp;
int EventSet = PAPI_NULL;
long long values[NUM_EVENTS];
int code;
const PAPI_component_info_t *cmpinfo = NULL;
/* Set TESTS_QUIET variable */
tests_quiet( argc, argv );
/* PAPI Initialization */
retval = PAPI_library_init( PAPI_VER_CURRENT );
if ( retval != PAPI_VER_CURRENT ) {
test_fail(__FILE__, __LINE__,"PAPI_library_init failed\n",retval);
}
if (!TESTS_QUIET) {
printf("Trying mutiple reads in MX component\n");
}
numcmp = PAPI_num_components();
our_cmp=-1;
for(cid=0; cid<numcmp; cid++) {
if ( (cmpinfo = PAPI_get_component_info(cid)) == NULL) {
test_fail(__FILE__, __LINE__,"PAPI_get_component_info failed\n", 0);
}
if (strstr(cmpinfo->name,"mx")) {
if (!TESTS_QUIET) printf("\tFound Myrinet component %d - %s\n", cid, cmpinfo->name);
our_cmp=cid;
break;
}
}
if (our_cmp<0) {
test_skip(__FILE__, __LINE__,"MX component not found\n", 0);
}
if (cmpinfo->num_native_events<=0) {
test_skip(__FILE__, __LINE__,"MX component not found\n", 0);
}
EventSet = PAPI_NULL;
retval = PAPI_create_eventset( &EventSet );
if (retval != PAPI_OK) {
test_fail(__FILE__, __LINE__,
"PAPI_create_eventset()",retval);
}
retval=PAPI_event_name_to_code("mx:::COUNTERS_UPTIME",&code);
if (retval!=PAPI_OK) {
test_fail(__FILE__, __LINE__,
"could not add event COUNTERS_UPTIME",retval);
}
retval = PAPI_add_event( EventSet, code );
if (retval != PAPI_OK) {
test_fail(__FILE__, __LINE__,
"PAPI_add_event()",retval);
}
retval=PAPI_event_name_to_code("mx:::PUSH_OBSOLETE",&code);
if (retval!=PAPI_OK) {
test_fail(__FILE__, __LINE__,
"could not add event PUSH_OBSOLETE",retval);
}
retval = PAPI_add_event( EventSet, code );
if (retval != PAPI_OK) {
test_fail(__FILE__, __LINE__,
"PAPI_add_event()",retval);
}
retval=PAPI_event_name_to_code("mx:::PKT_MISROUTED",&code);
if (retval!=PAPI_OK) {
test_fail(__FILE__, __LINE__,
"could not add event PKT_MISROUTED",retval);
}
retval = PAPI_add_event( EventSet, code );
if (retval != PAPI_OK) {
test_fail(__FILE__, __LINE__,
"PAPI_add_event()",retval);
}
retval = PAPI_start( EventSet);
if (retval != PAPI_OK) {
test_fail(__FILE__, __LINE__, "PAPI_start()",retval);
}
retval = PAPI_read( EventSet, values);
if (retval != PAPI_OK) {
test_fail(__FILE__, __LINE__, "PAPI_read()",retval);
}
if (!TESTS_QUIET) printf("%lld %lld %lld\n",values[0],values[1],values[2]);
retval = PAPI_stop( EventSet, values);
if (retval != PAPI_OK) {
test_fail(__FILE__, __LINE__, "PAPI_start()",retval);
}
if (!TESTS_QUIET) printf("%lld %lld %lld\n",values[0],values[1],values[2]);
test_pass( __FILE__, NULL, 0 );
return 0;
}
