From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32503 invoked by alias); 24 Jul 2013 03:34:22 -0000 Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org Received: (qmail 32477 invoked by uid 89); 24 Jul 2013 03:34:21 -0000 X-Spam-SWARE-Status: No, score=-4.5 required=5.0 tests=AWL,BAYES_40,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RDNS_NONE,SPF_HELO_PASS,SPF_PASS autolearn=no version=3.3.1 Received: from Unknown (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 24 Jul 2013 03:34:21 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6O3YDGB006562 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 23 Jul 2013 23:34:14 -0400 Received: from [10.3.113.36] (ovpn-113-36.phx2.redhat.com [10.3.113.36]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r6O3YDWl012443 for ; Tue, 23 Jul 2013 23:34:13 -0400 Message-ID: <51EF4B35.6060901@redhat.com> Date: Wed, 24 Jul 2013 03:34:00 -0000 From: "Carlos O'Donell" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130625 Thunderbird/17.0.7 MIME-Version: 1.0 To: "libc-ports@sourceware.org" Subject: [COMMITTED] hppa: Update libm-test-ulps. Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-SW-Source: 2013-07/txt/msg00033.txt.bz2 This updated hppa's ulps for 2.18. An ulp of 1-2 for gamma seems fine, as does 1 ulp for pow. Odd to see higher ulp for float in gamma than for double. I still need to fix the long double vs. double issues for hppa, and perhaps switch the ABI at some point. 2013-07-23 Carlos O'Donell * sysdeps/hppa/fpu/libm-test-ulps: Regenerate. diff --git a/ports/sysdeps/hppa/fpu/libm-test-ulps b/ports/sysdeps/hppa/fpu/libm-test-ulps index 0b64644..68d7535 100644 --- a/ports/sysdeps/hppa/fpu/libm-test-ulps +++ b/ports/sysdeps/hppa/fpu/libm-test-ulps @@ -3641,6 +3641,18 @@ Test "expm1 (500.0)": double: 1 idouble: 1 +# gamma +Test "gamma (0.7)": +double: 1 +float: 1 +idouble: 1 +ifloat: 1 +Test "gamma (1.2)": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + # hypot Test "hypot (-0.7, -12.4)": float: 1 @@ -3907,6 +3919,23 @@ Test "pow (0x1.000002p0, 0x1p24)": float: 1 ifloat: 1 +# pow10 +Test "pow10 (-1)": +double: 1 +idouble: 1 +Test "pow10 (-305)": +double: 1 +idouble: 1 +Test "pow10 (-36)": +double: 1 +idouble: 1 +Test "pow10 (3)": +double: 1 +idouble: 1 +Test "pow10 (36)": +double: 1 +idouble: 1 + # pow_downward Test "pow_downward (1.5, 1.03125)": float: 1 @@ -5034,6 +5063,12 @@ ifloat: 1 ildouble: 1 ldouble: 1 +Function: "gamma": +double: 1 +float: 2 +idouble: 1 +ifloat: 2 + Function: "hypot": float: 1 ifloat: 1 @@ -5086,6 +5121,10 @@ Function: "pow": float: 1 ifloat: 1 +Function: "pow10": +double: 1 +idouble: 1 + Function: "pow_downward": float: 1 ifloat: 1 --- Cheers, Carlos.