IREE uses benchmarks to inspect performance at varying levels of granularity. Benchmarking is implemented using the Google Benchmark library and tracing with C++ bindings from the Google Web Tracing Framework.
iree-benchmark-module
is a program accepting (almost) the same inputs as iree-run-module
that will benchmark the invocation of a single entry function. It measures timing for the whole process of invoking a function through the VM, including allocating and freeing output buffers. This is a high-level benchmark of an entire invocation flow. It provides a big picture view, but depends on many different variables, like an integration test. For finer-grained measurements more akin to unit tests, see Microbenchmarks and Tracing.
To use iree-benchmark-module
, generate an IREE module for the target backend:
$ bazel run //iree/tools:iree-translate -- \ -iree-mlir-to-vm-bytecode-module \ --iree-hal-target-backends=vmla \ $PWD/iree/tools/test/simple.mlir \ -o /tmp/module.fb
and then benchmark an exported function in that module:
$ bazel run //iree/tools:iree-benchmark-module -- \ --input_file=/tmp/module.fb \ --driver=vmla \ --entry_function=abs \ --inputs="i32=-2"
You'll see output like
Run on (12 X 4500 MHz CPU s) CPU Caches: L1 Data 32K (x6) L1 Instruction 32K (x6) L2 Unified 1024K (x6) L3 Unified 8448K (x1) Load Average: 2.21, 1.93, 3.34 ***WARNING*** CPU scaling is enabled, the benchmark real time measurements may be noisy and will incur extra overhead. ***WARNING*** Library was built as DEBUG. Timings may be affected. ------------------------------------------------------------------------------ Benchmark Time CPU Iterations ------------------------------------------------------------------------------ BM_RunModule/process_time/real_time 218193 ns 231884 ns 3356
Notice that there are a few warnings in there (you may not see all of these). The benchmark library helpfully warns about some common issues that will affect benchmark timing. When trying to obtain real benchmark numbers, you should generally build an optimized build (-c opt
in Bazel) and disable CPU scaling.
$ bazel build -c opt //iree/tools:iree-benchmark-module
Another thing to consider is that depending on where you are running the benchmark you might want to avoid additional programs running at the same time. Bazel itself runs a server even when it‘s not being actively invoked that can be quite a memory hog, so we’ll instead invoke the binary directly. Use your favorite process manager (e.g. htop or pkill on Linux) to kill heavy-weight programs such as Chrome and Bazel.
Now we'll actually invoke the binary:
$ ./bazel-bin/iree/tools/iree-benchmark-module \ --input_file=/tmp/module.fb \ --driver=vmla \ --entry_function=abs \ --inputs="i32=-2"
Run on (12 X 4500 MHz CPU s) CPU Caches: L1 Data 32K (x6) L1 Instruction 32K (x6) L2 Unified 1024K (x6) L3 Unified 8448K (x1) Load Average: 1.49, 3.42, 3.49 ------------------------------------------------------------------------------ Benchmark Time CPU Iterations ------------------------------------------------------------------------------ BM_RunModule/process_time/real_time 11416 ns 14202 ns 61654
Remember to restore CPU scaling when you're done.
We also benchmark the performance of individual parts (more of these coming soon) of the IREE system in isolation. These measurements provide more targeted metrics to direct development work.
TODO(benvanik): Talk about VM Benchmarks
IREE is instrumented with the C++ bindings from the Google Web Tracing Framework.
TODO(benvanik): Talk about WTF
When benchmarking, it‘s important to consider the configuration of your CPUs. Most notably, CPU scaling can give variable results, so you’ll usually want to disable it. This can get pretty complex, but the most basic thing to do is to run all CPUs at maximum frequency.
Google benchmark provides some instructions:
Turn off CPU scaling before benchmarking:
$ sudo cpupower frequency-set --governor performance
Restore CPU scaling after benchmarking:
$ sudo cpupower frequency-set --governor powersave
Android doesn't give us quite as nice tooling, but the principle is basically the same. You will likely need to be root (use su
or adb root
). The commands will depend on your exact phone and number of cores. First play around and make sure you understand what everything means.
Some useful commands:
$ cat /proc/cpuinfo $ cat /sys/devices/system/cpu/possible $ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors $ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor $ cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies $ cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq $ cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq $ cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq $ cat /sys/devices/system/cpu/cpu0/cpufreq/affected_cpus $ cat /sys/devices/system/cpu/cpu0/online
One common case is if you want to set the quota governor of 8 CPUs for performance. Make sure to check their current settings first so you can put them back when you're done.
$ for i in `seq 0 7`; do cat "/sys/devices/system/cpu/cpu${i?}/cpufreq/scaling_governor"; done
$ for i in `seq 0 7`; do echo performance > "/sys/devices/system/cpu/cpu${i?}/cpufreq/scaling_governor"; done
and then double check that all CPUs are now at their maximum frequency
$ for i in `seq 0 7`; do paste "/sys/devices/system/cpu/cpu${i?}/cpufreq/cpuinfo_cur_freq" "/sys/devices/system/cpu/cpu${i?}/cpufreq/cpuinfo_max_freq"; done
TODO(scotttodd): Windows instructions