forked from alibaba-edu/Alita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_power_iso.cpp
291 lines (263 loc) · 8.25 KB
/
test_power_iso.cpp
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
#include "duty_cycle.h"
#include "vm_status.h"
#include <bits/stdc++.h>
#include <unistd.h>
using namespace std;
// # topo_cpu => { cpu : {socket, core} }
// # socket_topo => { socket: set([cpu]) }
// # vm_socket_cpu => { vm : socket : set[cpu] }
// # socket_vm => { socket : set[vm] }
// map<int, vector<int>> topo_cpu;
// map<int, set<int>> socket_topo;
// map<int, map<int, set<int>>> vm_socket_cpu;
// map<int, set<int>> socket_vm;
// vector<string> vm_name; // record vm id[0~n-1] with names(string)
class PowerStrategy
{
public:
const double quota = 150;
const double guard = 10;
const double cpu_util_threshold = 50; // ignore %
int interval = 12;
string file_des;
//read from turbostat/turbo once time
map<int, double> socket_power; //nr_sockets
map<int, double> cpu_util; //nr_cpus
map<int, double> cpu_temp; //nr_cpus
//calculate
map<int, double> socket_avg_temp; //nr_sockets,calculate
map<int, map<int, double>> vm_socket_temp; //{ vm : socket : temperature }
set<vector<int>> noise_vm_on_socket; // set({vm, socket}), cal in noise()
set<int> safe_cpu_need_increase;
set<int> noise_cpus; //target cpus
PowerStrategy() {}
void update_from_file(string file_des)
{
file_des = file_des;
get_socket_power(file_des);
get_cpu_util(file_des);
get_cpu_temp(file_des);
calculate_socket_avg_temp();
calculate_vm_socket_temp();
safe();
noise();
}
bool half_or_more_cpu_util(int vm, int socket)
{
int total_num = (int)vm_socket_cpu[vm][socket].size();
int over_cpu_util_threshold_num = 0;
for (auto cpu : vm_socket_cpu[vm][socket])
{
if (cpu_util[cpu] > cpu_util_threshold)
over_cpu_util_threshold_num++;
}
return 2 * over_cpu_util_threshold_num >= total_num;
}
void safe()
{
for (int socket = 0; socket < nr_sockets; socket++)
{
if (socket_power[socket] > quota - guard)
continue;
//this socket is safe!
for (auto cpu : socket_topo[socket])
{
int cur_duty = read_duty_cycle(cpu);
if (cur_duty == 0)
continue;
safe_cpu_need_increase.insert(cpu);
}
}
}
void noise()
{
for (int socket = 0; socket < nr_sockets; socket++)
{
if (socket_power[socket] < quota)
continue;
//this socket is over quota !
for (auto vm : socket_vm[socket])
{
if (vm_socket_temp[vm][socket] < socket_avg_temp[socket])
continue;
if (half_or_more_cpu_util(vm, socket) == true)
//need to be clear each time
noise_vm_on_socket.insert({vm, socket});
}
}
for (auto &v_vm_socket : noise_vm_on_socket)
{
for (auto cpu : vm_socket_cpu[v_vm_socket[0]][v_vm_socket[1]])
//need to be clear each time
noise_cpus.insert(cpu);
}
}
void get_socket_power(string read_des)
{
int socket = 0;
ifstream fin(read_des);
string s;
vector<string> a;
while (getline(fin, s))
{
a = split(s);
if (a.size() < 13 || isdigit(a[0][0]) == false)
continue;
socket_power[socket++] = stof(a[12]);
}
}
void get_cpu_util(string read_des)
{
ifstream fin(read_des);
string s;
vector<string> a;
while (getline(fin, s))
{
a = split(s);
if (isdigit(a[0][0]) == false)
continue;
int cpu = stoi(a[0]);
cpu_util[cpu] = stof(a[2]);
}
}
void get_cpu_temp(string read_des)
{
double preline_cpu_temp = 0;
ifstream fin(read_des);
string s;
vector<string> a;
while (getline(fin, s))
{
a = split(s);
if (isdigit(a[0][0]) == false)
continue;
int cpu = stoi(a[0]);
if (a.size() < 8)
{
cpu_temp[cpu] = preline_cpu_temp;
}
else
{
cpu_temp[cpu] = stof(a[10]);
preline_cpu_temp = cpu_temp[cpu];
}
}
}
void calculate_socket_avg_temp()
{
for (int socket = 0; socket < nr_sockets; socket++)
{
double temp_sum = 0;
int socket_cpu_num = (int)socket_topo[socket].size();
for (auto cpu : socket_topo[socket])
{
temp_sum += cpu_temp[cpu];
}
socket_avg_temp[socket] = temp_sum / socket_cpu_num;
}
}
void calculate_vm_socket_temp()
{
for (int vm = 0; vm < nr_vms; vm++)
{
for (int socket = 0; socket < nr_sockets; socket++)
{
double temp_sum = 0;
int vm_socket_cpu_num = (int)vm_socket_cpu[vm][socket].size();
if (vm_socket_cpu_num == 0) // vm has no cpu on this socket
continue;
for (auto cpu : vm_socket_cpu[vm][socket])
{
temp_sum += cpu_temp[cpu];
}
vm_socket_temp[vm][socket] = temp_sum / vm_socket_cpu_num;
}
}
}
vector<string> split(string line)
{
vector<string> res;
char str[500];
for (int i = 0; i < (int)line.size(); i++)
str[i] = line[i];
const char *split = " ";
char *p;
p = strtok(str, split);
while (p)
{
res.push_back(p);
p = strtok(NULL, split);
}
return res;
}
};
int main()
{
init_socket_cpu_vm();
init_cpu_duty_cycle();
PowerStrategy ps;
while (1) //main loop
{
string cmd = "timeout 1.2s turbo -i 1 > ./power.log" ;
system(cmd.c_str());
string des = "./power.log" ;
ps.update_from_file(des);
printf("\n================power data has updated!==============\n");
for (int socket = 0; socket < nr_sockets; socket++)
{
printf("socket %d power is %f\n", socket, ps.socket_power[socket]);
printf("socket %d avg temp is %f\n", socket, ps.socket_avg_temp[socket]);
}
for (int vm = 0; vm < nr_vms; vm++)
for (int socket = 0; socket < nr_sockets; socket++)
if (ps.vm_socket_temp[vm].count(socket))
printf("vm %d on socket %d power is %f\n", vm, socket, ps.vm_socket_temp[vm][socket]);
else
printf("vm %d isn't on socket %d\n", vm, socket);
for (int cpu = 0; cpu < nr_cpus; cpu++)
{
printf("cpu %d util is %f, temp is %f\n", cpu, ps.cpu_util[cpu], ps.cpu_temp[cpu]);
}
//safe cpus, increase duty_cycle, and clear
if (ps.safe_cpu_need_increase.size())
{
printf("safe cpus are:\n");
for (auto cpu : ps.safe_cpu_need_increase)
{
int cur_duty = read_duty_cycle(cpu);
int new_duty = (cur_duty + 1) % 16;
write_duty_cycle(cpu, new_duty);
printf("cpu %d +1 level\n", cpu);
}
ps.safe_cpu_need_increase.clear();
}
else
{
printf("no safe cpus!\n");
}
//noise cpus, decrease duty_cycle, and clear decrease
if (ps.noise_cpus.size() > 0)
{
printf("noise cpus are:\n");
for (auto cpu : ps.noise_cpus)
{
int cur_duty = read_duty_cycle(cpu);
int new_duty = 15;
if (cur_duty > 0)
new_duty = cur_duty - 1;
if (cur_duty == 1)
new_duty = 1;
write_duty_cycle(cpu, new_duty);
printf("cpu %d -1 level\n", cpu);
}
ps.noise_cpus.clear();
ps.noise_vm_on_socket.clear();
}
else
{
printf("no noise vms!\n");
}
sleep(ps.interval);
}
return 0;
}