From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qv1-xf36.google.com (mail-qv1-xf36.google.com [IPv6:2607:f8b0:4864:20::f36]) by sourceware.org (Postfix) with ESMTPS id 403EF3857813 for ; Mon, 1 Nov 2021 13:33:40 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 403EF3857813 Received: by mail-qv1-xf36.google.com with SMTP id bu11so3302668qvb.0 for ; Mon, 01 Nov 2021 06:33:40 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=SD6l+FaxA670j4y+Iu64J4Aivg0N/q90wPL9ff9TLoY=; b=TwMC3GrRLBuluHb0t1M7Im+N5weOayiOr6YDt1Lt6wZO70jBEGeVKl4FCrd6twlP5Y Mp6L6ABpIT0Jk+gWfB3z/bXq0Z7Bdf3pYuQzEfcNPhCnXVkKSZyQb+dvf8FxynG4C++6 CHQmDkvoX9239FDfiq4MXc0OA8boCYJqwzjHQpRSq3Mz6rtoPYZ6801C8PlReE9M8bOK r8htgoiU6zqZUDdeJkTVPqxUWz2LLqtjI30vUSMMOB8ovY1cXLbjgc0XswiubMJqhuMD BaqvOfBdQPEgiHHVPg9C8t31uZNf5CASWEa9a9T0W6kNLBPtLOEJbpA0NQcENoJ2FutU +QDQ== X-Gm-Message-State: AOAM5317IqQ3xV2xO4Julnw7nfirWZW03aWiRtG1uOBLMjcsaCMcTQJw IPf/CTXPMffKyThGTXqmtPgSb/MBUUV+tOUtZGgVX6AOT4M= X-Google-Smtp-Source: ABdhPJxuV87vOz7t0WcRRJKy5UXZul2brDNVunl+aTK9CnP+W/4WCVtlzc99W/iNZmSmLECmWdnimaif73ug1pGMPnk= X-Received: by 2002:a05:6214:2a45:: with SMTP id jf5mr14747412qvb.15.1635773619920; Mon, 01 Nov 2021 06:33:39 -0700 (PDT) MIME-Version: 1.0 References: <20211029204431.61718-1-skpgkp2@gmail.com> In-Reply-To: <20211029204431.61718-1-skpgkp2@gmail.com> From: Sunil Pandey Date: Mon, 1 Nov 2021 06:33:04 -0700 Message-ID: Subject: Re: [PATCH 0/4] benchtests: Add atan2f, expm1f, log1pf and tanf to bench-math To: Sunil K Pandey Cc: GNU C Library X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, HK_RANDOM_ENVFROM, HK_RANDOM_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 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, 01 Nov 2021 13:33:41 -0000 Ok for trunk? On Fri, Oct 29, 2021 at 1:45 PM Sunil K Pandey via Libc-alpha < libc-alpha@sourceware.org> wrote: > Motivation for this patch is to prepare for upcoming libmvec new > functions. Float and double version of libmvec functions stays > together. > > I understand double version of input files are not correct as Joseph > mentioned in this thread. > > https://sourceware.org/pipermail/libc-alpha/2021-October/132294.html > > Float version of input file needed for libmvec and I will rerun > conversion program once double input file get fixed for these > functions. > > Float input files of these function generated from existing double > input files using following scaling formula: > > f = d * (FLT_MAX/DBL_MAX) > > Where d is input(double) and f is output(float). If scaled float value > is duplicate in new input file, nextafterf() function used to find next > float value, ensuring no duplicates. > > > Sunil K Pandey (4): > benchtests: Add atan2f function to bench-math > benchtests: Add expm1f function to bench-math > benchtests: Add log1pf function to bench-math > benchtests: Add tanf function to bench-math > > benchtests/Makefile | 4 + > benchtests/atan2f-inputs | 1005 +++++++++++ > benchtests/expm1f-inputs | 798 +++++++++ > benchtests/log1pf-inputs | 1004 +++++++++++ > benchtests/tanf-inputs | 3449 ++++++++++++++++++++++++++++++++++++++ > 5 files changed, 6260 insertions(+) > create mode 100644 benchtests/atan2f-inputs > create mode 100644 benchtests/expm1f-inputs > create mode 100644 benchtests/log1pf-inputs > create mode 100644 benchtests/tanf-inputs > > -- > 2.31.1 > >