From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8277 invoked by alias); 22 Mar 2012 11:01:28 -0000 Received: (qmail 8254 invoked by uid 22791); 22 Mar 2012 11:01:26 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from hagrid.ecoscentric.com (HELO mail.ecoscentric.com) (212.13.207.197) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 22 Mar 2012 11:01:13 +0000 Received: from localhost (hagrid.ecoscentric.com [127.0.0.1]) by mail.ecoscentric.com (Postfix) with ESMTP id 164B02FB082D for ; Thu, 22 Mar 2012 11:01:12 +0000 (GMT) Received: from mail.ecoscentric.com ([127.0.0.1]) by localhost (hagrid.ecoscentric.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RKJJt1ANR-Ja; Thu, 22 Mar 2012 11:01:11 +0000 (GMT) From: bugzilla-daemon@bugs.ecos.sourceware.org To: ecos-patches@ecos.sourceware.org Subject: [Bug 1001539] Single precision floating point math library X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: eCos X-Bugzilla-Component: Patches and contributions X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: ilijak@siva.com.mk X-Bugzilla-Status: NEW X-Bugzilla-Priority: low X-Bugzilla-Assigned-To: unassigned@bugs.ecos.sourceware.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: In-Reply-To: References: X-Bugzilla-URL: http://bugs.ecos.sourceware.org/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Thu, 22 Mar 2012 11:01:00 -0000 Message-Id: <20120322110110.C1F692F78009@mail.ecoscentric.com> Mailing-List: contact ecos-patches-help@ecos.sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: ecos-patches-owner@ecos.sourceware.org X-SW-Source: 2012-03/txt/msg00108.txt.bz2 Please do not reply to this email. Use the web interface provided at: http://bugs.ecos.sourceware.org/show_bug.cgi?id=1001539 --- Comment #18 from Ilija Kocho 2012-03-22 11:01:07 GMT --- (In reply to comment #12) > (In comment #9 I wrote) > > > All f-tests fail on eCos synthetic target > > My fault (that was wrong grep GDB output)! I'm sorry. Only below fails: > > FAIL: Line: 92, File: tests/vectors/sqrtf.c > FAIL: Line: 92, File: tests/vectors/log10f.c > FAIL: Line: 92, File: tests/vectors/frexpf.c > FAIL: Line: 92, File: tests/vectors/acosf.c > FAIL: Line: 92, File: tests/vectors/asinf.c > FAIL: Line: 92, File: tests/vectors/logf.c > > So, I got the same results for eCos sythetic target as for ARM7 target. > > Sergei Tests expect NaN for out-of-domain arguments, but functions return something else. For instance asinf(10) returns 0. Here is a little example: int main(void) { volatile float fla, flb, flc; volatile double dla, dlb, dlc; printf("Enter floats: "); scanf("%f %f", &fla, &flb); printf("Enter doubles: "); scanf ("%lf %lf", &dla, &dlb); flc = fla + flb; dlc = dla + dlb; printf("float: %f + %f = %f\n", fla, flb, flc); printf("double: %f + %f = %f\n", dla, dlb, dlc); flc = fla / flb; dlc = dla / dlb; printf("float: %f / %f = %f\n", fla, flb, flc); printf("double: %f / %f = %f\n", dla, dlb, dlc); flc = asinf(fla); dlc = asin(dla); printf("float: asinf(%f) = %f\n", fla, flc); printf("double: asin(%f) = %f\n", dla, dlc); return 0; } And some printouts: Enter floats: 0 0 Enter doubles: 0 0 float: 0.000000 + 0.000000 = 0.000000 double: 0.000000 + 0.000000 = 0.000000 float: 0.000000 / 0.000000 = nan double: 0.000000 / 0.000000 = nan float: asinf(0.000000) = 0.000000 double: asin(0.000000) = 0.000000 Enter floats: 10 10 Enter doubles: 10 10 float: 10.000000 + 10.000000 = 20.000000 double: 10.000000 + 10.000000 = 20.000000 float: 10.000000 / 10.000000 = 1.000000 double: 10.000000 / 10.000000 = 1.000000 float: asinf(10.000000) = 0.000000 double: asin(10.000000) = 0.000000 As we can the same behavior is for double. I haven't check but I could imagine that double's tests either don't contain these cases or expect 0. I wander if this is some compatibility issue?! FYI Linux man pages say they should return NaN. Then next question: what to fix, functions or tests? Ilija -- Configure bugmail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.