From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oa1-x2a.google.com (mail-oa1-x2a.google.com [IPv6:2001:4860:4864:20::2a]) by sourceware.org (Postfix) with ESMTPS id 51D833858036 for ; Mon, 18 Apr 2022 12:02:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 51D833858036 Received: by mail-oa1-x2a.google.com with SMTP id 586e51a60fabf-e2a00f2cc8so13967214fac.4 for ; Mon, 18 Apr 2022 05:02:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=VqglRuWLfIorbsp2q998s0BO2swyPlFi6ivgf2V6Bsc=; b=VZ0QQQYJ8djLMMdjPsgpgxr80v7oGRMZy+BB36V/XmG90trTzFhfs5fmTZpCyPiNi9 BHGfxBpdbRcG22slsNpsDh+sXcyDr45eo7xc6n/2P+RrVdPImZ6Rts5e9t0zVRVEyJiM vkvMWdzAmC6oQ4X7gI22ufjWy4HfSm6ocKhCSHJ8Qzt1PDzlqJ3ovjwCnxyR9vk9Dwpu b4hVfupO7GILDf0m63UTTP7a02ABSXhYdNt3H723NgBzc5M74UHo5RL5nDAi6lEY5DnJ 0nNfLreQJLmflvp06a7lhA4Qs0uugzeAxcjIG0BCSUeq5efV7LVAh7vapMmff7K2K4CC jj9g== X-Gm-Message-State: AOAM532i+UHXqfJgUz1hnVcKOG97lq0k7H5vXtnO1z55g2w0vIDTVx0o KaYnVeBbpmHTYbpPOCrPXJ0rzXHZMR3aXA== X-Google-Smtp-Source: ABdhPJxsCbElyWpkpgIhVKDUm0m7PQ/FYgoyT3G1JIJEuBFOIipQgiqAGD6ohLyw4/MjC3brlWLmqw== X-Received: by 2002:a05:6870:658c:b0:e5:f79a:53eb with SMTP id fp12-20020a056870658c00b000e5f79a53ebmr1234454oab.77.1650283338546; Mon, 18 Apr 2022 05:02:18 -0700 (PDT) Received: from birita.. ([2804:431:c7ca:c9d0:566e:62b0:471b:674d]) by smtp.gmail.com with ESMTPSA id k124-20020aca3d82000000b002ef4c5bb9dbsm3832952oia.0.2022.04.18.05.02.17 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 18 Apr 2022 05:02:18 -0700 (PDT) From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [PATCH v2 3/8] benchtests: Add arc4random benchtest Date: Mon, 18 Apr 2022 09:01:58 -0300 Message-Id: <20220418120203.3185943-4-adhemerval.zanella@linaro.org> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220418120203.3185943-1-adhemerval.zanella@linaro.org> References: <20220418120203.3185943-1-adhemerval.zanella@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, KAM_SHORT, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Apr 2022 12:02:22 -0000 It shows both throughput (total bytes obtained in the test duration) and latecy for both arc4random and arc4random_buf with different sizes. Checked on x86_64-linux-gnu, aarch64-linux, and powerpc64le-linux-gnu. --- benchtests/Makefile | 6 +- benchtests/bench-arc4random.c | 191 ++++++++++++++++++++++++++++++++++ 2 files changed, 196 insertions(+), 1 deletion(-) create mode 100644 benchtests/bench-arc4random.c diff --git a/benchtests/Makefile b/benchtests/Makefile index 8dfca592fd..50b96dd71f 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -111,8 +111,12 @@ bench-string := \ ffsll \ # bench-string +bench-stdlib := \ + arc4random \ +# bench-stdlib + ifeq (${BENCHSET},) -bench := $(bench-math) $(bench-pthread) $(bench-string) +bench := $(bench-math) $(bench-pthread) $(bench-string) $(bench-stdlib) else bench := $(foreach B,$(filter bench-%,${BENCHSET}), ${${B}}) endif diff --git a/benchtests/bench-arc4random.c b/benchtests/bench-arc4random.c new file mode 100644 index 0000000000..3b76b4cf10 --- /dev/null +++ b/benchtests/bench-arc4random.c @@ -0,0 +1,191 @@ +/* arc4random benchmarks. + Copyright (C) 2022 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + . */ + +#include "bench-timing.h" +#include "json-lib.h" +#include +#include +#include +#include +#include +#include +#include +#include + +static volatile uint32_t r; +static volatile sig_atomic_t timer_finished; + +static void timer_callback (int unused) +{ + timer_finished = 1; +} + +static const uint32_t sizes[] = { 0, 16, 32, 48, 64, 80, 96, 112, 128 }; + +static double +bench_arc4random_throughput (void) +{ + /* Run for approximately DURATION seconds, and it does not matter who + receive the signal (so not need to mask it on main thread). */ + timer_finished = 0; + timer_t timer = support_create_timer (DURATION, 0, false, timer_callback); + + uint64_t n = 0; + + while (1) + { + r = arc4random (); + n++; + + if (timer_finished == 1) + break; + } + + support_delete_timer (timer); + + return (double) (n * sizeof (r)) / (double) DURATION; +} + +static double +bench_arc4random_latency (void) +{ + timing_t start, stop, cur; + const size_t iters = 1024; + + TIMING_NOW (start); + for (size_t i = 0; i < iters; i++) + r = arc4random (); + TIMING_NOW (stop); + + TIMING_DIFF (cur, start, stop); + + return (double) (cur) / (double) iters; +} + +static double +bench_arc4random_buf_throughput (size_t len) +{ + timer_finished = 0; + timer_t timer = support_create_timer (DURATION, 0, false, timer_callback); + + uint8_t buf[len]; + + uint64_t n = 0; + + while (1) + { + arc4random_buf (buf, len); + n++; + + if (timer_finished == 1) + break; + } + + support_delete_timer (timer); + + uint64_t total = (n * len); + return (double) (total) / (double) DURATION; +} + +static double +bench_arc4random_buf_latency (size_t len) +{ + timing_t start, stop, cur; + const size_t iters = 1024; + + uint8_t buf[len]; + + TIMING_NOW (start); + for (size_t i = 0; i < iters; i++) + arc4random_buf (buf, len); + TIMING_NOW (stop); + + TIMING_DIFF (cur, start, stop); + + return (double) (cur) / (double) iters; +} + +static void +bench_singlethread (json_ctx_t *json_ctx) +{ + json_element_object_begin (json_ctx); + + json_array_begin (json_ctx, "throughput"); + for (int i = 0; i < array_length (sizes); i++) + if (sizes[i] == 0) + json_element_double (json_ctx, bench_arc4random_throughput ()); + else + json_element_double (json_ctx, bench_arc4random_buf_throughput (sizes[i])); + json_array_end (json_ctx); + + json_array_begin (json_ctx, "latency"); + for (int i = 0; i < array_length (sizes); i++) + if (sizes[i] == 0) + json_element_double (json_ctx, bench_arc4random_latency ()); + else + json_element_double (json_ctx, bench_arc4random_buf_latency (sizes[i])); + json_array_end (json_ctx); + + json_element_object_end (json_ctx); +} + +static void +run_bench (json_ctx_t *json_ctx, const char *name, + char *const*fnames, size_t fnameslen, + void (*bench)(json_ctx_t *ctx)) +{ + json_attr_object_begin (json_ctx, name); + json_array_begin (json_ctx, "functions"); + for (int i = 0; i < fnameslen; i++) + json_element_string (json_ctx, fnames[i]); + json_array_end (json_ctx); + + json_array_begin (json_ctx, "results"); + bench (json_ctx); + json_array_end (json_ctx); + json_attr_object_end (json_ctx); +} + +static int +do_test (void) +{ + char *fnames[array_length (sizes)]; + for (int i = 0; i < array_length (sizes); i++) + if (sizes[i] == 0) + fnames[i] = xasprintf ("arc4random"); + else + fnames[i] = xasprintf ("arc4random_buf(%u)", sizes[i]); + + json_ctx_t json_ctx; + json_init (&json_ctx, 0, stdout); + + json_document_begin (&json_ctx); + json_attr_string (&json_ctx, "timing_type", TIMING_TYPE); + + run_bench (&json_ctx, "single-thread", fnames, array_length (fnames), + bench_singlethread); + + json_document_end (&json_ctx); + + for (int i = 0; i < array_length (sizes); i++) + free (fnames[i]); + + return 0; +} + +#include -- 2.32.0