Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

180 results for “from:Hao”

Parallel linear model
Hao Yu · Aug 24, 2012 · r-sig-hpc

Try clusterExport(cl,c("y","fix")) Hao Patrik Waldmann wrote: > I have some additional questions: I want to add an extra matrix that I > keep fixed, but I cannot get the parallel version working, any > suggestions? > > y<-rnorm(1000) > x...

Rmpi in "Depends"
Hao Yu · Jul 17, 2009 · r-sig-hpc

lamboot is launched in zzz.R at: if (.Platform$OS=="unix"){ if(.Call("mpidist",PACKAGE="Rmpi") == 2){ if (length(system("lamnodes",TRUE,ignore.stderr = TRUE)) == 0){ #cat("\n\tLAM/MPI runtime environment is not operating.\n") #cat("\tStarting LAM/MPI...

unstable repeated spawning with Rmpi under Windows 7
Hao Yu · Dec 13, 2012 · r-sig-hpc

Windows always behaves different, in particular memory allocation and release. I don't think repeated spawning is good even for MPI itself. Why don't you keep the session and continue your computation? One possible solution is to add a...

[Rcpp-devel] Method with default params using RCPP_MODULE
Hao Ye · Oct 26, 2016 · rcpp-devel

> > In sum, the easiest may be to 'hide' the module and deal with this from > the R > side exposing both variants from there and then just calling the one you > have now. I agree - though I don't think you...

Trouble using Rmpi after successful installation
Hao Yu · Apr 27, 2010 · r-sig-hpc

Try R CMD ldd path_to_Rmpi.so to see if Rmpi can find libs in /usr/lib64/openmpi/1.3.2-gcc/lib. Otherwise you have to modify env LD_LIBRARY_PATH or modify R script to add at...

Parallel Linear Model
Hao Yu · Aug 22, 2012 · r-sig-hpc

Here is my test with 8 core. y<-rnorm(1000) x<-matrix(rnorm(1000*10000),ncol=10000) dimx<-dim(x) library(parallel) cl <- makeCluster(8, methods=FALSE) print(system.time( pval <- unlist(mclapply(1:dimx[2], function(i) summary(lm...

Rmpi Setup Troubles
Hao Yu · May 13, 2011 · r-sig-hpc

Hi. Can you check if libmpi.so is installed at /opt/openmpi/tcp-intel//lib/? This line seems indicating libmpi.a is checked instead of libmpi.so. Hao /usr/bin/ld: /opt/openmpi/tcp-intel//lib/libmpi.a(comm_init...

[Bioc-devel] [External] Re: error in bioconductor package DSS
Wu, Hao · Sep 30, 2022 · bioc-devel

Vince, Thanks for the prompt reply. Can you provide more instruction on how I should look at a particular branch and commit the changes to that? When I do git clone, what branch did I get? Hao From: Vincent Carey...

save an object by dynamicly created name
Hao Cen · Nov 2, 2009 · r-help

Hi Henrik and David, Thank you very much for your suggestions. I found both meet my needs. In the following code, I found save(obj,file=pathname) would save the content into an object called obj. path <- "~/"; dir.create(path...

Problem compiling Rmpi on Linux
Hao Yu · Dec 8, 2008 · r-sig-hpc

Make sure when you are compiling LAM to use --enable-shared in configure. Somehow LAM creates static lib as default and Rmpi needs dynamic lib to work. Hao Blanchette, Marco wrote: > Dear list, > > I am trying without success to install...

Problems Installing Rmpi
Hao Yu · May 13, 2009 · r-sig-hpc

Rick, please use ################################### AC_INIT(DESCRIPTION) AC_PROG_CC AC_ARG_WITH(mpi, [ --with-mpi=/opt/lib32/usr/lib Location of MPI library.], [ if test "${withval}" != no; then MPI_ROOT=${withval} MPI_INCLUDE="-I${MPI_ROOT}/include" LDFLAGS="$LDFLAGS -L...

Problems Installing Rmpi on openSUSE 11.1 x86_64
Hao Yu · Jul 9, 2009 · r-sig-hpc

Sorry. I forgot to say that Rmpi needs liblam.so as well. So use > MPI_LIBS="-L${MPI_ROOT}/lib64 -lmpi -lam" Once compiled, use ldd path_to_Rmpi.so to check if all libs are properly set. Again the...

[Rcpp-devel] Rcpp C++11 on Windows
Hao Ye · Jan 27, 2016 · rcpp-devel

Peter, You can refer to https://gcc.gnu.org/gcc-4.6/cxx0x_status.html to see what features are supported in gcc4.6. Best, -- Hao Ye hye at ucsd.edu > On Jan 27, 2016, at 3:32 PM, Peter...

everybody loves R...
Huang, Guo-Hao · Feb 20, 2009 · r-help

I also plan to create a R website in Taiwan (locale: Traditional Chinese). My reason is the same as you. Welcome people in taiwan to give me suggestion. ----- Original Message ----- From: "UsuarioR Espa?a" <kurtney_84 at hotmail.com> To...

Problems Installing Rmpi on openSUSE 11.1 x86_64
Hao Yu · Jul 9, 2009 · r-sig-hpc

If Rmpi is compiled successfully but cannot be loaded into R, it may be due to lam's mpi.so not in ld path. Normally I would modify the R script and add a line like (right after the first...

[Rcpp-devel] [OT] Asking for a quick OS X favour
Hao Ye · May 11, 2014 · rcpp-devel

> > So why does the directory /usr/include/hiredis get omitted on OS X? I think this might be a general quirk on OS X. I recall having to manually set the "-I/usr/local/include" flag for any compilations that...

Problems Installing Rmpi on openSUSE 11.1 x86_64
Hao Yu · Jun 26, 2009 · r-sig-hpc

Hi Melwin, Did you try R CMD INSTALL Rmpi_0.5-7.tar.gz --configure-args=--with-mpi=/path_to_lam Your system may have several mpi and Rmpi did not find a right mpi. BTW, when you are installing...

[Bioc-devel] [External] Re: error in bioconductor package DSS
Wu, Hao · Sep 30, 2022 · bioc-devel

Okay, after some quick search, I did git checkout RELEASE_3_15 git cherry-pick master git push Is this what I should do? From: "Wu, Hao" <hao.wu at emory.edu> Date: Friday, September 30, 2022 at 6:08...

save an object by dynamicly created name
Hao Cen · Nov 8, 2009 · r-help

Hi Henrik, I am using your saveObject/loadObject to handle over 1000 matrices. It worked beautifully. Because I need to load those matrices often for evaluating a few functions on them and those matrices do not fit all in memory...

write.table
Huang, Guo-Hao · Feb 20, 2009 · r-help

May you put your code and data in the internet? It will be easy for others to find your real problem. ----- Original Message ----- From: <lauramorgana at bluewin.ch> To: <r-help at r-project.org> Sent: Friday, February 20, 2009...

Can't find what you're looking for? Try searching with Google .