From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,ab436e97ff76821f X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.236.133.242 with SMTP id q78mr12623625yhi.11.1343910084945; Thu, 02 Aug 2012 05:21:24 -0700 (PDT) MIME-Version: 1.0 Path: a15ni8268654qag.0!nntp.google.com!border1.nntp.dca.giganews.com!border4.nntp.dca.giganews.com!border2.nntp.dca.giganews.com!nntp.giganews.com!newspeer1.nac.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!goblin3!goblin.stu.neva.ru!gegeweb.org!aioe.org!.POSTED!not-for-mail From: glen herrmannsfeldt Newsgroups: comp.lang.ada,comp.lang.pl1 Subject: Re: Does Ada need elemental functions to make it suitable for scientific work? Date: Sun, 29 Jul 2012 20:59:40 +0000 (UTC) Organization: Aioe.org NNTP Server Message-ID: References: <18c77859-480c-41f5-bb1c-df7ad067f4f3@googlegroups.com> <637de084-0e71-4077-a1c5-fc4200cad3cf@googlegroups.com> <6581ef3f-3e2c-4eeb-9a3f-eded557239d5@qk10g2000pbc.googlegroups.com> NNTP-Posting-Host: H0vc4U5LIRkRHNPyGCs2dA.user.speranza.aioe.org X-Complaints-To: abuse@aioe.org User-Agent: tin/1.9.6-20100522 ("Lochruan") (UNIX) (Linux/2.6.32-5-amd64 (x86_64)) X-Notice: Filtered by postfilter v. 0.8.2 Date: 2012-07-29T20:59:40+00:00 List-Id: In comp.lang.pl1 Simon Wright wrote: (snip) > ix86's have 80-bit floats (GNAT's Long_Long_Float); what other > commonly-available extended hardware precisions are there? IBM S/370 and successors (now z/Architecture), and VAX have a 128 bit floating point type. The hardware instructions might be done by software emulation for VAX. For S/370, DXR (divide) was done in software, but sometime in ESA/390 was added to the architecture. >> Which advantage gets lost when external numeric libraries are used. > I believe that BLAS & possibly LAPACK can be built for extended > precision. But (usually) aren't. Many routines have to be modified for higher precision, such as more coefficients for polynomial expansions. It can be done, but often isn't. -- glen