llvm-project
Libc mem* benchmarks
This framework has been designed to evaluate and compare relative performance of memory function implementations on a particular machine.
It relies on:
to run the benchmarks for the particularlibc.src.string.<mem_function>_benchmark
.<mem_function>
a tool to process the measurements into reports.libc-benchmark-analysis.py3
Benchmarking tool
Setup
cd llvm-projectcmake -B/tmp/build -Sllvm -DLLVM_ENABLE_PROJECTS='clang;clang-tools-extra;libc' -DCMAKE_BUILD_TYPE=Release -DLIBC_INCLUDE_BENCHMARKS=Yes -G Ninjaninja -C /tmp/build libc.src.string.<mem_function>_benchmark
Note: The machine should run in
mode. This is achieved by running:
performance
cpupower frequency-set --governor performance
Usage
The benchmark can run in two modes:
- stochastic mode returns the average time per call for a particular size distribution, this is the default,
- sweep mode returns the average time per size over a range of sizes.
Each benchmark requires the
to be set, this is a name to identify a run and provide label during analysis. If stochastic mode is being used, you must also provide
to pick one of the available MemorySizeDistribution's.
It also provides optional flags:
: repeats the benchmark more times, the analysis tool can take this into account and give confidence intervals.--num-trials
: specifies a file to write the report - or standard output if not set.--output
Stochastic mode
This is the preferred mode to use. The function parameters are randomized and the branch predictor is less likely to kick in.
/tmp/build/bin/libc.src.string.memcpy_benchmark \ --study-name="new memcpy" \ --size-distribution-name="memcpy Google A" \ --num-trials=30 \ --output=/tmp/benchmark_result.json
The
flag is mandatory and points to one of the predefined distribution.
Note: These distributions are gathered from several important binaries at Google (servers, databases, realtime and batch jobs) and reflect the importance of focusing on small sizes.
Using a profiler to observe size distributions for calls into libc functions, it was found most operations act on a small number of bytes.
Function | % of calls with size ≤ 128 | % of calls with size ≤ 1024 |
---|---|---|
memcpy | 96% | 99% |
memset | 91% | 99.9% |
memcmp1 | 99.5% | ~100% |
1 - The size refers to the size of the buffers to compare and not the number of bytes until the first difference.
Sweep mode
This mode is used to measure call latency per size for a certain range of sizes. Because it exercises the same size over and over again the branch predictor can kick in. It can still be useful to compare strength and weaknesses of particular implementations.
/tmp/build/bin/libc.src.string.memcpy_benchmark \ --study-name="new memcpy" \ --sweep-mode \ --sweep-max-size=128 \ --output=/tmp/benchmark_result.json
Analysis tool
Setup
Make sure to have
,
and
setup correctly:
apt-get install python3-pippip3 install matplotlib pandas seaborn
You may need
or similar package to display the graphs.
Usage
python3 libc/benchmarks/libc-benchmark-analysis.py3 /tmp/benchmark_result.json ...
When used with multiple trials Sweep Mode data the tool displays the 95% confidence interval.
When providing with multiple reports at the same time, all the graphs from the same machine are displayed side by side to allow for comparison.
The Y-axis unit can be changed via the
flag:
displays the measured time (this is the default),time
displays the number of cycles computed from the cpu frequency,cycles
displays the number of bytes per cycle (forbytespercycle
reports only).Sweep Mode
Under the hood
To learn more about the design decisions behind the benchmarking framework, have a look at the RATIONALE.md file.