1 /* cpufreq-bench CPUFreq microbenchmark
3 * Copyright (C) 2008 Christian Kornacker <ckornacker@suse.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 #include "benchmark.h"
28 /* Print out progress if we log into a file */
29 #define show_progress(total_time, progress_time) \
30 if (config->output != stdout) { \
31 fprintf(stdout, "Progress: %02lu %%\r", \
32 (progress_time * 100) / total_time); \
37 * compute how many rounds of calculation we should do
38 * to get the given load time
40 * @param load aimed load time in µs
42 * @retval rounds of calculation
45 unsigned int calculate_timespace(long load
, struct config
*config
)
49 unsigned int estimated
= GAUGECOUNT
;
50 unsigned int rounds
= 0;
51 unsigned int timed
= 0;
54 printf("calibrating load of %lius, please wait...\n", load
);
56 /* get the initial calculation time for a specific number of rounds */
61 timed
= (unsigned int)(then
- now
);
63 /* approximation of the wanted load time by comparing with the
64 * initial calculation time */
65 for (i
= 0; i
< 4; i
++) {
66 rounds
= (unsigned int)(load
* estimated
/ timed
);
67 dprintf("calibrating with %u rounds\n", rounds
);
72 timed
= (unsigned int)(then
- now
);
76 printf("calibration done\n");
83 * generates a specific sleep an load time with the performance
84 * governor and compares the used time for same calculations done
85 * with the configured powersave governor
87 * @param config config values for the benchmark
91 void start_benchmark(struct config
*config
)
93 unsigned int _round
, cycle
;
95 long sleep_time
= 0, load_time
= 0;
96 long performance_time
= 0, powersave_time
= 0;
97 unsigned int calculations
;
98 unsigned long total_time
= 0, progress_time
= 0;
100 sleep_time
= config
->sleep
;
101 load_time
= config
->load
;
103 /* For the progress bar */
104 for (_round
= 1; _round
<= config
->rounds
; _round
++)
105 total_time
+= _round
* (config
->sleep
+ config
->load
);
106 total_time
*= 2; /* powersave and performance cycles */
108 for (_round
= 0; _round
< config
->rounds
; _round
++) {
109 performance_time
= 0LL;
110 powersave_time
= 0LL;
112 show_progress(total_time
, progress_time
);
114 /* set the cpufreq governor to "performance" which disables
115 * P-State switching. */
116 if (set_cpufreq_governor("performance", config
->cpu
) != 0)
119 /* calibrate the calculation time. the resulting calculation
120 * _rounds should produce a load which matches the configured
122 calculations
= calculate_timespace(load_time
, config
);
125 printf("_round %i: doing %u cycles with %u calculations"
126 " for %lius\n", _round
+ 1, config
->cycles
,
127 calculations
, load_time
);
129 fprintf(config
->output
, "%u %li %li ",
130 _round
, load_time
, sleep_time
);
133 printf("avarage: %lius, rps:%li\n",
134 load_time
/ calculations
,
135 1000000 * calculations
/ load_time
);
137 /* do some sleep/load cycles with the performance governor */
138 for (cycle
= 0; cycle
< config
->cycles
; cycle
++) {
141 ROUNDS(calculations
);
143 performance_time
+= then
- now
- sleep_time
;
145 printf("performance cycle took %lius, "
147 "load: %lius, rounds: %u\n",
148 (long)(then
- now
), sleep_time
,
149 load_time
, calculations
);
151 fprintf(config
->output
, "%li ",
152 performance_time
/ config
->cycles
);
154 progress_time
+= sleep_time
+ load_time
;
155 show_progress(total_time
, progress_time
);
157 /* set the powersave governor which activates P-State switching
159 if (set_cpufreq_governor(config
->governor
, config
->cpu
) != 0)
162 /* again, do some sleep/load cycles with the
163 * powersave governor */
164 for (cycle
= 0; cycle
< config
->cycles
; cycle
++) {
167 ROUNDS(calculations
);
169 powersave_time
+= then
- now
- sleep_time
;
171 printf("powersave cycle took %lius, "
173 "load: %lius, rounds: %u\n",
174 (long)(then
- now
), sleep_time
,
175 load_time
, calculations
);
178 progress_time
+= sleep_time
+ load_time
;
180 /* compare the avarage sleep/load cycles */
181 fprintf(config
->output
, "%li ",
182 powersave_time
/ config
->cycles
);
183 fprintf(config
->output
, "%.3f\n",
184 performance_time
* 100.0 / powersave_time
);
185 fflush(config
->output
);
188 printf("performance is at %.2f%%\n",
189 performance_time
* 100.0 / powersave_time
);
191 sleep_time
+= config
->sleep_step
;
192 load_time
+= config
->load_step
;