PAPI 7.1.0.0
Loading...
Searching...
No Matches
micpower_basic.c
Go to the documentation of this file.
1/****************************/
2/* THIS IS OPEN SOURCE CODE */
3/****************************/
4
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19
20#include "papi.h"
21#include "papi_test.h"
22
23#define NUM_EVENTS 1
24
25int main (int argc, char **argv)
26{
27
28 int retval,cid,numcmp;
29 int EventSet = PAPI_NULL;
30 long long values[NUM_EVENTS];
31 int code;
33 int total_events=0;
34 int r;
35 const PAPI_component_info_t *cmpinfo = NULL;
36
37 /* Set TESTS_QUIET variable */
38 tests_quiet( argc, argv );
39
40 /* PAPI Initialization */
42 if ( retval != PAPI_VER_CURRENT ) {
43 test_fail(__FILE__, __LINE__,"PAPI_library_init failed\n",retval);
44 }
45
46 numcmp = PAPI_num_components();
47
48 for(cid=0; cid<numcmp; cid++) {
49
50 if (!TESTS_QUIET) {
51 if ( (cmpinfo = PAPI_get_component_info(cid)) == NULL) {
52 test_fail(__FILE__, __LINE__,"PAPI_get_component_info failed\n", 0);
53 }
54 printf("\tComponent %d - %s\n", cid, cmpinfo->name);
55 }
56
57 code = PAPI_NATIVE_MASK;
58
59 r = PAPI_enum_cmp_event( &code, PAPI_ENUM_FIRST, cid );
60
61 while ( r == PAPI_OK ) {
63 if ( retval != PAPI_OK ) {
64 printf("Error translating %#x\n",code);
65 test_fail( __FILE__, __LINE__,
66 "PAPI_event_code_to_name", retval );
67 }
68
69 if (!strncmp(event_name,"micpower",8)) {
70 if (!TESTS_QUIET) printf("%#x %s ",code,event_name);
71
73
75 if (retval != PAPI_OK) {
76 test_fail(__FILE__, __LINE__,
77 "PAPI_create_eventset()",retval);
78 }
79
81 if (retval != PAPI_OK) {
82 test_fail(__FILE__, __LINE__,
83 "PAPI_add_event()",retval);
84 }
85
87 if (retval != PAPI_OK) {
88 test_fail(__FILE__, __LINE__, "PAPI_start()",retval);
89 }
90
92 if (retval != PAPI_OK) {
93 test_fail(__FILE__, __LINE__, "PAPI_start()",retval);
94 }
95
96 if (!TESTS_QUIET) printf(" value: %lld\n",values[0]);
97
99 if (retval != PAPI_OK) {
100 test_fail(__FILE__, __LINE__,
101 "PAPI_cleanup_eventset()",retval);
102 }
103
105 if (retval != PAPI_OK) {
106 test_fail(__FILE__, __LINE__,
107 "PAPI_destroy_eventset()",retval);
108 }
109
110 total_events++;
111 }
112 r = PAPI_enum_cmp_event( &code, PAPI_ENUM_EVENTS, cid );
113 }
114 }
115
116 if (total_events==0) {
117
118 test_skip(__FILE__,__LINE__,"No coretemp events found",0);
119 }
120
121 test_pass( __FILE__ );
122
123 return 0;
124}
125
add PAPI preset or native hardware event to an event set
Empty and destroy an EventSet.
Create a new empty PAPI EventSet.
Empty and destroy an EventSet.
Enumerate PAPI preset or native events for a given component.
Convert a numeric hardware event code to a name.
get information about a specific software component
initialize the PAPI library.
Get the number of components available on the system.
Start counting hardware events in an event set.
Stop counting hardware events in an event set.
char event_name[2][PAPI_MAX_STR_LEN]
Definition: data_range.c:29
#define PAPI_VER_CURRENT
Definition: f90papi.h:54
#define PAPI_ENUM_EVENTS
Definition: f90papi.h:224
#define PAPI_OK
Definition: f90papi.h:73
#define PAPI_ENUM_FIRST
Definition: f90papi.h:85
#define PAPI_NULL
Definition: f90papi.h:78
#define PAPI_MAX_STR_LEN
Definition: f90papi.h:77
static int EventSet
Definition: init_fini.c:8
static long long values[NUM_EVENTS]
Definition: init_fini.c:10
#define NUM_EVENTS
Tests basic component functionality.
int TESTS_QUIET
Definition: test_utils.c:18
#define PAPI_NATIVE_MASK
Return codes and api definitions.
int tests_quiet(int argc, char **argv)
Definition: test_utils.c:376
void PAPI_NORETURN test_fail(const char *file, int line, const char *call, int retval)
Definition: test_utils.c:491
void PAPI_NORETURN test_pass(const char *filename)
Definition: test_utils.c:432
void PAPI_NORETURN test_skip(const char *file, int line, const char *call, int retval)
Definition: test_utils.c:584
int main()
Definition: pernode.c:20
char name[PAPI_MAX_STR_LEN]
Definition: papi.h:627
int retval
Definition: zero_fork.c:53