PAPI  5.7.0.0
overflow3_pthreads.c
Go to the documentation of this file.
1 /*
2 * File: overflow3_pthreads.c
3 * Author: Philip Mucci
4 * mucci@cs.utk.edu
5 */
6 
7 /* This file tests the overflow functionality when there are
8  * threads in which the application isn't calling PAPI (and only
9  * one thread that is calling PAPI.)
10  */
11 
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <pthread.h>
15 
16 #include "papi.h"
17 #include "papi_test.h"
18 
19 #include "do_loops.h"
20 
21 int total = 0;
22 
23 void *
24 thread_fn( void *dummy )
25 {
26  ( void ) dummy;
27  while ( 1 ) {
28  do_stuff( );
29  }
30  return ( NULL );
31 }
32 
33 void
34 handler( int EventSet, void *address, long long overflow_vector, void *context )
35 {
36  ( void ) overflow_vector;
37  ( void ) context;
38  if ( !TESTS_QUIET ) {
39  fprintf( stderr, "handler(%d ) Overflow at %p, thread %#lx!\n",
40  EventSet, address, PAPI_thread_id( ) );
41  }
42  total++;
43 }
44 
45 void
46 mainloop( int arg )
47 {
48  int retval, num_tests = 1;
49  int EventSet1 = PAPI_NULL;
50  int mask1 = 0x0;
51  int num_events1;
52  long long **values;
53  int PAPI_event;
55 
56  ( void ) arg;
57 
59  if (retval != PAPI_VER_CURRENT ) {
60  test_fail( __FILE__, __LINE__, "PAPI_library_init", retval );
61  }
62 
63  /* add PAPI_TOT_CYC and one of the events in PAPI_FP_INS, PAPI_FP_OPS or
64  PAPI_TOT_INS, depending on the availability of the event on the
65  platform */
67  &PAPI_event, &mask1 );
68 
69  if (num_events1==0) {
70  if (!TESTS_QUIET) printf("Trouble creating events\n");
71  test_skip(__FILE__,__LINE__,"Creating events",0);
72  }
73 
75 
76  if ( ( retval =
78  handler ) ) != PAPI_OK )
79  test_fail( __FILE__, __LINE__, "PAPI_overflow", retval );
80 
81  do_stuff( );
82 
83  if ( ( retval = PAPI_start( EventSet1 ) ) != PAPI_OK )
84  test_fail( __FILE__, __LINE__, "PAPI_start", retval );
85 
86  do_stuff( );
87 
88  if ( ( retval = PAPI_stop( EventSet1, values[0] ) ) != PAPI_OK )
89  test_fail( __FILE__, __LINE__, "PAPI_stop", retval );
90 
91  /* clear the papi_overflow event */
92  if ( ( retval =
93  PAPI_overflow( EventSet1, PAPI_event, 0, 0, NULL ) ) != PAPI_OK )
94  test_fail( __FILE__, __LINE__, "PAPI_overflow", retval );
95 
96  if ( ( retval =
98  test_fail( __FILE__, __LINE__, "PAPI_event_code_to_name", retval );
99 
100  if ( !TESTS_QUIET ) {
101  printf( "Thread %#x %s : \t%lld\n", ( int ) pthread_self( ),
102  event_name, ( values[0] )[0] );
103  printf( "Thread %#x PAPI_TOT_CYC: \t%lld\n", ( int ) pthread_self( ),
104  ( values[0] )[1] );
105  }
106 
108  if ( retval != PAPI_OK )
109  test_fail( __FILE__, __LINE__, "PAPI_cleanup_eventset", retval );
110 
112  if ( retval != PAPI_OK )
113  test_fail( __FILE__, __LINE__, "PAPI_destroy_eventset", retval );
114 
116  PAPI_shutdown( );
117 }
118 
119 int
120 main( int argc, char **argv )
121 {
122  int i, rc, retval;
124  pthread_attr_t attr;
125  int quiet;
126 
127  /* Set TESTS_QUIET variable */
128  quiet=tests_quiet( argc, argv );
129 
130  if (!quiet) {
131  printf( "%s: Using %d threads\n\n", argv[0], NUM_THREADS );
132  printf( "Does non-threaded overflow work "
133  "with extraneous threads present?\n" );
134  }
135 
136  pthread_attr_init( &attr );
137 #ifdef PTHREAD_CREATE_UNDETACHED
138  pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_UNDETACHED );
139 #endif
140 #ifdef PTHREAD_SCOPE_SYSTEM
141  retval = pthread_attr_setscope( &attr, PTHREAD_SCOPE_SYSTEM );
142  if ( retval != 0 )
143  test_skip( __FILE__, __LINE__, "pthread_attr_setscope", retval );
144 #endif
145 
146  for ( i = 0; i < NUM_THREADS; i++ ) {
147  rc = pthread_create( &id[i], &attr, thread_fn, NULL );
148  if ( rc )
149  test_fail( __FILE__, __LINE__, "pthread_create", rc );
150  }
151  pthread_attr_destroy( &attr );
152 
153  mainloop( NUM_ITERS );
154 
155  test_pass( __FILE__ );
156 
157  return 0;
158 }
char event_name[2][PAPI_MAX_STR_LEN]
Definition: data_range.c:29
#define PAPI_OK
Definition: fpapi.h:105
int PAPI_stop(int EventSet, long long *values)
Definition: papi.c:2314
int mask1
Definition: zero_fork.c:48
#define NUM_THREADS
Definition: do_loops.h:8
int PAPI_event[2]
Definition: data_range.c:30
rc
Definition: pscanf.h:23
void test_pass(const char *filename)
Definition: test_utils.c:432
unsigned long int pthread_t
#define NUM_ITERS
Definition: multiplex.c:19
unsigned long PAPI_thread_id(void)
Definition: papi.c:162
int num_events1
Definition: zero_fork.c:49
void do_stuff(void)
Definition: do_loops.c:256
#define PAPI_VER_CURRENT
Definition: fpapi.h:14
int EventSet
void dummy(void *array)
Definition: do_loops.c:306
int PAPI_overflow(int EventSet, int EventCode, int threshold, int flags, PAPI_overflow_handler_t handler)
Definition: papi.c:4788
int retval
Definition: zero_fork.c:53
Return codes and api definitions.
int total
void test_skip(const char *file, int line, const char *call, int retval)
Definition: test_utils.c:561
int PAPI_library_init(int version)
Definition: papi.c:500
void PAPI_shutdown(void)
Definition: papi.c:4461
int quiet
Definition: rapl_overflow.c:18
int main(int argc, char **argv)
void free_test_space(long long **values, int num_tests)
Definition: test_utils.c:70
#define PAPI_NULL
Definition: fpapi.h:13
int PAPI_cleanup_eventset(int EventSet)
Definition: papi.c:2890
int PAPI_event_code_to_name(int EventCode, char *out)
Definition: papi.c:915
int num_tests
Definition: zero_fork.c:53
int TESTS_QUIET
Definition: test_utils.c:18
int tests_quiet(int argc, char **argv)
Definition: test_utils.c:376
void handler(int EventSet, void *address, long long overflow_vector, void *context)
void * thread_fn(void *dummy)
void test_fail(const char *file, int line, const char *call, int retval)
Definition: test_utils.c:468
int PAPI_destroy_eventset(int *EventSet)
Definition: papi.c:2014
int add_two_nonderived_events(int *num_events, int *papi_event, int *mask)
Definition: test_utils.c:648
int PAPI_start(int EventSet)
Definition: papi.c:2096
#define THRESHOLD
Definition: earprofile.c:37
static long long values[NUM_EVENTS]
Definition: init_fini.c:10
long long ** allocate_test_space(int num_tests, int num_events)
Definition: test_utils.c:46
void mainloop(int arg)
int EventSet1
Definition: zero_fork.c:47
int i
Definition: fileop.c:140
#define PAPI_MAX_STR_LEN
Definition: fpapi.h:43