public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Noah Goldstein <nwg@sourceware.org>
To: glibc-cvs@sourceware.org
Subject: [glibc] benchtests: Use json-lib in bench-strncasecmp.c
Date: Fri, 25 Mar 2022 18:18:47 +0000 (GMT)	[thread overview]
Message-ID: <20220325181847.39EB33893647@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c6853907b11e0dbe6d41b99549411e5d866f5af6

commit c6853907b11e0dbe6d41b99549411e5d866f5af6
Author: Noah Goldstein <goldstein.w.n@gmail.com>
Date:   Wed Mar 23 16:57:32 2022 -0500

    benchtests: Use json-lib in bench-strncasecmp.c
    
    Just QOL change to make parsing the output of the benchtests more
    consistent.
    Reviewed-by: H.J. Lu <hjl.tools@gmail.com>

Diff:
---
 benchtests/bench-strncasecmp.c | 113 +++++++++++++++++++++++++----------------
 1 file changed, 69 insertions(+), 44 deletions(-)

diff --git a/benchtests/bench-strncasecmp.c b/benchtests/bench-strncasecmp.c
index a9819efc73..91f49cc8d3 100644
--- a/benchtests/bench-strncasecmp.c
+++ b/benchtests/bench-strncasecmp.c
@@ -20,6 +20,7 @@
 #define TEST_MAIN
 #define TEST_NAME "strncasecmp"
 #include "bench-string.h"
+#include "json-lib.h"
 
 typedef int (*proto_t) (const char *, const char *, size_t);
 static int simple_strncasecmp (const char *, const char *, size_t);
@@ -47,8 +48,8 @@ simple_strncasecmp (const char *s1, const char *s2, size_t n)
 }
 
 static void
-do_one_test (impl_t *impl, const char *s1, const char *s2, size_t n,
-	     int exp_result)
+do_one_test (json_ctx_t *json_ctx, impl_t *impl, const char *s1,
+             const char *s2, size_t n, int exp_result)
 {
   size_t i, iters = INNER_LOOP_ITERS;
   timing_t start, stop, cur;
@@ -62,12 +63,12 @@ do_one_test (impl_t *impl, const char *s1, const char *s2, size_t n,
 
   TIMING_DIFF (cur, start, stop);
 
-  TIMING_PRINT_MEAN ((double) cur, (double) iters);
+  json_element_double (json_ctx, (double) cur / (double) iters);
 }
 
 static void
-do_test (size_t align1, size_t align2, size_t n, size_t len, int max_char,
-	 int exp_result)
+do_test (json_ctx_t *json_ctx, size_t align1, size_t align2, size_t n,
+         size_t len, int max_char, int exp_result)
 {
   size_t i;
   char *s1, *s2;
@@ -101,83 +102,107 @@ do_test (size_t align1, size_t align2, size_t n, size_t len, int max_char,
   else
     s2[len - 1] -= exp_result;
 
-  printf ("Length %4zd, alignment %2zd/%2zd:", len, align1, align2);
+  json_element_object_begin (json_ctx);
+  json_attr_uint (json_ctx, "length", len);
+  json_attr_uint (json_ctx, "n", n);
+  json_attr_uint (json_ctx, "align1", align1);
+  json_attr_uint (json_ctx, "align2", align2);
+  json_attr_uint (json_ctx, "max_char", max_char);
+  json_array_begin (json_ctx, "timings");
 
   FOR_EACH_IMPL (impl, 0)
-    do_one_test (impl, s1, s2, n, exp_result);
+    do_one_test (json_ctx, impl, s1, s2, n, exp_result);
 
-  putchar ('\n');
+  json_array_end (json_ctx);
+  json_element_object_end (json_ctx);
 }
 
 int
 test_main (void)
 {
+  json_ctx_t json_ctx;
   size_t i;
 
   test_init ();
 
-  printf ("%23s", "");
+  json_init (&json_ctx, 0, stdout);
+
+  json_document_begin (&json_ctx);
+  json_attr_string (&json_ctx, "timing_type", TIMING_TYPE);
+
+  json_attr_object_begin (&json_ctx, "functions");
+  json_attr_object_begin (&json_ctx, TEST_NAME);
+  json_attr_string (&json_ctx, "bench-variant", "");
+
+  json_array_begin (&json_ctx, "ifuncs");
   FOR_EACH_IMPL (impl, 0)
-    printf ("\t%s", impl->name);
-  putchar ('\n');
+    json_element_string (&json_ctx, impl->name);
+  json_array_end (&json_ctx);
+
+  json_array_begin (&json_ctx, "results");
 
   for (i = 1; i < 16; ++i)
     {
-      do_test (i, i, i - 1, i, 127, 0);
+      do_test (&json_ctx, i, i, i - 1, i, 127, 0);
 
-      do_test (i, i, i, i, 127, 0);
-      do_test (i, i, i, i, 127, 1);
-      do_test (i, i, i, i, 127, -1);
+      do_test (&json_ctx, i, i, i, i, 127, 0);
+      do_test (&json_ctx, i, i, i, i, 127, 1);
+      do_test (&json_ctx, i, i, i, i, 127, -1);
 
-      do_test (i, i, i + 1, i, 127, 0);
-      do_test (i, i, i + 1, i, 127, 1);
-      do_test (i, i, i + 1, i, 127, -1);
+      do_test (&json_ctx, i, i, i + 1, i, 127, 0);
+      do_test (&json_ctx, i, i, i + 1, i, 127, 1);
+      do_test (&json_ctx, i, i, i + 1, i, 127, -1);
     }
 
   for (i = 1; i < 10; ++i)
     {
-      do_test (0, 0, (2 << i) - 1, 2 << i, 127, 0);
-      do_test (0, 0, 2 << i, 2 << i, 254, 0);
-      do_test (0, 0, (2 << i) + 1, 2 << i, 127, 0);
+      do_test (&json_ctx, 0, 0, (2 << i) - 1, 2 << i, 127, 0);
+      do_test (&json_ctx, 0, 0, 2 << i, 2 << i, 254, 0);
+      do_test (&json_ctx, 0, 0, (2 << i) + 1, 2 << i, 127, 0);
 
-      do_test (0, 0, (2 << i) + 1, 2 << i, 254, 0);
+      do_test (&json_ctx, 0, 0, (2 << i) + 1, 2 << i, 254, 0);
 
-      do_test (0, 0, 2 << i, 2 << i, 127, 1);
-      do_test (0, 0, (2 << i) + 10, 2 << i, 127, 1);
+      do_test (&json_ctx, 0, 0, 2 << i, 2 << i, 127, 1);
+      do_test (&json_ctx, 0, 0, (2 << i) + 10, 2 << i, 127, 1);
 
-      do_test (0, 0, 2 << i, 2 << i, 254, 1);
-      do_test (0, 0, (2 << i) + 10, 2 << i, 254, 1);
+      do_test (&json_ctx, 0, 0, 2 << i, 2 << i, 254, 1);
+      do_test (&json_ctx, 0, 0, (2 << i) + 10, 2 << i, 254, 1);
 
-      do_test (0, 0, 2 << i, 2 << i, 127, -1);
-      do_test (0, 0, (2 << i) + 10, 2 << i, 127, -1);
+      do_test (&json_ctx, 0, 0, 2 << i, 2 << i, 127, -1);
+      do_test (&json_ctx, 0, 0, (2 << i) + 10, 2 << i, 127, -1);
 
-      do_test (0, 0, 2 << i, 2 << i, 254, -1);
-      do_test (0, 0, (2 << i) + 10, 2 << i, 254, -1);
+      do_test (&json_ctx, 0, 0, 2 << i, 2 << i, 254, -1);
+      do_test (&json_ctx, 0, 0, (2 << i) + 10, 2 << i, 254, -1);
     }
 
   for (i = 1; i < 8; ++i)
     {
-      do_test (i, 2 * i, (8 << i) - 1, 8 << i, 127, 0);
-      do_test (i, 2 * i, 8 << i, 8 << i, 127, 0);
-      do_test (i, 2 * i, (8 << i) + 100, 8 << i, 127, 0);
+      do_test (&json_ctx, i, 2 * i, (8 << i) - 1, 8 << i, 127, 0);
+      do_test (&json_ctx, i, 2 * i, 8 << i, 8 << i, 127, 0);
+      do_test (&json_ctx, i, 2 * i, (8 << i) + 100, 8 << i, 127, 0);
 
-      do_test (2 * i, i, (8 << i) - 1, 8 << i, 254, 0);
-      do_test (2 * i, i, 8 << i, 8 << i, 254, 0);
-      do_test (2 * i, i, (8 << i) + 100, 8 << i, 254, 0);
+      do_test (&json_ctx, 2 * i, i, (8 << i) - 1, 8 << i, 254, 0);
+      do_test (&json_ctx, 2 * i, i, 8 << i, 8 << i, 254, 0);
+      do_test (&json_ctx, 2 * i, i, (8 << i) + 100, 8 << i, 254, 0);
 
-      do_test (i, 2 * i, 8 << i, 8 << i, 127, 1);
-      do_test (i, 2 * i, (8 << i) + 100, 8 << i, 127, 1);
+      do_test (&json_ctx, i, 2 * i, 8 << i, 8 << i, 127, 1);
+      do_test (&json_ctx, i, 2 * i, (8 << i) + 100, 8 << i, 127, 1);
 
-      do_test (2 * i, i, 8 << i, 8 << i, 254, 1);
-      do_test (2 * i, i, (8 << i) + 100, 8 << i, 254, 1);
+      do_test (&json_ctx, 2 * i, i, 8 << i, 8 << i, 254, 1);
+      do_test (&json_ctx, 2 * i, i, (8 << i) + 100, 8 << i, 254, 1);
 
-      do_test (i, 2 * i, 8 << i, 8 << i, 127, -1);
-      do_test (i, 2 * i, (8 << i) + 100, 8 << i, 127, -1);
+      do_test (&json_ctx, i, 2 * i, 8 << i, 8 << i, 127, -1);
+      do_test (&json_ctx, i, 2 * i, (8 << i) + 100, 8 << i, 127, -1);
 
-      do_test (2 * i, i, 8 << i, 8 << i, 254, -1);
-      do_test (2 * i, i, (8 << i) + 100, 8 << i, 254, -1);
+      do_test (&json_ctx, 2 * i, i, 8 << i, 8 << i, 254, -1);
+      do_test (&json_ctx, 2 * i, i, (8 << i) + 100, 8 << i, 254, -1);
     }
 
+  json_array_end (&json_ctx);
+  json_attr_object_end (&json_ctx);
+  json_attr_object_end (&json_ctx);
+  json_document_end (&json_ctx);
+
   return ret;
 }


                 reply	other threads:[~2022-03-25 18:18 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220325181847.39EB33893647@sourceware.org \
    --to=nwg@sourceware.org \
    --cc=glibc-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).