search for: sunperf

Displaying 20 results from an estimated 29 matches for "sunperf".

2001 Dec 06
1
Building R on Solaris with SUNperf
Dear All, I am building R-1.3.1 on Solaris 2.7 and I am trying to use the native SUNperf BLAS/LAPACK. I have added the flags ("-dalign -xlic_lib=sunperf") for the compilers in the config.site file. What is not clear to me is what I have to do with the "--with-blas" flag for ./configure. It seems to me that omitting it is not enough. Any suggestions? Another ques...
2003 Feb 04
1
Bug in configure script for Solaris v9 arch with libsunperf (PR#2530)
...-------------- 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 libsunperf causes drastic performance hits on some simple benchmarks I've tried (e.g. matrix multiplication can take up to 100 times as long for a sufficiently large matrix (n=5000)) Solution: -------- Configure script sh...
2002 Jan 15
0
errors intalling splancs and sgeostat
...got an error for splancs and sgeostat. Trying to install them 'manually' with R CMD INSTALL, I got the following errors. 1) for splancs: Tue<15:26>library[82]#R CMD INSTALL splancs_2.01-5.tar.gz Installing *source* package `splancs' ... libs f95 -PIC -xO5 -dalign -xlic_lib=sunperf -c areapl.f -o areapl.o f95 -PIC -xO5 -dalign -xlic_lib=sunperf -c cncvwt.f -o cncvwt.o f95 -PIC -xO5 -dalign -xlic_lib=sunperf -c dokhat.f -o dokhat.o f95 -PIC -xO5 -dalign -xlic_lib=sunperf -c inpip.f -o inpip.o f95 -PIC -xO5 -dalign -xlic_lib=sunperf -c ipippa.f -o ipippa.o f95 -PI...
2004 Sep 08
1
Problems loading Lapack library
...usa" CFLAGS="-xO3 -dalign" F77="f90 -xarch=v8plusa" FFLAGS="-xO3 -dalign" MAIN_LDFLAGS="-xarch=v8plusa" LDFLAGS="-L/opt/SUNWspro/lib -L/usr/local/lib" CXX="CC -xarch=v8plusa" CXXFLAGS="-xO3 -dalign" BLAS_LIBS="-xlic_lib=sunperf" LAPACK_LIBS="-xlic_lib=sunperf" The configure and make steps finished apparently normally, but "make check" failed. I found that R would start, and do elementary things, but anything involving linear algebra failed: for example, I tried the "lm-tests.R" file i...
2002 Nov 29
3
BLAS/Lapack for OS X
OS X 10.2 and higher comes standard with highly optimized versions of BLAS and Lapack in /Systems/Library/Frameworks/vecLib.framework. It seems that even for double precision they do much better. See http://sthmac.magnet.fsu.edu/benchmarks/ I am not sure how these numbers would look on G3 Macs, but obviously for double precision there is not much reliance on Altivec. So I tried to configure
2009 Mar 31
3
RMySQL compile
...s and need to pass some options to configure. Tried the 3 recommended ways of doing it and nothing works, configure cannot find the headers and the libs. I ran configure manually and that worked fine ./configure CC=cc CFLAGS="-dalign -KPIC -xlic_lib=sunperf" LDFLAGS="-L/usr/sfw/lib -L/usr/lib -L/usr/local/lib -L/opt/csw/lib" CPPFLAGS="-I/usr/local/lib/R/include -I/usr/mysql/5.0/include/mysql -I/opt/csw/include -I/usr/sfw/include -I/usr/X11/include -I/usr/lib/gtk-2.0/include...
2004 Jul 21
1
Building problem: leftover from old OS
...OS from Solaris 2.7 to Solaris 2.8, and I am trying to build R 1.9.1. Configure seems to run fine, resulting in the message: R is now configured for sparc-sun-solaris2.8 Source directory: . Installation directory: /usr/local C compiler: cc -xO5 -dalign -xlic_lib=sunperf C++ compiler: CC -xO5 -dalign Fortran compiler: f95 -xO5 -dalign -xlic_lib=sunperf Interfaces supported: X11 External libraries: BLAS(none), LAPACK(in blas) Additional capabilities: PNG, JPEG Options enabled: R profiling Recommended pa...
2004 Dec 01
3
core dump during make check when building 64-bit R on Solaris8/9
...of the posting in this list, I came across this posting from: From: Peter Dalgaard <p.dalgaard_at_biostat.ku.dk> Date: Fri 29 Oct 2004 - 08:02:40 EST Replying to Re: [R] Errors during make check He described a problem similar to mine, that build 64-bit R (I am building R version 2.0.1) with sunperf library gives a core dump during make check. So I configured my build without the sunperf (BLAS and lapack) library. My configure statement looks like this: ./configure --prefix=/usr/local/R-2.0.1 --with-tcl-config=/usr/sfw/lib/tclCo nfig.sh --with-tk-config=/usr/sfw/lib/tkConfig.sh --without-bl...
2004 Apr 23
2
make fails with Sun Forte compiler (PR#6815)
...il -dalign" CXX="CC -xarch=v8plusa" CXXFLAGS="-xO5 -xlibmil -dalign" Actually, there is one thing that I didn't specify above, but I'm not sure how. The Sun Performance library is a BLAS library. In LAPACK, you specify it as BLASLIB ="-xlic_lib=sunperf" Is there a simple way to specify that in config.site? Anyways, that's probably not the problem that I'm having, but if you have any advice... Here's the real problem, make fails at: MAKE="make" R_LIBS= ../../../bin/R CMD INSTALL -l ../../../library foreign.tgz * Insta...
2002 Jan 18
3
Shared libraries for use with R
...the problem?). This is how I compile the file with the functions I want to call from R: cd /export/home/gpetris/ R SHLIB tryit.c cc -I/export/home/share/R/R-1.4.0/lib/R/include "-I/export/home/gpetris/C" -I/usr/local/include -I/export/home/share/include -KPIC -xO5 -dalign -xlic_lib=sunperf -c tryit.c -o tryit.o cc -G -o tryit.so tryit.o "-L/export/home/gpetris/lib/SUN/32bit -lutil -lrand" -L/usr/local/lib -L/export/home/share/lib Compilation finished at Fri Jan 18 12:45:20 So far, so good. But when I dyn.load it in R: > dyn.load("tryit.so") Error in dyn.l...
2001 Dec 06
2
Solaris install problem ... mcount
...plot3d.o plotmath.o print.o printarray.o printvector.o printutils.o random.o regex.o relop.o saveload.o scan.o seq.o size.o sort.o source.o split.o subassign.o subscript.o subset.o summary.o unique.o util.o version.o vfonts.o xxxpr.o ../unix/libunix.a ../appl/libappl.a ../nmath/libnmath.a -xlic_lib=sunperf -lsunmath -R/opt/SUNWspro/lib -L/opt/SUNWspro/lib -L/opt/SUNWspro/WS6U1/lib -L/usr/ccs/lib -L/usr/lib -lfui -lfai -lfai2 -lfsumai -lfprodai -lfminlai -lfmaxlai -lfminvai -lfmaxvai -lfsu -lsunmath -lm -lz -lnsl -lsocket -lreadline -ldl -ltermcap -lm -xlic_lib=sunperf Undefined...
2005 Oct 11
1
Compile problem R 2.2.0 + Solaris 10 x86
...cc -g -O -xtarget=opteron -D__NO_MATH_INLINES -g -O -xtarget=opteron C++ compiler: CC -gO -xtarget=opteron -gO -xtarget=opteron Fortran compiler: f77 -g -O -xtarget=opteron -gO -xtarget=opteron Interfaces supported: X11 External libraries: readline, BLAS(SunPerf) Additional capabilities: PNG, JPEG, MBCS, NLS Options enabled: R profiling Recommended packages: yes configure: WARNING: you cannot build DVI versions of the R manuals configure: WARNING: you cannot build PDF versions of the R manuals ======================================...
2009 Mar 11
1
Compiling R-2.8.1 on Sparc Solaris 10: libRlapack.so: symbol __vlog_: referenced symbol not found
...="f95 -xtarget=native64" export CXXFLAGS=-O export FFLAGS="-O4 -xlibmopt -libmil -xvector=lib -fround=nearest" export FCFLAGS=$FFLAGS export LDFLAGS="-L/usr/sfw/lib/sparcv9 -L/opt/csw/lib/sparcv9" export SHLIB_CXXLDFLAGS="-G -lCstd" export BLAS_LIBS=-xlic_lib=sunperf export LIBS="-lmvec" export SHLIB_CFLAGS=-lmvec and: ./configure --prefix=/opt/R-2.8.1 --enable-threads=solaris --with-blas Could you please help me to pinpoint the problem. Thanks -- Mohammad
2015 Jan 08
2
Testing R packages on Solaris Studio
...ves on Fedora, Debian, OSX or Windows. The machine runs a Solaris 11.2 vm with Solaris Studio 12.3. I was able to compile current r-devel using the suggested environment variables from "R Installation and Administration" and: ./configure --prefix=/opt/R-devel --with-blas='-library=sunperf' --with-lapack All works great (fast too), except for some CRAN packages with c++ code won't build. The compiler itself works, most packages (including e.g. MCMCpack) build OK. However packages like Rcpp and RJSONIO fail with errors shown here: https://gist.github.com/jeroenooms/f1b6a17232...
2009 Mar 29
0
unable to compile package
...ySQL on OpenSolaris and need to pass some options to configure. Tried the 3 recommended ways of doing it and nothing works, configure cannot find the headers and the libs. I ran configure manually and that worked fine ./configure CC=cc CFLAGS="-dalign -KPIC -xlic_lib=sunperf" LDFLAGS="-L/usr/sfw/lib -L/usr/lib -L/usr/local/lib -L/opt/csw/lib" CPPFLAGS="-I/usr/local/lib/R/include -I/usr/mysql/5.0/include/mysql -I/opt/csw/include -I/usr/sfw/include -I/usr/X11/include -I/usr/lib/gtk-2.0/include -I/u...
2006 Jul 19
3
error when compiling "stats" library in R-2.3.1 on Solaris x86
...g.o Srunmed.o Trunmed.o dblcen.o distance.o hclust-utils.o nls.o HoltWinters.o PPsum.o arima.o burg.o filter.o mAR.o pacf.o starma.o port.o family.o bsplvd.o bvalue.o bvalus.o loessf.o ppr.o qsbart.o sbart.o sgram.o sinerp.o sslvrg.o stxwx.o hclust.o kmns.o eureka.o stl.o portsrc.o -xlic_lib=sunperf -lsunmath -Rreg -R/mounts/devel/SUNWspro/lib/amd64:/opt/SUNWspro/lib/amd64 -L/mounts/devel/SUNWspro/prod/lib/amd64 -L/lib/amd64 -L/usr/lib/amd64 -lfui -lfai -lfsu -lsunmath -lmtsk -lm ld: fatal: file bsplvd.o: wrong ELF class: ELFCLASS32 ld: fatal: File processing errors. No output written to stats...
2004 Sep 03
0
Installation problems on Solaris 2.6
...etter CC="cc -xarch=v8plusa" CFLAGS="-xO3 -dalign" F77="f90 -xarch=v8plusa" FFLAGS="-xO3 -dalign" MAIN_LDFLAGS="-xarch=v8plusa" LDFLAGS=-L/opt/SUNWspro/lib CXX="CC -xarch=v8plusa" CXXFLAGS="-xO3 -dalign" BLAS_LIBS="-xlic_lib=sunperf" LAPACK_LIBS="-xlic_lib=sunperf" The configure step finished apparently OK. Then the make step failed; here are the last few lines of the screen log: CDIR$ NEXT SCALAR ^ cf90-801 f90comp: WARNING DTGEVC, File = dlapack3.f, Line = 21520, Column =...
2001 Dec 20
1
optimizing R-1.4.0 build on Solaris; a show-and-tell storry
...' and then 'make' in building R-1.4.0 from source, results in the following (short summary list) of compiling flags: BLAS = blas.o BLAS_LIBS = CC = cc CFLAGS = -g FC = f77 FFLAGS = -g Following suggestions given in R-admin.html, I also build R-1.4.0 with: BLAS = BLAS_LIBS = -xlic_lib=sunperf -lsunmath CC = cc -xarch=v9 CFLAGS = -xO5 -xlibmil -dalign FC = f95 -xarch=v9 FFLAGS = -xO5 -xlibmil -dalign I did few tests comparing the speed of these two builds. In short, I saw about 65% speed improvement for general use, slightly more for regression problems (2-3 times), and considerable mo...
2015 Apr 11
0
Testing R packages on Solaris Studio
...r Windows. The machine runs a Solaris 11.2 vm > with Solaris Studio 12.3. > > I was able to compile current r-devel using the suggested environment > variables from "R Installation and Administration" and: > > ./configure --prefix=/opt/R-devel --with-blas='-library=sunperf' --with-lapack > > All works great (fast too), except for some CRAN packages with c++ > code won't build. The compiler itself works, most packages (including > e.g. MCMCpack) build OK. However packages like Rcpp and RJSONIO fail > with errors shown here: > https://gist.git...
2006 Jun 20
0
Successfully building 2.3.1 with Sun One Studio 8 on Solaris 9 (SPARC)
...as free software-friendly as possible with /opt/sfw/bin in your PATH: CONFIG_SHELL=/usr/xpg4/bin/sh CC=cc GCC= CFLAGS=-xlibmil -dalign CXX=CC CXXFLAGS=-xlibmil -dalign F77=f95 F95=f95 FFLAGS=-xlibmil -dalign CPP=/opt/sfw/bin/cpp CPPFLAGS=-I/opt/sfw/include LDFLAGS=-L/opt/sfw/lib BLAS_LIBS=-xlic_lib=sunperf #5. configure, make and install configure --with-blas --with-lapack gmake gmake install cd src/library/Recommended R CMD INSTALL foreign_0.8-15.tar.gz #6. I also asked on R-help about how to install a bunch of packages at once. There were some interesting tips. But, the easiest way that I found...