[mpir-devel] Limits of mpz_t size

2020-03-10 Thread Gaj Satha
Hi: Are there any limits on the size of mpz_t in MPIR (Other than availble memory)? I came to know that GNU GMP had limit of 41 billion on mpz_t sometime back (as per https://gmplib.org/list-archives/gmp-discuss/2016-July/006013.html), which they plan to remove but I don't know if it has

[mpir-devel] Automatic disk Read/Write when numbers exceed available RAM

2020-05-25 Thread Gaj Satha
The problem I have is that numbers have become so big that I can’t store them in my RAM. Is there a way I can smartly write portions of my number to the hard disk and load them when needed? Essentially what I want is that when the RAM is full, just write to the disk and load is automatically

Re: [mpir-devel] Limits of mpz_t size

2020-10-26 Thread Gaj Satha
: The limits in MPIR are the same. In order to get around the limit, you can use the mpn layer of functions. On Tue, 10 Mar 2020 at 09:56, Gaj Satha <mailto:gaj.sa...@gmail.com>> wrote: Hi: Are there any limits on the size of mpz_t in MPIR (Other than availble memory)?

[mpir-devel] Compiling the MPIR

2022-02-07 Thread Gaj Satha
Hi: I wanted to compile the latest version of MPIR, How do I do it? In version 3.0.0, I can do the following and it works: configure --prefix=/usr/local make make install But in the latest version, at https://github.com/wbhart/mpir , I do not find any configure

Re: [mpir-devel] Compiling the MPIR

2022-02-08 Thread Gaj Satha
Thank you, it worked! > On Feb 8, 2022, at 12:03 AM, Dima Pasechnik wrote: > > > > On Tue, 8 Feb 2022, 05:54 Gaj Satha, <mailto:gaj.sa...@gmail.com>> wrote: > Hi: > > I wanted to compile the latest version of MPIR, How do I do it? > > In version 3.0