diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-04-16 17:37:24 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-06-11 15:08:13 +0530 |
commit | c1f75dc386d533806d29b7e94118363a7b50eed8 (patch) | |
tree | 38d917f7a99bf569704a09e56a0dd5b7b4475be5 /ChangeLog | |
parent | 50fd745b4dec07e8e213cf2703b5cabcfa128225 (diff) | |
download | glibc-c1f75dc386d533806d29b7e94118363a7b50eed8.zip glibc-c1f75dc386d533806d29b7e94118363a7b50eed8.tar.gz glibc-c1f75dc386d533806d29b7e94118363a7b50eed8.tar.bz2 |
Begin porting string performance tests to benchtests
This is the initial support for string function performance tests,
along with copying tests for memcpy and memcpy-ifunc as proof of
concept. The string function benchmarks perform operations at
different alignments and for different sizes and compare performance
between plain operations and the optimized string operations. Due to
this their output is incompatible with the function benchmarks where
we're interested in fastest time, throughput, etc.
In future, the correctness checks in the benchmark tests can be
removed. Same goes for the performance measurements in the
string/test-*.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,3 +1,16 @@ +2013-06-11 Siddhesh Poyarekar <siddhesh@redhat.com> + + * benchtests/Makefile: Disable parallel execution of targets. + (string-bench): Add memcpy. + (benchset): New variable to store a list of benchmark sets. + (bench-func): Renamed from bench. + (bench-set): New target. + (bench): Depend on bench-func and bench-set. + * benchtests/README: Add section on benchmark sets. + * benchtests/bench-memcpy-ifunc.c: New file. + * benchtests/bench-memcpy.c: New file. + * benchtests/bench-string.h: New file. + 2013-06-11 Andreas Schwab <schwab@suse.de> [BZ #15577] |