search for: gmplib

Displaying 9 results from an estimated 9 matches for "gmplib".

Did you mean: implib
2014 Apr 23
3
error al instalar paquete
...========================================= downloaded 320 Kb * installing *source* package ‘gmp’ ... ** package ‘gmp’ successfully unpacked and MD5 sums checked creating cache ./config.cache checking for __gmpz_ui_sub in -lgmp... no configure: error: GNU MP not found, or not 4.1.4 or up, see http://gmplib.org ERROR: configuration failed for package ‘gmp’ * removing ‘/home/milagros/R/x86_64-pc-linux-gnu-library/3.1/gmp’ Warning in install.packages : installation of package ‘gmp’ had non-zero exit status ERROR: dependency ‘gmp’ is not available for package ‘dplR’ * removing ‘/home/milagros/R/x86_64-...
2014 Dec 02
2
Bundling system dependencies in binary packages
...rigger this without having to modify Makevars to produce the static linked packages? The Writing R Extensions manual section on binary packages doesn't mention this and I've tried extensive Googling without joy. So in a nut shell, I'm looking to bundle a binary version of GMP (https://gmplib.org) and FLINT (http://flintlib.org) into my package for Windows/Mac users who can't/won't compile the libraries and which I can distribute independently of CRAN, but without having to do so in a manual/hacky way by tweaking Makevars each time, or modifying the tgz/zip produced by R. Hope...
2016 Sep 07
1
How to install gmp in R on fedora
Hello. I have installed R with dnf. Also I have installed gmp and gmp-devel with dnf (I think gmp was already installed). In R I did > install.packages('Rmpfr') But then I get configure: error: GNU MP not found, or not 4.1.4 or up, see http://gmplib.org What must I do? [[alternative HTML version deleted]]
2020 May 21
2
on division of __int128 bit integer
Hi Team, I observer that division of __int128 bit is very heavy operation. It internally call a routine '__udivti3', which internally call ' __udivmodti4'. Due to it the overall performance is much much slower (almost 15 time slower than if I do it via a combination of 64-bit or microsoft '_udiv128'). Also what to know if I can directly call below routine directly from
2015 May 22
4
Weak DH primes and openssh
On Fri 2015-05-22 00:06:29 -0400, Darren Tucker wrote: > On Thu, May 21, 2015 at 11:26 PM, Matthew Vernon <matthew at debian.org> wrote: >> >> You will be aware of https://weakdh.org/ by now, I presume; the >> take-home seems to be that 1024-bit DH primes might well be too weak. >> I'm wondering what (if anything!) you propose to do about this issue, >>
2014 Dec 03
0
Bundling system dependencies in binary packages
...the static libraries without throwing any errors. Thank you very much -- I wasn't at all aware PIC was needed for static code on OS X! I'd assumed I was missing something much more elaborate. >> So in a nut shell, I'm looking to bundle a binary version of GMP >> (https://gmplib.org) and FLINT (http://flintlib.org) into my package >> for Windows/Mac users who can't/won't compile the libraries and which >> I can distribute independently of CRAN, but without having to do so in >> a manual/hacky way by tweaking Makevars each time, or modifying the &g...
2019 Aug 28
4
[Bug 1363] New: nft: invalid octals silently parsed as zero
https://bugzilla.netfilter.org/show_bug.cgi?id=1363 Bug ID: 1363 Summary: nft: invalid octals silently parsed as zero Product: nftables Version: unspecified Hardware: x86_64 OS: Debian GNU/Linux Status: NEW Severity: normal Priority: P5 Component: nft Assignee: pablo at
2015 May 27
3
Weak DH primes and openssh
...ult >> >> 25-round M-R test in gmp: >> >>> k = gmpy2.mpz(3825123056546413051) >> >>> gmpy2.is_prime(k) >> >> False > > I'm quite sure that this means that gmpy doesn't use pure M-R with randomly > selected witnesses. https://gmplib.org/manual/Prime-Testing-Algorithm.html#Prime-Testing-Algorithm suggests is chooses a random base, but it also runs some non-M-R tests before executing M-R: http://sources.debian.net/src/gmp/2:6.0.0%2Bdfsg-6/mpz/pprime_p.c/ GMP's M-R tests are using randomly selected witnesses, though: ht...
2015 May 26
8
Weak DH primes and openssh
On Tue 2015-05-26 14:02:07 -0400, Hubert Kario wrote: > On Tuesday 26 May 2015 13:43:13 Daniel Kahn Gillmor wrote: >> On Tue 2015-05-26 12:57:05 -0400, Hubert Kario wrote: >> > creating composites that will pass even 100000 rounds of Miller-Rabin is >> > relatively simple.... >> > (assuming the values for M-R tests are picked randomly) >> >> Can you