|
PAPI
5.0.1.0
|

Go to the source code of this file.
Functions | |
| long long | Thread (int n) |
| int | main (int argc, char **argv) |
Variables | |
| const int | MAX_FLOPS = NUM_FLOPS |
| int | TESTS_QUIET |
| const PAPI_hw_info_t * | hw_info = NULL |
| int main | ( | int | argc, |
| char ** | argv | ||
| ) |
Definition at line 117 of file val_omp.c.
{
int tid, retval;
int maxthr = omp_get_max_threads( );
int flopper = 0;
long long *flops = calloc( maxthr, sizeof ( long long ) );
long long *flopi = calloc( maxthr, sizeof ( long long ) );
tests_quiet( argc, argv ); /* Set TESTS_QUIET variable */
if ( maxthr < 2 )
test_skip( __FILE__, __LINE__, "omp_get_num_threads < 2", PAPI_EINVAL );
if ( ( flops == NULL ) || ( flopi == NULL ) )
test_fail( __FILE__, __LINE__, "calloc", PAPI_ENOMEM );
retval = PAPI_library_init( PAPI_VER_CURRENT );
if ( retval != PAPI_VER_CURRENT )
test_fail( __FILE__, __LINE__, "PAPI_library_init", retval );
hw_info = PAPI_get_hardware_info( );
if ( hw_info == NULL )
test_fail( __FILE__, __LINE__, "PAPI_get_hardware_info", 2 );
retval =
PAPI_thread_init( ( unsigned
long ( * )( void ) ) ( omp_get_thread_num ) );
if ( retval != PAPI_OK )
if ( retval == PAPI_ECMP )
test_skip( __FILE__, __LINE__, "PAPI_thread_init", retval );
else
test_fail( __FILE__, __LINE__, "PAPI_thread_init", retval );
flopper = Thread( 65536 ) / 65536;
printf( "flopper=%d\n", flopper );
for ( int i = 0; i < 100000; i++ )
#pragma omp parallel private(tid)
{
tid = omp_get_thread_num( );
flopi[tid] = rand( ) * 3;
flops[tid] = Thread( ( flopi[tid] / flopper ) % MAX_FLOPS );
#pragma omp barrier
#pragma omp master
if ( flops[tid] < flopi[tid] ) {
printf( "test iteration=%d\n", i );
for ( int j = 0; j < omp_get_num_threads( ); j++ ) {
printf( "Thread 0x%x Value %6lld %c %6lld", j, flops[j],
( flops[j] < flopi[j] ) ? '<' : '=', flopi[j] );
for ( int k = 0; k < omp_get_num_threads( ); k++ )
if ( ( k != j ) && ( flops[k] == flops[j] ) )
printf( " == Thread 0x%x!", k );
printf( "\n" );
}
test_fail( __FILE__, __LINE__, "value returned for thread",
PAPI_EBUG );
}
}
test_pass( __FILE__, NULL, 0 );
exit( 0 );
}

| long long Thread | ( | int | n | ) |
Definition at line 45 of file val_omp.c.
{
int retval, num_tests = 1;
int EventSet1 = PAPI_NULL;
int PAPI_event, mask1;
int num_events1;
long long flops;
long long **values;
long long elapsed_us, elapsed_cyc;
char event_name[PAPI_MAX_STR_LEN];
/* printf("Thread(n=%d) 0x%x started\n", n, omp_get_thread_num()); */
num_events1 = 2;
/* add PAPI_TOT_CYC and one of the events in PAPI_FP_INS, PAPI_FP_OPS or
PAPI_TOT_INS, depending on the availability of the event on the
platform */
EventSet1 = add_two_events( &num_events1, &PAPI_event, &mask1 );
retval = PAPI_event_code_to_name( PAPI_event, event_name );
if ( retval != PAPI_OK )
test_fail( __FILE__, __LINE__, "PAPI_event_code_to_name", retval );
values = allocate_test_space( num_tests, num_events1 );
do_flops( MAX_FLOPS - n ); /* prework for balance */
elapsed_us = PAPI_get_real_usec( );
elapsed_cyc = PAPI_get_real_cyc( );
retval = PAPI_start( EventSet1 );
if ( retval != PAPI_OK )
test_fail( __FILE__, __LINE__, "PAPI_start", retval );
do_flops( n );
retval = PAPI_stop( EventSet1, values[0] );
if ( retval != PAPI_OK )
test_fail( __FILE__, __LINE__, "PAPI_stop", retval );
flops = ( values[0] )[0];
elapsed_us = PAPI_get_real_usec( ) - elapsed_us;
elapsed_cyc = PAPI_get_real_cyc( ) - elapsed_cyc;
remove_test_events( &EventSet1, mask1 );
if ( !TESTS_QUIET ) {
/*printf("Thread 0x%x %-12s : \t%lld\t%d\n", omp_get_thread_num(), event_name,
(values[0])[0], n); */
#if 0
printf( "Thread 0x%x PAPI_TOT_CYC: \t%lld\n", omp_get_thread_num( ),
values[0][0] );
printf( "Thread 0x%x Real usec : \t%lld\n", omp_get_thread_num( ),
elapsed_us );
printf( "Thread 0x%x Real cycles : \t%lld\n", omp_get_thread_num( ),
elapsed_cyc );
#endif
}
/* It is illegal for the threads to exit in OpenMP */
/* test_pass(__FILE__,0,0); */
free_test_space( values, num_tests );
PAPI_unregister_thread( );
/* printf("Thread 0x%x finished\n", omp_get_thread_num()); */
return flops;
}

| const PAPI_hw_info_t* hw_info = NULL |
| int TESTS_QUIET |
Definition at line 11 of file test_utils.c.