From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf1-x42f.google.com (mail-pf1-x42f.google.com [IPv6:2607:f8b0:4864:20::42f]) by sourceware.org (Postfix) with ESMTPS id F1B333858425 for ; Sun, 6 Feb 2022 16:39:46 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org F1B333858425 Received: by mail-pf1-x42f.google.com with SMTP id a8so9626329pfa.6 for ; Sun, 06 Feb 2022 08:39:46 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=IP3SYjyyTja8Rdh7aSMil8XnQt1La+OHfmf7dsXDdw4=; b=a4W+Ph4t8oEYgpLRvaS39egxcQiqWkvxuWxzitGhvO9M+/3KJQIE0vBMaEQP+lEwJ6 G9RiGKifxhHuiaKyxGooWEayhRnRbfW8wa1IRDuT6+r+owuTWgLLwB41SkFUzgdSlyCs U20sPa1+k6hhhqfi0eUovoYrUg3r+rvLRIUmK8fL/yZnF+GCBfHxnvLipzF50HeL/vps MxSg3rquy0PqDcf30e4HjEog7D9XUKIiCb+YzmKL2QZZkA1mCdAZhx0m5HJKOSK1tEkX RlIdruA3gRvR79LqXs1DATwK9WFZMsgwK3ZHDZQA9yjFfNWi1MEsmb4aUPZy9jQ/mv5D +NhQ== X-Gm-Message-State: AOAM533Kspmt2kXws56Eg0LGMFjQy3ys6HIJ+oDhibSvdlA0DWeJA89E 913eI58Iph1W6d3ouX8z55efMWBgx4o= X-Google-Smtp-Source: ABdhPJzIMJEIQoPav5r9dHLGvuL7CTSuFMV6G/IdJviQmFOPp8lURVbcLjOM8IE5Zffdief7lniVcQ== X-Received: by 2002:a63:36c8:: with SMTP id d191mr6404137pga.377.1644165586116; Sun, 06 Feb 2022 08:39:46 -0800 (PST) Received: from gnu-tgl-3.localdomain ([172.58.38.240]) by smtp.gmail.com with ESMTPSA id m23sm8762005pff.201.2022.02.06.08.39.45 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 06 Feb 2022 08:39:45 -0800 (PST) Received: by gnu-tgl-3.localdomain (Postfix, from userid 1000) id 1DBA2C0839; Sun, 6 Feb 2022 08:39:45 -0800 (PST) Date: Sun, 6 Feb 2022 08:39:45 -0800 From: "H.J. Lu" To: Sunil K Pandey Cc: libc-alpha@sourceware.org Subject: Re: [PATCH 18/20] x86-64: Add vector asinh/asinhf to libmvec microbenchmark Message-ID: References: <20220204062559.222989-1-skpgkp2@gmail.com> <20220204062559.222989-19-skpgkp2@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220204062559.222989-19-skpgkp2@gmail.com> X-Spam-Status: No, score=-3023.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, 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: Sun, 06 Feb 2022 16:39:48 -0000 On Thu, Feb 03, 2022 at 10:25:57PM -0800, Sunil K Pandey wrote: > Add vector asinh/asinhf and input files to libmvec microbenchmark. > > libmvec-asinh-inputs: > 90% Normal random distribution > range: (-DBL_MAX, DBL_MAX) > mean: 0.0 > sigma: 2.0 > 10% uniform random distribution in range (-1.0e6, 1.0e6) > > libmvec-asinhf-inputs: > 90% Normal random distribution > range: (-FLT_MAX, FLT_MAX) > mean: 0.0f > sigma: 2.0f > 10% uniform random distribution in range (-1.0e6f, 1.0e6f) > --- > sysdeps/x86_64/fpu/Makeconfig | 1 + > sysdeps/x86_64/fpu/libmvec-asinh-inputs | 4100 ++++++++++++++++++++++ > sysdeps/x86_64/fpu/libmvec-asinhf-inputs | 4100 ++++++++++++++++++++++ > 3 files changed, 8201 insertions(+) > create mode 100644 sysdeps/x86_64/fpu/libmvec-asinh-inputs > create mode 100644 sysdeps/x86_64/fpu/libmvec-asinhf-inputs > LGTM. Reviewed-by: H.J. Lu Thanks. H.J.