delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2015/11/07/19:56:13

X-Recipient: archive-cygwin AT delorie DOT com
DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id
:list-unsubscribe:list-subscribe:list-archive:list-post
:list-help:sender:reply-to:from:to:subject:date:message-id
:mime-version:content-type:content-transfer-encoding; q=dns; s=
default; b=P3unQXVT9w0GBcAEn2v9ISkdPVPqM1mcfIHnl3KgLEMSqjSRNgZgP
m4gfQ0FmHK2O9Or5fM4l67PeySkbJM0qk0fdYfbVo/ca3yQnv+f3gzQtc7GpoHFr
bRI61uxJkk1wTyGk5sWYL4iMfilbQJJn78tnB4Qj2ydLvXn9yn09WY=
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:reply-to:from:to:subject:date:message-id
:mime-version:content-type:content-transfer-encoding; s=default;
bh=kci3vUgmIPAQC/SNasEQi0xlRMo=; b=TmZg3OtpfnL3xGeOYsgELG9TXIfe
Ag+UWbuUepDni1Wg75CYNfRAo30kH3tHGtmhnv+vWO/bRVVXQUA5ZKqNHpqlixsr
Ca99t5T4beWlbx7g4zxt3UccrG2GLDPNa7b77DYPeu1gKPzrK0ZcGd+ZoC9M1/Vp
4INWovpjMRYpJNc=
Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner AT cygwin DOT com
Mail-Followup-To: cygwin AT cygwin DOT com
Delivered-To: mailing list cygwin AT cygwin DOT com
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-HELO: localhost.localdomain
Reply-To: cygwin AT cygwin DOT com
Authentication-Results: sourceware.org; auth=none
X-Virus-Found: No
X-Spam-SWARE-Status: No, score=0.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,RCVD_IN_JMF_BL,SPF_PASS,UNSUBSCRIBE_BODY autolearn=no version=3.3.2
X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-15.arcor-online.net 3ntYgY5fr3zB64N
From: Achim Gratz <Stromeko AT nexgo DOT de>
To: cygwin AT cygwin DOT com
Subject: [ANNOUNCEMENT] Updated: gmp-6.1.0-1
Date: Sat, 07 Nov 2015 23:49:45 +0100
Message-Id: <announce.87a8qpctme.fsf@Rainer.invalid>
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux)
MIME-Version: 1.0
X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id tA80u8nr018232

GNU Multiple Precision Arithmetic Library
=========================================

GMP is a free library for arbitrary precision arithmetic, operating on
signed integers, rational numbers, and floating point numbers. There is
no practical limit to the precision except the ones implied by the
available memory in the machine GMP runs on. GMP has a rich set of
functions, and the functions have a regular interface.

Version 6.1.0 is an upstream release fully binary and ABI compatible
with the 6.0.0 and 5.x versions.

--8<---------------cut here---------------start------------->8---
GMP 6.1.0 release announcement

BUGS FIXED

    The public function mpn_com is now correctly declared in gmp.h.
    
    Healed possible failures of mpn_sec_sqr for non-cryptographic sizes
    for some obsolete CPUs.
    
    The option --disable-assembly now disables all inlined asm.
    
    Fixed bug affecting mini-gmp's bitwise functions mpz_setbit,
    mpz_clrbit, and mpz_combit.
    
    Various problems related to precision for mpf have been fixed.
    
    Fixed ABI incompatible stack alignment in calls from assembly code.
    
    Fixed PIC bug in popcount affecting Intel processors using the
    32-bit ABI.
    

SPEEDUPS

    Speedup for Intel Broadwell and Skylake though assembly code making
    use of new ADX instructions.
    
    Square root is now faster when the remainder is not needed. Also the
    speed to compute the k-th root improved, for small sizes.
    
    Improved arm64 support.


FEATURES

    New C++ functions gcd and lcm for mpz_class.
    
    New public mpn functions mpn_divexact_1, mpn_zero_p, and
    mpn_cnd_swap.
    
    New public mpq_cmp_z function, to efficiently compare rationals with
    integers.
    
    Support for Darwin in all x86 code, thereby enabling fat builds on
    Darwin.
    
    Support for more 32-bit arm processors.
    
    Support for compilation with clang/llvm on more platforms. Caution:
    GMP triggers mis-compilation bugs in clang for many platforms, such
    as arm, x86 (32-bit and 64-bit), powerpc, mips.
    
    Support for AVX-less modern x86 CPUs. (Such support might be missing
    either because the CPU vendor chose to disable AVX, or because the
    running kernel lacks AVX context switch support.)
    
    Stack usage trimmed; we believe 512 KiB is now sufficient for any
    GMP call, irrespective of operand size.
    
    Support for NetBSD under Xen; we switch off AVX unconditionally
    under NetBSD since a bug in NetBSD makes AVX fail under Xen.


MISC

    We now use manufacturers' code names for x86 CPUs, e.g., "haswell"
    instead of names derived from the commercial brands.
    
    Small improvements and better coverage for the test suite.
    
    The various FreeBSD problems listed for 6.0.0 affect this release
    too.
    
    Tuned values for FFT multiplications are provided for larger number
    on many platforms.
    


This release would not have been possible without the continuous work of
improvement, revision and refinement by the whole GMP team: Torbjörn
Granlund, Niels Möller, Marco Bodrato, and Marc Glisse.

Please see the GMP manual for a complete list of GMP contributors.
--8<---------------cut here---------------end--------------->8---


-- 
              *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe from the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there. It will be in the format:

cygwin-announce-unsubscribe-you=yourdomain DOT com AT cygwin DOT com

If you need more information on unsubscribing, start reading here:

http://sourceware.org/lists.html#unsubscribe-simple

Please read *all* of the information on unsubscribing that is available
starting at this URL.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019