aboutsummaryrefslogtreecommitdiff
path: root/benchtests/bench-math-inlines.c
diff options
context:
space:
mode:
authorWilco Dijkstra <wdijkstr@arm.com>2019-06-28 13:42:36 +0100
committerWilco Dijkstra <wdijkstr@arm.com>2019-06-28 13:42:36 +0100
commitd064591266634a8ff55b645181167b8626c793c9 (patch)
tree8a4ed4f134ff22e278704b6722f726f7705cd2ad /benchtests/bench-math-inlines.c
parentafe23eb0f1942cb033ffdf3a338f669be4683f6c (diff)
downloadglibc-d064591266634a8ff55b645181167b8626c793c9.tar
glibc-d064591266634a8ff55b645181167b8626c793c9.tar.gz
glibc-d064591266634a8ff55b645181167b8626c793c9.tar.bz2
glibc-d064591266634a8ff55b645181167b8626c793c9.zip
Further improve string bench timing
Further improve the timings of the string benchmarks. Ensure most take between 1 and 4 seconds to improve accuracy. Overall time taken increases by 35%. Tested on AArch64. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org> * benchtests/bench-math-inlines.c: Increase iterations. * benchtests/bench-memcmp.c: Likewise. * benchtests/bench-rawmemchr.c: Likewise. * benchtests/bench-strcmp.c: Likewise. * benchtests/bench-strcpy_chk.c: Likewise. * benchtests/bench-string.h (INNER_LOOP_ITERS8): Add define. (INNER_LOOP_ITERS_MEDIUM): Increase iterations. (INNER_LOOP_ITERS_SMALL): Likewise. * benchtests/bench-strncat.c: Increase iterations. * benchtests/bench-strncmp.c: Increase iterations. * benchtests/bench-strncpy.c: Reduce iterations for wide strings. * benchtests/bench-strrchr.c: Increase iterations. * benchtests/bench-strstr.c: Keep iterations unchanged. * benchtests/bench-strtod.c: Increase iterations.
Diffstat (limited to 'benchtests/bench-math-inlines.c')
-rw-r--r--benchtests/bench-math-inlines.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchtests/bench-math-inlines.c b/benchtests/bench-math-inlines.c
index aed85ca988..37331bc662 100644
--- a/benchtests/bench-math-inlines.c
+++ b/benchtests/bench-math-inlines.c
@@ -220,7 +220,7 @@ static void
do_one_test (json_ctx_t *json_ctx, proto_t test_fn, volatile double *arr,
size_t len, const char *testname)
{
- size_t iters = 500;
+ size_t iters = 2048;
timing_t start, stop, cur;
json_attr_object_begin (json_ctx, testname);