PAPI  5.3.0.0
host_micpower_basic.c File Reference
Include dependency graph for host_micpower_basic.c:

Go to the source code of this file.

Defines

#define NUM_EVENTS   1
 Tests basic component functionality.

Functions

int main (int argc, char **argv)

Define Documentation

#define NUM_EVENTS   1
Author:
Vince Weaver

test case for micpower component Based on coretemp test code by Vince Weaver

Definition at line 20 of file host_micpower_basic.c.


Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 22 of file host_micpower_basic.c.

{

        int retval,cid,numcmp;
    int EventSet = PAPI_NULL;
    long long values[NUM_EVENTS];
    int code;
    char event_name[PAPI_MAX_STR_LEN];
    int total_events=0;
    int r;
    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);
    }

        numcmp = PAPI_num_components();

    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 (!TESTS_QUIET) {
                    printf("\tComponent %d - %s\n", cid, cmpinfo->name);
            }

            if ( 0 != strncmp(cmpinfo->name,"host_micpower",13)) {
                    continue;
            }

            code = PAPI_NATIVE_MASK;

            r = PAPI_enum_cmp_event( &code, PAPI_ENUM_FIRST, cid );

            while ( r == PAPI_OK ) {
                    retval = PAPI_event_code_to_name( code, event_name );
                    if ( retval != PAPI_OK ) {
                            printf("Error translating %#x\n",code);
                            test_fail( __FILE__, __LINE__, 
                                            "PAPI_event_code_to_name", retval );
                    }

                    if (!TESTS_QUIET) printf("%#x %s ",code,event_name);

                    EventSet = PAPI_NULL;

                    retval = PAPI_create_eventset( &EventSet );
                    if (retval != PAPI_OK) {
                            test_fail(__FILE__, __LINE__, 
                                            "PAPI_create_eventset()",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_stop( EventSet, values);
                    if (retval != PAPI_OK) {
                            test_fail(__FILE__, __LINE__, "PAPI_stop()",retval);
                    }

                    if (!TESTS_QUIET) printf(" value: %lld\n",values[0]);

                    retval = PAPI_cleanup_eventset( EventSet );
                    if (retval != PAPI_OK) {
                            test_fail(__FILE__, __LINE__, 
                                            "PAPI_cleanup_eventset()",retval);
                    }

                    retval = PAPI_destroy_eventset( &EventSet );
                    if (retval != PAPI_OK) {
                            test_fail(__FILE__, __LINE__, 
                                            "PAPI_destroy_eventset()",retval);
                    }

                    total_events++;
                    r = PAPI_enum_cmp_event( &code, PAPI_ENUM_EVENTS, cid );
            }
    }

    if (total_events==0) {

       test_skip(__FILE__,__LINE__,"No events from host_micpower found",0);
    }

    test_pass( __FILE__, NULL, 0 );
        
    return 0;
}

Here is the call graph for this function:

 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines