A microbenchmark support library
If you see this error:
***WARNING*** CPU scaling is enabled, the benchmark real time measurements may be noisy and will incur extra overhead.
you might want to disable the CPU frequency scaling while running the benchmark, as well as consider other ways to stabilize the performance of your system while benchmarking.
Exactly how to do this depends on the Linux distribution, desktop environment, and installed programs. Specific details are a moving target, so we will not attempt to exhaustively document them here.
One simple option is to use the cpupower
program to change the
performance governor to “performance”. This tool is maintained along with
the Linux kernel and provided by your distribution.
It must be run as root, like this:
sudo cpupower frequency-set --governor performance
After this you can verify that all CPUs are using the performance governor by running this command:
cpupower frequency-info -o proc
The benchmarks you subsequently run will have less variance.
The Linux CPU frequency governor discussed above is not the only source of noise in benchmarks. Some, but not all, of the sources of variance include:
These can cause variance in benchmarks results within a single run
(--benchmark_repetitions=N
) or across multiple runs of the benchmark
program.
Reducing sources of variance is OS and architecture dependent, which is one reason some companies maintain machines dedicated to performance testing.
Some of the easier and effective ways of reducing variance on a typical Linux workstation are:
echo 0 | sudo tee /sys/devices/system/cpu/cpufreq/boost
See the Linux kernel’s boost.txt for more information.
taskset -c 0 ./mybenchmark
/sys
file system (see the LLVM project’s Benchmarking
tips).Further resources on this topic: