Displaying 20 results from an estimated 500 matches similar to: "Re: Matrix Package for R"
2001 Oct 26
0
Matrix problem w/R-1.3.1 on Solaris7
Can anyone tell me how to fix this.
root at nucleus => /usr/local/R-1.3.1/bin/R INSTALL Matrix_0.3-15.tar.gz
Installing source package `Matrix' ...
creating cache ./config.cache
checking for gcc... gcc
checking whether the C compiler (gcc ) works... yes
checking whether the C compiler (gcc ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts
2001 May 17
1
BLAS where
Hi,
I want to install "Matrix" using
> install.packages("Matrix")
After a while I get:
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking for ATL_xerbla in -latlas... no
checking for dgemm_ in -lcxml... no
checking for dgemm_ in -ldxml... no
checking for dgemm_ in -lscs... no
checking for dgemm_ in -lcomplib.sgimath... no
checking
2001 Oct 31
1
shared libraries on FreeBSD 4.*
I've used R for a couple of years on FreeBSD with few problems. Recently,
a couple of the contributed packages seem to have difficulty finding
symbols in the shared libraries. Currently, I'm running R 1.3.1 on FreeBSD
4.4. I've tried setting LD_LIBRARY_PATH to /usr/local/lib
and some other things. The packages I've had trouble with are:
Matrix 0.3.15
RODBC 0.8.3
RSPython 0.3
2000 Oct 31
1
conflicting types for `Rf_stirlerr
I'm having trouble making todays development snapshot:
-DHAVE_CONFIG_H -g -O2 -c stirlerr.c -o stirlerr.o
stirlerr.c:34: conflicting types for `Rf_stirlerr'
../../src/include/R_ext/Mathlib.h:557: previous declaration of `Rf_stirlerr'
make[3]: *** [stirlerr.o] Error 1
[20] /home/mfa5/gilp/R-versions/R-devel : uname -a
SunOS mfa99579 5.6 Generic_105181-11 sun4u sparc SUNW,Ultra-5_10
2003 Feb 04
1
Bug in configure script for Solaris v9 arch with libsunperf (PR#2530)
System details:
--------------
Sun Blade 1000, Solaris 8, Sun ONE Compiler Suite (rebranded Forte 7), R
versions 1.6.0 and 1.6.2 - suspect others are affected, too
Problem description:
-------------------
Using the recommended env var setting from p.15 of the Admin Guide, the
configure script fails the sgemm sunperf test, even though the sunperf
libraries are available
Not linking with
2001 Jun 19
5
core dump on 64-bit Solaris (PR#990)
Using the 64-bit Solaris compilers make check dumps core in La_rs at
73 F77_CALL(dsyev)(jobv, uplo, &n, rx, &n, rvalues, work, &lwork,
&info);
I can't reproduce it easily, but example(eigen) occasionally stops with
Error: abs(sm - V %*% diag(lam) %*% t(V)) < 60 * Meps is not TRUE
which might be connected. The tiny rounding errors in example(eigen)
aren't
2008 Apr 18
1
configure can't find dgemm in MKL10
Hi,
I'm trying to follow the R-admin instructions for using MKL10 as the external BLAS compiling R-2.6.2 under Linux on a RH EL head node of a cluster. The configure process seems to have problems when it checks for dgemm in the BLAS. I'm using configure as:
./configure CC=icc F77=ifort --with-lapack="$MKL" --with-blas="$MKL" where $MKL is defined as in R-admin
2010 May 28
2
Compiling R-2.11.0 with ATLAS-tuned BLAS and LAPACK
Hello. I am a Linux neophyte and know almost nothing ?about compiling,
so I would appreciate any help and advice y'all would care to offer.
I am trying to compile the 64 bit version of R using a tuned ATLAS and
LAPACK (ATLAS 3.9.24). I am running Ubunto 10.04 LTS (through wubi,
FWIW). The ATLAS and LAPACK files (atlas.so, f77blas.so, lapack.so,
and cblas.so) are sitting in the folder
2005 Sep 06
1
Build R with AMD pgi compiled ACML library
Hi,
Has anyone had any luck in using portland group compiler to build
R(-devel) with AMD's pgi compiled ACML library? I've downloaded the
packages and set LD_LIBRARY_PATH, and run configuration script as follow:
% ./configure --prefix=/usr/local/R.pgcc --with-blas='-lacml'
However, it failed to pick up double complex BLAS,
checking for sgemm_ in -lacml... yes
checking
2007 Aug 21
2
compiling R under cygwin
For various reasons, it suits our workplace to have a cygwin version of
R. I am pretty sure that cygwin is still not a supported environment
for R, but we have managed to compile R-2.5.1 under cygwin without too
many dramas. Our procedure is described below. We still have a few
problems compiling libraries without manually changing files from .so to
.dll, but it seems ok.
I was wondering
2004 May 31
1
Question about building library and BLAS
Dear helpers,
I am trying to create a library which uses some Fortran source files and Lapack and Blas
subroutines. The Fortran source files from the original author contain subroutines
isamax.f, sgefa.f and sgesl.f, which are part of BLAS subroutines on my Linux computer,
but maybe different (old) versions. So in addition to these subroutines, there are other
Lapack and Blas subroutines
1998 Nov 03
1
configuration/compilation problems
R is having trouble finding some of the things it needs to compile.
In particular, I'm getting messages saying that it can't find things it
wants in -lblas, -ldxml, -ldnet, and -ldnet_stub. It also can't find
dl.h, ieeefp.h, and ieee754.h.
I can't figure out whether these things are included with R somewhere and
I need to tell it where to look, or they're not included and I
2001 Oct 17
3
New Beginner: Problems w/loading Matrix package
Hello all,
I am 2 days old in compiling and installing R-1.3.1 and having all kinds of
problems with one particular package named "Matrix_0.3-15.tar.gz"
Where should I start?
OK!
I have successfully installed R version R-1.3.1 as well as a host of other
packages (piece of cake). When I tried to install the Matrix package, I
got an error message stating that the "BLAS library
2009 Jun 26
0
proper link to ACML blas | compiling 2.9.0
Normally, I do the following to configure R for compilation on my
Opteron box with ACML installed:
./configure --with-tcltk --with-blas="-L/opt/acml4.3.0/gfortran64/lib
-lacml"
However, when I do so, and look at Makeconf, I see
BLAS_LIBS = -lblas
I thought I would see
BLAS_LIBS = -L/opt/acml4.3.0/gfortran64/lib -lacml
Why isn't Makeconf picking up the right BLAS_LIBS (or is
2011 Jan 26
1
Compilation errors when installing gee
Hi,
I am trying to install gee on our server but I get the error below. I do not have root on this machine so no control on how R was installed itself. It looks like it cannot find blas libs, the only ones i can find on the machine are:
/usr/lib64/libblas.so.3 -> libblas.so.3.0.3
/usr/lib64/libblas.so.3.0 -> libblas.so.3.0.3
/usr/lib64/libblas.so.3.0.3
and :
$ R CMD config BLAS_LIBS
2011 Feb 07
1
Difference in the BLAS_LIBS definition on Ubuntu packages
A while back I posted to this group that I was having difficulty
compiling packages that used BLAS and Lapack on an Ubuntu 32-bit
system. I looked a little further into the issue and discovered that
the /usr/lib/R/etc/Makeconf files are different on the 32-bit and
64-bit Ubuntu packages
maverick/r-base-core_2.12.1-1maverick0_i386.deb
and the corresponding 64-bit version. The Make variable
2005 Sep 17
1
looks in liblapack.a not liblapack.so
I can't compile R-alpha on AMD 64. Rather than include a 1400 line script
I have put it on the web
http://www.stat.umn.edu/~charlie/typescript.txt
way down near the bottom it fails building lapack.so
gcc -shared -L/usr/local/lib64 -o lapack.so Lapack.lo -llapack -lblas -lg2c -lm -lgcc_s
/usr/lib64/gcc-lib/x86_64-suse-linux/3.3.5/../../../../x86_64-suse-linux/bin/ld:
2008 Mar 08
1
Installing odesolve package of R under Ubuntu (Debian) Linux
Bonjour,
Je cherche à installer le package odesolve du logiciel de statistique R sous
Ubuntu Linux.
C'est un package qui contient des fonctions appelant du code en Fortran.
A l'installation sous R via le shell, j'obtiens l'erreur suivante:
Hi,
I tried to install odesolve package of R under Ubuntu Linux.
But I got the following error:
ghislain@ghislain-laptop:~$ sudo R
[sudo]
2005 Sep 02
0
Build R with ATLAS
Hi,
I followed this message,
https://stat.ethz.ch/pipermail/r-devel/2004-February/028942.html, to
compile ATLAS with gcc and g77 on AMD Opteron. I then followed the
instructions on this message,
https://stat.ethz.ch/pipermail/r-devel/2004-February/028966.html, to
convert static libraries to dynamic libraries.
However, when I tried to configure R-devel, I got the following error
2006 Jun 22
2
Error - Compiling R on a Sun V40Z - R/R-2.2.1 (PR#9024)
configure: WARNING: dlfcn.h: present but cannot be compiled
configure: WARNING: dlfcn.h: check for missing prerequisite headers?
configure: WARNING: dlfcn.h: see the Autoconf documentation
configure: WARNING: dlfcn.h: section "Present But Cannot Be Compiled"
configure: WARNING: dlfcn.h: proceeding with the preprocessor's result
configure: WARNING: dlfcn.h: in the future, the