Tagged Questions
The GNU Multiple-Precision Library (GMP) is a mature, free library for arbitrary-precision arithmetic with support for big signed integers, rational numbers, and floating point numbers. It is distributed under the GNU LGPL and is used for cryptography applications and in computer algebra systems such as Mathematica and Maple.
23
votes
4answers
2k views
The best cross platform (portable) arbitrary precision math library
Dear ninjas / hackers / wizards,
keywords: bignum, bigint, GMP, MPFR, decNumber, BigInteger, BigDecimal, java.math.BigInteger, java.math.BigDecimal, System.Numerics.BigInteger
I'm looking for a good ...
12
votes
2answers
241 views
Optimizing x64 assembler MUL loop
I'm writing math code which needs to multiply large numbers fast. It breaks down to multiplications of an array of integers with a single integer. In C++ this looks like this (on unsigned's):
void ...
10
votes
1answer
146 views
Printing a base 4294967296 integer in base 10
I have in C++ a vector of 32 bits integers (variable size, continous memory; like a C-array), representing a number in base 4294967296. I would like to print it in base 10.
These numbers can be ...
6
votes
2answers
438 views
Large integer radix/base conversion from 10^x to 2^x
Preface
I'm learning about computer math by writing and refining my own BigInt library. So far my first incarnation stores every digit of a base 10 number in successive elements of a vector. It can ...
5
votes
1answer
214 views
Number of digits of GMP integer
Is there an easy way to determine the number of digits a GMP integer has? I know you can determine it through a log, but I was wondering if there was something built into the library that I'm missing. ...
5
votes
3answers
145 views
Some questions about a single-instance array in typedef
I was perusing some code using arbitrary-length integers using the GNU Multi-Precision (GMP) library code. The type for a MP integer is mpz_t as defined in gmp.h header file.
But, I've some ...
5
votes
3answers
238 views
avoiding abort in libgmp
I have some code that uses libgmp. At some point the user may request a factorial of a very large number. Unfortunately, this results in libgmp raising an abort signal.
For example the following ...
5
votes
2answers
388 views
How to implement long division for enormous numbers (bignums)
I'm trying to implement long division for bignums. I can't use a library like GMP unfortunately due to the limitations of embedded programming. Besides, i want the intellectual exercise of learning ...
5
votes
3answers
589 views
Bignum implementation that has efficient addition of small integers
I have been using python's native bignums for an algorithm and decided to try and speed it up by converting it to C++. When I used long longs, the C++ was about 100x faster than the python, but when I ...
5
votes
3answers
5k views
Building GMP library with Visual Studio?
Is there an easy way to build the GMP (GNU Multiple Precision Arithmetic Library, http://gmplib.org) under Windows, using Visual Studio 2005? I tried to find information about building the library ...
4
votes
1answer
138 views
Trying to calculate large numbers in Python with gmpy. Python keeps crashing?
I was recommended to use gmpy to assist with calculating large numbers efficiently. Before I was just using python and my script ran for a day or two and then ran out of memory (not sure how that ...
4
votes
12answers
1k views
In PHP, how do I generate a big pseudo-random number?
I'm looking for a way to generate a big random number with PHP, something like:
mt_rand($lower, $upper);
The closer I've seen is gmp_random() however it doesn't allow me to specify the lower and ...
3
votes
1answer
117 views
Fibonacci numbers with GMP lib
EDIT: solved. ans var needed to be set to 0 in every iteration.That was a mistake I overlooked.A mpz_set_ui(ans,0); at the beginning of each loop solves the problem.Thanks to Oli Charlesworth for his ...
3
votes
3answers
171 views
How to initialize a mpz_t in gmp with a 1024-bit number from a character string?
I want to initialize a mpz_t variable in gmp with a very large value like a 1024 bit large integer. How can I do so ? I am new to gmp. Any help would be appreciated.
3
votes
4answers
122 views
Convert uint64 to GMP/MPIR number
I am using MPIR 2.4.0 on Windows (MSVC 2010) and I was trying to add an unsigned 64bit integer to a mpz_t number. However it seems that MPIR/GMP does not support direct conversion between 64bit ...
3
votes
3answers
1k views
Factor a large number efficiently with gmp
I need to get all the prime factors of large numbers that can easily get to 1k bits.
The numbers are practically random so it shouldn't be hard.
How do I do it efficiently? I use C++ with GMP library.
...
3
votes
2answers
196 views
How to serialize the GMP mpf type?
It seems that GMP provides only string serialization of the mpf (floating point) type:
mpf_get_str(), mpf_class::get_str()
The mpz (integer) type has an additional interface for raw bytes: ...
3
votes
1answer
592 views
Extremely big integer multiplication and addition
Greetings,
I need to multiply two extremely long integer values stored in a text file (exported via GMP (MPIR, to be exact), so they can be any in any base). Now, I would usually just import these ...
3
votes
3answers
464 views
Arbitrary-precision random numbers in C: generation for Monte Carlo simulation without atmospheric noise
I know that there are other questions similar to this one, however the following question pertains to arbitrary-precision random number generation in C for use in Monte Carlo simulation.
How can we ...
3
votes
1answer
330 views
3
votes
2answers
185 views
Selection of parameters in Diffie-Hellman
maybe it's not so proper to ask this question here... anyway, I'm trying to use the gmp library for the implementation of DH, but the problem here I got is:
Once, when I was doing the tests to ...
3
votes
1answer
256 views
How do you write a bigint library / how does libgmp work?
I'm aware of a number of BigInt libraries for C on various platforms and how to use them but I'm intrigued: how do they work? How would I go about building my own library (I'm not going to try, no ...
3
votes
2answers
811 views
Gmpy documentation anywhere?
I installed gmpy-1.11rc1.win32-py2.6.exe, but can't figure out how to use it, I can see some exported functions like mpz, mpq, mpf, etc., but how do I call a function like mpz_probab_prime_p() in GNU ...
2
votes
2answers
191 views
Does anyone have a working GMP + MINGW installation?
I've spent days and days trying to install GMP library on my MINGW windows installation. I completed the installation process of both dozens of times, followed any single guide on the internet but I ...
2
votes
2answers
210 views
Restore a number from several its remainders (chinese remainder theorem)
I have a long integer number, but it is stored not in decimal form, but as set of remainders.
So, I have not the N number, but set of such remainders:
r_1 = N % 2147483743
r_2 = N % 2147483713
r_3 ...
2
votes
4answers
324 views
Compiling GDC on Windows — where to get GMP and MPFR dependencies?
I'm trying to compile GDC (v2) on Windows 7, using MinGW's MSYS.
When I get to this step:
$ ../configure --enable-languages=d --disable-shared --disable-bootstrap
I get:
checking build system ...
2
votes
2answers
594 views
Getting GMP to work with GCC 4.5.2
Blockquote
Hello,
I'm trying to make a cross compiler with the files from http://crossgcc.rts-software.org/doku.php?id=i386linuxgccformac
I'm on an intel mac (10.6.6, x86_64) i compiled: gmp, ...
2
votes
2answers
252 views
GMP Bit shift doesn't work on negative numbers
I found this function at php.net. It seems to work on positive numbers, but fails on negative ones:
function gmp_shiftr($x,$n) { // shift right
return(gmp_div($x,gmp_pow(2,$n)));
}
echo -1 ...
2
votes
1answer
87 views
Why does gmp_mod produce differerent results on different platforms?
Please consider this snippet (related to How is 13 % 64= -13)
if(extension_loaded('GMP')) {
printf("
PHP Version: %s
gmp_strval(gmp_mod('-13', '64')) = %s
...
2
votes
1answer
98 views
scala use of GMPUtil for pidigits
Rex Kerr has posted info about using GMP with scala, in particular to run the pidigits program. libjpargmp.so is generated using GmpUtil.c
My question is: where do I find GMPUtil.c? My google ...
2
votes
5answers
5k views
GCC cant find GMP, MPFR and MPC libraries
I am trying to cross-compile GCC on Mac OS 10.5.7. I used this command to configure GCC after installing GMP, MPFR, and MPC:
../gcc-4.5.0/configure --target=$i586-elf --prefix=/usr/local/cross \
...
2
votes
1answer
238 views
Using GHC, cabal with GMP installed in user-space
I have been trying to install Haskell Platform and cabal-install installed on Linux in user-space on a system that doesn't have the GNU Multi-Precision package (GMP) installed.
I managed to get ...
2
votes
1answer
508 views
GMP Vs java BIG INTEGERS,,,
Which tool is the best one for accesing large bit numbers for testing Crypto systems..either GMP library or JAVA big integers..??
in terms of speed, memory, functions, flexibility towards ...
2
votes
2answers
295 views
GMP variable's bit size
How to know the size of a declared variable in GMP??or how can we decide the size of an integer in GMP?
mpz_random(temp,1);
in manual it is given that this function allocates 1limb(=32bits for my ...
2
votes
2answers
1k views
Custom types in OpenCL kernel
Is it possible to use custom types in OpenCL kernel like gmp types (mpz_t, mpq_t, …) ?
To have something like this (this kernel doesn't build just because of #include <gmp.h>) :
#include ...
2
votes
5answers
282 views
How can I convert this C++ function from using long to this other type?
I have this original C++ function called "s":
long s(long n) {
long sum = 0;
long m;
m = (long) sqrt(n);
for (long i = 2; i < m; i++)
if ((n % i) == 0) sum += (i + (n/i));
if ...
2
votes
3answers
1k views
Adding Compile Flags in Xcode
(I'm not sure if "flag" is the word I'm looking for, but I'll explain it.)
I am trying to compile a program that uses the GMP big number library. But to be able to compile with GMP, I have to add ...
2
votes
2answers
111 views
Handling expressions in GMP
I introduced myself to the GMP library for high precision arithmetic recently. It seems easy enough to use but in my first program I am running into practical problems. How are expressions to be ...
2
votes
2answers
391 views
Calculating roots with bc_math or GMP
I'm having trouble calculating roots of rather large numbers using bc_math, example:
- pow(2, 2) // 4, power correct
- pow(4, 0.5) // 2, square root correct
- bcpow(2, 2) // 4, power ...
1
vote
2answers
49 views
How do I have C recognise libaries that haven't been installed properly?
For a C project I'm writing I need to use the GMP library, which I have untarred into my Home directory (using OpenBSD OS with bash). I'm working with others over git, so I can't change the headers to ...
1
vote
1answer
76 views
Error when configuring gmp
hope this is just a very simple question. Ok, here's what I've done: I wanted to install gmp under my Linux Ubuntu 11.10. I have both g++ and gcc on my system. So I downloaded the latest release from ...
1
vote
1answer
90 views
Printing Big Numbers in Decimal Form
Though the representations of a number are somewhat a relative aspect, we
generally use the decimal form when printing to the outer world.
I'm in a Mac OS X, and while analyzing the source of libc I ...
1
vote
1answer
70 views
Arrays(initialization) in gmp
How could one initialize and set an array at the same time?
I'm looking for something equivalent to this:
int mat[2][2]={{1,1},{1,0}};
in mpz_t.
Cheers.
1
vote
2answers
105 views
Fixed size integers with gmp…?
I've been trying for days to install GMP library under MINGW. I have been using for weeks __uint128_t with gcc under a linux64 bit environment, then ported the same program under GMP and mingw (32 bit ...
1
vote
1answer
350 views
gmp shared libraries not found
I have a very simple GMP program in C (below)
#include <stdio.h>
#include <gmp.h>
int main() {
mpf_t a, b, inter;
mpf_init(a);
mpf_init(b);
mpf_init(inter);
...
1
vote
0answers
202 views
Building GMP for iOS [closed]
I am trying to build GMP for iOS and i got this configure from someone:
./configure CC="/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2"
...
1
vote
1answer
82 views
PHP - GMP and floating point numbers?
The following code outputs 0, which isn't correct:
$r = gmp_pow(gmp_init('-1.7976931348623157'), 308);
echo gmp_strval($r);
I was under the impression that the GMP library was capable of handling ...
1
vote
1answer
290 views
How do I link libraries in Xcode 4?
I'm a complete beginner to Apple's Xcode, but I have followed the Xcode documentation and the advice of a few related questions without success.
I installed GMP to /usr/local/bin, wrote a short ...
1
vote
1answer
96 views
How do I read X file into RAM as a number in C++ in a linux environment?
I'm working on a compression program which needs to read a file into RAM as a single number and perform basic math operations and bit shifting. I've looked at gmp from GNU, but that has such poor ...
1
vote
2answers
111 views
Arbitrary precision arithmetic with GMP
I'm using the GMP library to make a Pi program, that will calculate about 7 trillion digits of Pi. Problem is, I can't figure out how many bits are needed to hold that many decimal places.