From patchwork Fri Mar 21 15:53:28 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Siddhesh Poyarekar X-Patchwork-Id: 332670 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 265422C00B3 for ; Sat, 22 Mar 2014 02:52:59 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=YQ5X/I7QPLJmKsVGJa0IxtST2GUgd QjJ6IUEubaLnsizRre8DKuw/xJpecGoe/LbSEbPvSMnmCTKVvhTkVcO1wLfKepyB Cq7vWx7E7SsMd/Rtq3GVId0LAxG0AQMtkBtkYSxyHtGbNjMiWYq+AA1F02eeyaJD gFp3wW99r91fGE= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=TfgxGqFH/DL3VkDAOVRSWtxAuNs=; b=i4W SAzfoCIaZ9X+7+9f4wxfSxz6fO8WdEMoq7Q7q8NRvL+P21irJcKLaQD0QRCFaHlk oPRP/mT4+ySyLRHWWNIxBG+uWa65VRWxXn9Estode+vE6lk/zMYWJu0iy3GD8LSN FpVXDdZQy0blLhyNI6HGd4SWsP3WPlnuTXWPloKQ= Received: (qmail 6200 invoked by alias); 21 Mar 2014 15:52:52 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 6190 invoked by uid 89); 21 Mar 2014 15:52:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.8 required=5.0 tests=AWL, BAYES_00, SPF_HELO_PASS, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Date: Fri, 21 Mar 2014 21:23:28 +0530 From: Siddhesh Poyarekar To: libc-alpha@sourceware.org Subject: [PATCH][benchtests] Use inputs file for modf Message-ID: <20140321155328.GA12661@spoyarek.pnq.redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.22.1-rc1 (2013-10-16) Hi, The modf benchmark can now use the framework since the introduction of output arguments. OK to commit? Siddhesh * benchtests/bench-modf.c: Remove. * benchtests/modf-inputs: New inputs file. --- benchtests/bench-modf.c | 44 -------------------------------------------- benchtests/modf-inputs | 4 ++++ 2 files changed, 4 insertions(+), 44 deletions(-) delete mode 100644 benchtests/bench-modf.c create mode 100644 benchtests/modf-inputs diff --git a/benchtests/bench-modf.c b/benchtests/bench-modf.c deleted file mode 100644 index 407360c..0000000 --- a/benchtests/bench-modf.c +++ /dev/null @@ -1,44 +0,0 @@ -/* Copyright (C) 2013-2014 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 - . */ - -extern double modf (double, double *); - -#define CALL_BENCH_FUNC(j, i) modf (in[j].arg0, &i); - -struct args -{ - volatile double arg0; -} in[] = -{ - { 42.42 }, - { -42.42 } -}; - -#define NUM_VARIANTS 1 -#define NUM_SAMPLES(v) (sizeof (in) / sizeof (struct args)) - -static volatile double ret = 0.0; -#define BENCH_FUNC(v, j) \ -({ \ - double iptr; \ - ret = CALL_BENCH_FUNC (j, iptr); \ -}) - -#define FUNCNAME "modf" -#define VARIANT(v) FUNCNAME "()" - -#include "bench-skeleton.c" diff --git a/benchtests/modf-inputs b/benchtests/modf-inputs new file mode 100644 index 0000000..4fcc99b --- /dev/null +++ b/benchtests/modf-inputs @@ -0,0 +1,4 @@ +## includes: math.h +## args: double: +42.0 +-42.0