benchtests: Add malloc microbenchmark
authorWill Newton <will.newton@linaro.org>
Wed, 11 Sep 2013 14:47:12 +0000 (15:47 +0100)
committerWill Newton <will.newton@linaro.org>
Wed, 5 Nov 2014 14:13:00 +0000 (14:13 +0000)
commitb01ee67cb5860d70e5a88af3c25b44d1ecaf0579
treed321a77c0c5f62eb965785a608622d6149edf9fb
parentbe9d4ccc7fe62751db1a5fdcb31958561dbbda9a
benchtests: Add malloc microbenchmark

Add a microbenchmark for measuring malloc and free performance with
varying numbers of threads. The benchmark allocates and frees buffers
of random sizes in a random order and measures the overall execution
time and RSS. Variants of the benchmark are run with 1, 8, 16 and
32 threads.

The random block sizes used follow an inverse square distribution
which is intended to mimic the behaviour of real applications which
tend to allocate many more small blocks than large ones.

ChangeLog:

2014-11-05  Will Newton  <will.newton@linaro.org>

* benchtests/Makefile: (bench-malloc): Add malloc thread
scalability benchmark.
* benchtests/bench-malloc-threads.c: New file.
ChangeLog
benchtests/Makefile
benchtests/bench-malloc-thread.c [new file with mode: 0644]