similar to: [LLVMdev] LLVM and GMP

Displaying 20 results from an estimated 3000 matches similar to: "[LLVMdev] LLVM and GMP"

2009 Mar 25
0
[LLVMdev] LLVM and GMP
I could be wrong, but I think that you may need to add a 'big-integer' intrinsic type to llvm. On Wed, Mar 25, 2009 at 4:32 AM, Paulo Matias <paulomatias0 at gmail.com> wrote: > Hello > > I've been looking to LLVM, in order to develop a compiler for a > cryptography oriented language. I started by following the tutorials on > Kaleidoscope, and I must say they were
2009 Mar 26
1
[LLVMdev] LLVM and GMP
someguy wrote: > Oh. One more thing: > > Paulo, while your working out how to do what Chris said (making usage > of bigints into library calls), wouldn't it just warm your heart to > document the process on the wiki? > > </wiki pimping> > > On Wed, Mar 25, 2009 at 9:16 AM, someguy > <just.s0m3.guy+llvmdev at gmail.com> wrote: > >> Oh. I
2009 Mar 25
2
[LLVMdev] LLVM and GMP
On Mar 24, 2009, at 11:20 PM, someguy wrote: > I could be wrong, but I think that you may need to add a 'big-integer' > intrinsic type to llvm. No, please don't. GMP is just another library like libc, your front- end should just generate calls into it like any other library. This is similar to how we handle threading and many other "language features". -Chris
2009 Mar 25
0
[LLVMdev] LLVM and GMP
Oh. I see. That way the bigints don't need a representation in llvm IR... neat. Sorry for the misdirecton! On Wed, Mar 25, 2009 at 8:38 AM, Chris Lattner <clattner at apple.com> wrote: > > On Mar 24, 2009, at 11:20 PM, someguy wrote: > >> I could be wrong, but I think that you may need to add a 'big-integer' >> intrinsic type to llvm. > > No, please
2006 Jun 14
2
package compile error on RHEL x86_64
I am unable to install the gmp package on an x86_64 (Xeon) machine. I have had the same problem with other packages (eg. MCMCpack) as well. I am running Red Hat Enterprise Linux 4.1. I get the following error: g++ -shared -L/usr/local/lib64 -o gmp.so biginteger.o biginteger_operator.o bigintegerR.o bigrational.o bigrational_operator.o bigrationalR.o factor.o -L/usr/local/lib/ -lgmp /usr/bin/ld:
2006 Jun 29
0
gmp: bigintegers with matrix computation
Dear all, gmp package is now available on cran with version 0.4 Aim of gmp is to provide a lot a function to manipulate big integers, big rationals and last but not least big integers in Z/nZ (modulo n) We add in last version support for matrix computation (standards operators, + * - / %*% ...) and inversion matrix (solve): in Z/nZ if matrix defined in Z/nZ with rationals (absolute precision)
2010 Nov 11
1
gmp package installation on CentOS 5.2
Hello, Last year, I installed CentOS 5.2 on an HP Proliant Server. Along with other packages, the gmp and gmp-devel version 4.1.4 packages were installed. To the best of my knowledge these packages do not come from the gmp team. Recently, I built an rpm package for gmp 5.0.1 for CentOS 5.2. I tried to update the gmp package by command rpm -Uvh gmp-5.0.1-1.x86_64.rpm but the update failed
2011 Jan 04
1
function masking and gmp questions
Hi, Here's the problem I ran into: the gmp package has a method for apply() so it masks the base::apply function. With gmp installed, I tried to run the function turnpoints() from the pastecs package. It fails because it calls apply() internally, like this: apply(mymatrix,1,max,na.rm=TRUE) , but the code in the gmp package which sets up the operator overload for apply() strictly
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]]
2023 Jan 07
2
gmp::bigq vs. MASS::fractions
Hi, has someone experience which routine should be used for creating fractional numbers? The two conversion routines deliver different results > x <- (0:7)/7 > MASS::fractions(x) [1] 0 1/7 2/7 3/7 4/7 5/7 6/7 1 > gmp::as.bigq(x) Big Rational ('bigq') object of length 8: [1] 0 2573485501354569/18014398509481984 2573485501354569/9007199254740992 [4]
2013 Jan 02
1
[PATCH] Fix gmp stubdom build when DESTDIR is used
The default make targets in the top level makefile set DESTDIR which gets applied when the stubdom makefile tries to do a make install within gmp to install libgmp.a to the cross root. Ian, do you want to apply this to your tree and commit the whole thing or would you prefer I roll out a fresh new patch set with all updates applied? Signed-off-by: Matthew Fioravante
2000 Dec 13
3
GMP in COPYING.Ylonen
COPYING.Ylonen contains: [ GMP is now external. No more GNU licence. ] I don't see how GMP is linked in at all. rms asked me to look into this, because this might constitute a license conflict. Thanks for your help! -- No matter how big the bell, if you only tap it, it can give out only a faint sound. We must understand thoroughly that the weakness of the blow, not a fault of the bell
2000 Jul 25
2
Problems with tinc configure with gmp 3.0.1
I can't get tinc to complete the configure script. It can't find the gmp 3.0.1 libraries even though they are installed. I saw a fix mentioned in the list archives, but it didn't work. Can anyone else help me out? Thanks John - Tinc: Discussion list about the tinc VPN daemon Archive: http://mail.nl.linux.org/lists/ Tinc site: http://ftp.nl.linux.org/pub/linux/tinc/
2012 Mar 28
1
rep with bigz in gmp
Hi With package:gmp, is this an expected behavior? > rep(1:3, rep(3, 3)) [1] 1 1 1 2 2 2 3 3 3 > rep(as.bigz(1:3), rep(3, 3)) Big Integer ('bigz') object of length 9: [1] 1 2 3 1 2 3 1 2 3 This code is used inside `outer`, so more worse > outer(1:3, 1:3, `*`) [,1] [,2] [,3] [1,] 1 2 3 [2,] 2 4 6 [3,] 3 6 9 > outer(as.bigz(1:3),
2008 Jun 18
0
[LLVMdev] using dynamic libraries from bytecode?
On Jun 18, 2008, at 6:48 AM, Yaroslav Kavenchuk wrote: > Is it possible to use dynamic library (*.so *.dll) from bytecode? > If "yes" - how? dlopen? That's be one way. Also, most systems have shared libraries in /usr/lib and these routines are meant to be linked against and used. For example, on darwin, there sinf is resolved from a shared library, you declare it and
2008 Jun 18
2
[LLVMdev] using dynamic libraries from bytecode?
Is it possible to use dynamic library (*.so *.dll) from bytecode? If "yes" - how? -- WBR, Yaroslav Kavenchuk.
2023 Jan 07
1
gmp::bigq vs. MASS::fractions
On Sat, 7 Jan 2023 17:29:35 +0100 Sigbert Klinke <sigbert at wiwi.hu-berlin.de> wrote: > > x <- (0:7)/7 > > > MASS::fractions(x) > > [1] 0 1/7 2/7 3/7 4/7 5/7 6/7 1 > > > gmp::as.bigq(x) > > Big Rational ('bigq') object of length 8: > > [1] 0 > 2573485501354569/18014398509481984 2573485501354569/9007199254740992 >
2018 Jan 20
10
[Bug 1216] New: Error messaging for "interval overlaps with previous one" misidentifies location
https://bugzilla.netfilter.org/show_bug.cgi?id=1216 Bug ID: 1216 Summary: Error messaging for "interval overlaps with previous one" misidentifies location Product: nftables Version: unspecified Hardware: All OS: All Status: NEW Severity: major Priority: P5
2011 Sep 05
0
package gmp installation problem
Hello everybody, Trying to install the package gmp I get the following errors and fail to install: Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/usr/local/lib/R/site-library/gmp/libs/gmp.so': libgmp.so.10: cannot open shared object file: No such file or directory Warning in eval(expr, envir, enclos) : Data for RFC 2409 Oakley groups requires
2012 Mar 07
0
CEBA-2012:0365 CentOS 6 gmp Update
CentOS Errata and Bugfix Advisory 2012:0365 Upstream details at : https://rhn.redhat.com/errata/RHBA-2012-0365.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: f1855126a943ed4aac412006af98490248b739b4f9f78487f17c3275557948e2 gmp-4.3.1-7.el6_2.2.i686.rpm 79970b1d4219889536ba4cf865ddf9defa9b0c9a057e94c11d6a95e46abad2fa