search for: lindaspaces

Displaying 17 results from an estimated 17 matches for "lindaspaces".

2008 Feb 11
2
Viable Approach to Parallel R?
...; I see that SCAI (Scientific Computing Associates) offers a parallel R package based on something they call NetworkSpaces and "Sleigh" (inspired by Snow). They sell services around the product but it is open source. They have an enhanced version that they sell & support. http://www.lindaspaces.com/hp/BenchmarksWithCharts.pdf. Has anyone investigated this approach or it's open source components? TIA for any information, direction, suggestions, and if I've missed any other approaches please advise. Dan Lewis [[alternative HTML version deleted]]
2008 Sep 04
1
Erlang-style message-passing in R: Rmpi, Snow, NetWorkSpaces, etc.
.../www.aspect-sdm.org/Parallel-R/task-pR/task-pR.html 15. http://cran.us.r-project.org/src/contrib/Descriptions/biopara.html 16. http://sourceforge.net/projects/nws-r/ 17. http://www.ddj.com/web-development/200001971 18. http://nws-r.sourceforge.net/NetWorkSpacesFAQ.html 19. http://www.lindaspaces.com/about/ 20. http://www.lindaspaces.com/products/os_licensing.html 21. http://en.wikipedia.org/wiki/Oz_(programming_language)#Dataflow_variables_and_declarative_concurrency 22. http://www.info.ucl.ac.be/~pvr/cvvanroy.html 23. http://www.amazon.com/gp/product/0262220695/ 24. http://...
2005 Oct 20
1
R package that Depends on "methods"
I am trying to build a package that depends on "methods" package. I am getting an error "protection stack overflow" at the INSTALL phase of "check". Can someone please point me to a package that depends on "methods" so that I can follow it? -Daya
2008 May 08
1
problem with caretNWS on linux
Hi, I am using caretNWS on a RHEL x86_64 system and I am getting an error message that is nearly identical to the one occuring in http://www.r-project.org/nosvn/R.check/r-release-macosx-ix86/caretNWS-00check.txt Error in socketConnection(serverHost, port = port, open = "a+b", blocking = TRUE) : unable to open connection Calls: system.time ... .local -> tryCatch -> tryCatchList
2005 Sep 02
0
Build R with ATLAS
...tion license will expire in 14 days, 0.426 hours. For a permanent license, please read the order acknowledgement that you received. Connect to https://www.pgroup.com/License with the username and password in the order acknowledgement. Name: lai User: lai Email: lai at lindaspaces.com Hostid: PGI=00001AE0190CAB621CB217 /usr/local/lib64/libf77blas.so: undefined reference to `e_wsfe' /usr/local/lib64/libf77blas.so: undefined reference to `do_fio' /usr/local/lib64/libf77blas.so: undefined reference to `s_stop' /usr/local/lib64/libf77blas.so: undefined refere...
2006 Jun 06
3
build R with Visual Studio
Hi, Has anyone had success in building R source with Visual Studio? I followed the instructions in README.packages, but failed on the very first step, where it's looking for R.dll. I looked through R source and couldn't find the file. Can someone point me to where this file is located or generated? Thanks! Sincerely, Jennifer
2006 Jun 06
3
build R with Visual Studio
Hi, Has anyone had success in building R source with Visual Studio? I followed the instructions in README.packages, but failed on the very first step, where it's looking for R.dll. I looked through R source and couldn't find the file. Can someone point me to where this file is located or generated? Thanks! Sincerely, Jennifer
2005 Aug 31
1
Build Portland Group Compiler
Hi, I built R with Portland Group compiler, but I noticed one thing that when I ran configure for the first time on AMD machine, I got the following error: checking whether the C compiler works... configure: error: cannot run C compiled programs. If you meant to cross compile, use `--host'. See `config.log' for more details. so I tried to set host=x86_64-unknown-linux-gnu,
2005 Aug 31
1
Bioconductor and R-devel
Hi, I have built R (current development version) and BioConductor 1.7 with portland group compiler on a AMD Opteron. When I ran qc assessment on Affymetrix latin square data set, I got the following output, Loading required package: affy Loading required package: Biobase Loading required package: tools Welcome to Bioconductor Vignettes contain introductory material. To view,
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
2005 Sep 24
1
complex.h in R
Hi, How does complex.h used in R? Whether a compiler support complex.h or not, does it affect R's performance? I used PGI compiler to build R-devel on AMD Opteron, but the configuration file failed to link BLAS library despite the fact it is located in the usual location, /usr/lib64. PGI said they don't support complex.h. R configuration script printed out that doublecomplex is
2005 Oct 07
1
FFT
Hi, Is FFT implemented in R takes advantage of multi-processors? I ran this benchmark from from http://www.sciviews.org, and AMD Opteron 2.2 GHz performs better than AMD Opteron 1.8 GHz on all test cases, except FFT operation. Both machines run same OSs (RedHat WS 3) and 2.2 GHz has more memory (2 GB RAM) than 1.8 GHz (1 GB RAM). The only difference is that 1.8 GHz is a dual-processor
2005 Oct 12
0
additional comments on building R with PGI compiler
Hi, I have additional comments on building R with PGI compiler. If one wants to use external BLAS library, then pgf90 instead of pgf77 should be used, and BLAS_LIBS flags should be set. e.g. F77 = $PG_HOME/bin/pgf90 BLAS_LIBS='-L/opt/acml2.7.0/pgi64/ -lacml' # for ACML library BLAS_LIBS='-L/usr/lib64 -lg2c -lblas' # for generic BLAS library that comes
2005 Oct 13
1
Building R on Windows
Hi, I"m a newbie on building R on Windows. I followed the instructions cited here, http://www.murdoch-sutherland.com/Rtools/ to build R-2.2.0. Everything works fine up till when package base needs to be compiled. here is the error message, ---------- Making package base ------------ adding build stamp to DESCRIPTION Error in library.dynam(lib, package, package.lib) : shared
2005 Oct 25
1
performance of nchar
Hi, Is nchar function knowingly slow in R? I'm doing some string formatting that requires multiple call to nchar, and nchar seems to be very slow. Experiment 1, pass nchar inside sprintf, and it takes 0.7 seconds > system.time(for (i in 1:10000) + str = sprintf('0005%020d', nchar(op)) + )[3] [1] 0.7 Experiment 2, get the length of op separately using nchar, and then pass
2006 Mar 21
1
build R on windows
Hi, I'm not sure if this question has been answered before, but when I execute command "Rcmd INSTALL --build nws" to build an R package on Windows, the build process got stucked on the save image step. Here is the snapshot of the build process, --- Making package nws ---- adding build stamp to DESCRIPTION installing NAMESPACE file and metadata installing R files
2005 Aug 23
1
compile R with Portland Group compiler
Hi, Can anyone advise me on how to compile R with Portland Group compiler on a Opeteron machine with Red Hat Enterprise Linux WS release 4 installed? I've edit config.site file to pick portland group compilers instead of gcc. Here is the list of modified flags: CC=/usr/pgi/linux86-64/6.0/bin/pgcc CFLAGS='-g -O2' CPPFLAGS='-I/usr/pgi/linux86-64/6.0/include