forked from ajaiantilal/i7z
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cpuinfo.c
226 lines (201 loc) · 7.14 KB
/
cpuinfo.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#include "stdio.h"
#include "string.h"
#include "stdlib.h"
#include "assert.h"
#define MAX_PROCESSORS 32
#define bool int
#define false 0
#define true 1
#define MAX_HI_PROCESSORS MAX_PROCESSORS
struct cpu_heirarchy_info {
int max_online_cpu;
int num_sockets;
int sibling_num[MAX_HI_PROCESSORS];
int processor_num[MAX_HI_PROCESSORS];
int package_num[MAX_HI_PROCESSORS];
int coreid_num[MAX_HI_PROCESSORS];
int display_cores[MAX_HI_PROCESSORS];
bool HT;
};
#define MAX_SK_PROCESSORS (MAX_PROCESSORS/4)
struct cpu_socket_info {
int max_cpu;
int socket_num;
int processor_num[MAX_SK_PROCESSORS];
int num_physical_cores;
int num_logical_cores;
};
int check_and_return_processor(char*strinfo)
{
char *t1;
if (strstr(strinfo,"processor") !=NULL) {
strtok(strinfo,":");
t1 = strtok(NULL, " ");
return(atoi(t1));
} else {
return(-1);
}
}
int check_and_return_physical_id(char*strinfo)
{
char *t1;
if (strstr(strinfo,"physical id") !=NULL) {
strtok(strinfo,":");
t1 = strtok(NULL, " ");
return(atoi(t1));
} else {
return(-1);
}
}
int check_and_return_core_id(char*strinfo)
{
char *t1;
if (strstr(strinfo,"core id") !=NULL) {
strtok(strinfo,":");
t1 = strtok(NULL, " ");
return(atoi(t1));
} else {
return(-1);
}
}
void construct_sibling_list(struct cpu_heirarchy_info* chi)
{
int i,j,core_id,socket_id;
for (i=0;i< chi->max_online_cpu ;i++) {
assert(i < MAX_HI_PROCESSORS);
chi->sibling_num[i]=-1;
}
chi->HT=false;
for (i=0;i< chi->max_online_cpu ;i++) {
assert(i < MAX_HI_PROCESSORS);
core_id = chi->coreid_num[i];
socket_id = chi->package_num[i];
for (j=i+1;j< chi->max_online_cpu ;j++) {
assert(j < MAX_HI_PROCESSORS);
if (chi->coreid_num[j] == core_id && chi->package_num[j] == socket_id) {
chi->sibling_num[j] = i;
chi->sibling_num[i] = j;
chi->display_cores[i] = 1;
chi->display_cores[j] = -1;
chi->HT=true;
continue;
}
}
}
//for cores that donot have a sibling put in 1
for (i=0;i< chi->max_online_cpu ;i++) {
assert(i < MAX_HI_PROCESSORS);
if (chi->sibling_num[i] ==-1)
chi->display_cores[i] = 1;
}
}
void construct_socket_information(struct cpu_heirarchy_info* chi,struct cpu_socket_info* socket_0,struct cpu_socket_info* socket_1)
{
int i;
char socket_1_list[200]="", socket_0_list[200]="";
for (i=0;i< chi->max_online_cpu ;i++) {
assert(i < MAX_HI_PROCESSORS);
if (chi->display_cores[i]!=-1) {
if (chi->package_num[i]==0) {
assert(socket_0->max_cpu < MAX_SK_PROCESSORS);
socket_0->processor_num[socket_0->max_cpu]=chi->processor_num[i];
socket_0->max_cpu++;
socket_0->num_physical_cores++;
socket_0->num_logical_cores++;
}
if (chi->package_num[i]==1) {
assert(socket_1->max_cpu < MAX_SK_PROCESSORS);
socket_1->processor_num[socket_1->max_cpu]=chi->processor_num[i];
socket_1->max_cpu++;
socket_1->num_physical_cores++;
socket_1->num_logical_cores++;
}
} else {
if (chi->package_num[i]==0) {
socket_0->num_logical_cores++;
}
if (chi->package_num[i]==1) {
socket_1->num_logical_cores++;
}
}
}
}
void print_socket_information(struct cpu_socket_info* socket)
{
int i;
char socket_list[200]="";
for (i=0;i< socket->max_cpu ;i++) {
assert(i < MAX_SK_PROCESSORS);
if (socket->processor_num[i]!=-1) {
sprintf(socket_list,"%s%d,",socket_list,socket->processor_num[i]);
}
}
printf("Socket-%d [num of cpus %d physical %d logical %d] %s\n",socket->socket_num,socket->max_cpu,socket->num_physical_cores,socket->num_logical_cores,socket_list);
}
void construct_CPU_Heirarchy_info(struct cpu_heirarchy_info* chi)
{
int i;
FILE *fp = fopen("/proc/cpuinfo","r");
char strinfo[200];
int processor_num, physicalid_num, coreid_num;
int it_processor_num=-1, it_physicalid_num=-1, it_coreid_num=-1;
int tmp_processor_num, tmp_physicalid_num, tmp_coreid_num;
int old_processor_num=-1;
if (fp!=NULL) {
while ( fgets(strinfo,200,fp) != NULL) {
printf(strinfo);
tmp_processor_num = check_and_return_processor(strinfo);
tmp_physicalid_num = check_and_return_physical_id(strinfo);
tmp_coreid_num = check_and_return_core_id(strinfo);
if (tmp_processor_num != -1) {
it_processor_num++;
processor_num = tmp_processor_num;
assert(it_processor_num < MAX_HI_PROCESSORS);
chi->processor_num[it_processor_num] = processor_num;
}
if (tmp_physicalid_num != -1) {
it_physicalid_num++;
physicalid_num = tmp_physicalid_num;
assert(it_physicalid_num < MAX_HI_PROCESSORS);
chi->package_num[it_physicalid_num] = physicalid_num;
}
if (tmp_coreid_num != -1) {
it_coreid_num++;
coreid_num = tmp_coreid_num;
assert(it_coreid_num < MAX_HI_PROCESSORS);
chi->coreid_num[it_coreid_num] = coreid_num;
}
if (processor_num != old_processor_num) {
old_processor_num = processor_num;
}
}
}
chi->max_online_cpu = it_processor_num+1;
}
void print_CPU_Heirarchy(struct cpu_heirarchy_info chi)
{
int i;
printf("Legend: processor number is the processor number as linux knows, socket number is the socket number,\n \
coreid number is the core with which this processor is associated, thus for HT machines there will be 2 processors\n\
sharing the same core id. display core is to specify if i need to show the information about this core or not (i.e.\n\
if i am already showing information about a core then i dont need to show information about the sibling\n");
for (i=0;i < chi.max_online_cpu;i++) {
assert(i < MAX_HI_PROCESSORS);
printf("--[%d] Processor number %d\n",i,chi.processor_num[i]);
printf("--[%d] Socket number/Sibling number %d,%d\n",i,chi.package_num[i],chi.sibling_num[i]);
printf("--[%d] Core id number %d\n",i,chi.coreid_num[i]);
printf("--[%d] Display core %d\n\n",i,chi.display_cores[i]);
}
}
int main()
{
struct cpu_heirarchy_info chi;
struct cpu_socket_info socket_0={.max_cpu=0, .socket_num=0, .processor_num={-1,-1,-1,-1,-1,-1,-1,-1}};
struct cpu_socket_info socket_1={.max_cpu=0, .socket_num=1, .processor_num={-1,-1,-1,-1,-1,-1,-1,-1}};
construct_CPU_Heirarchy_info(&chi);
construct_sibling_list(&chi);
print_CPU_Heirarchy(chi);
construct_socket_information(&chi, &socket_0, &socket_1);
print_socket_information(&socket_0);
print_socket_information(&socket_1);
}