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”

Plain: Problem with Rmpi
Hao Yu · Jan 18, 2010 · r-sig-hpc

mpi.spawn.Rslaves is not needed since orterun is used to create 1 master and 3 slaves. I assume Rprofile in Rmpi is used. Then all slaves are in infinite loop waiting for master instructions. They will not take any...

[Rcpp-devel] Best Practice for Optimize Functions in RCPP
Hao Ye · Dec 23, 2014 · rcpp-devel

Simon, There are also some minima-finding functions in GSL that you may want to look into. The source for RcppGSL might help with a fully c++ version. Best, -- Hao Ye hye at ucsd.edu On Dec 23, 2014, at...

Rmpi and cpu usage on slaves
Hao Yu · Apr 22, 2009 · r-sig-hpc

As Dirk said, it is a feature of OpenMPI. LAM-MPI doesn't have this issue. I don't think there is a solution on slave sides since mpi.bcast is a blocking call. It might be possible to use...

R error throwing and poe error catching
Hao Yu · Aug 8, 2013 · r-sig-hpc

Jim, Try to alter the behave of error in R. Run at the beginning options(error=quote(assign(".mpi.err", FALSE, envir = .GlobalEnv))) Check Rmpi's Rprofile usage. Hao Jim Gattiker wrote: > I'm having trouble with running R under...

[Rcpp-devel] Fwd: Looping over the parameters of a function
Hao Ye · Apr 8, 2014 · rcpp-devel

Hi Petre, It sounds like what you want is to curry a function f(x, a) into a function g(x) that will then get passed to your root-finder. See: http://stackoverflow.com/questions/152005/how-can-currying-be...

simple question on R/Rmpi/snow/slurm configuration
Hao Yu · Jan 7, 2009 · r-sig-hpc

Hi Whit, Regarding 4), my slurm setting is actually to disable it so users cannot remote login or exec on any remote nodes. It seems slurm/munge take care of authentication and remote executions. Hao PS: in /etc/pam.d...

Rmpi installation with openmpi (on local directory)
Hao Yu · Feb 28, 2012 · r-sig-hpc

R cannot find libmpi.so in /usr/lib64/openmpi/1.4-gcc/lib. You have to tell R where to find it. There are two ways to do it: 1. Modify the env var LD_LIBRARY_PATH to include /usr...

ff package: ff objects don't reload completely on NFS drives from a different machine
Hao Cen · Jan 23, 2010 · r-help

Hi ff users and Jens, I am using the ff package and it has been working great. Recently I noticed an unexpected behavior in the ff package -- when I save an ff matrix on one machine to an NFS drive...

Error message "not installed for 'arch=xx'" when installing Rmpi in R-2.12.0
Hao Yu · Nov 24, 2010 · r-sig-hpc

Melwin, Rmpi needs to be recompiled for R 2.12.0. I have put a 32bit binary version of Rmpi for R 2.12.0 on my site. So far I have no luck with 64bit Rmpi. Compiling is ok...

how to organize a lot of R source files
Hao Cen · Jan 9, 2010 · r-help

Hi Henrik, Thanks for your suggestion. I created a directory with 10 R files and tried the following and measured its time system.time(sourceDirectory("~/fun", modifiedOnly = F)) system.time(sourceDirectory("~/fun", modifiedOnly = T)) But the second line seems to...

Problem about config Rmpi with LAM on 64 bits
Hao Yu · Dec 11, 2008 · r-sig-hpc

Hi Marce, R and Lam on nfs should work. Your errors seem indicating that R cannot find the path to lam lib. Can you make sure LAM is working: try lamboot -v lamnodes lamexec C hostname Any errors will indicate...

[Rcpp-devel] Pass an Rcpp module object to a method belonging to another module from R?
Hao Ye · Sep 9, 2014 · rcpp-devel

Grant, In my own work, I found that input validation is actually significantly easier to do in R. (and even if you did do it in the c++ layer, informative error messages should probably be thrown as exceptions back to...

Rmpi_0.5-4 and OpenMPI questions
Hao Yu · Oct 3, 2007 · r-devel

Hi Dirk, Thank for pointing out additional flags needed in order to compile Rmpi correctly. Those flags can be added in configure.ac once openmpi dir is detected. BTW -DMPI2 flag was missed in your Rmpi since the detection of...

[Bioc-devel] Build reports not updated
Chen Hao · Jul 11, 2016 · bioc-devel

Dear Herve, Thanks very much, the latest version 1.4.8 is online now. Best Regards, Chen Hao On 12 Jul 2016, at 2:39 AM, Herv? Pag?s <hpages at fredhutch.org<mailto:hpages at fredhutch.org>> wrote: Hi...

how to pass matrices from C to R effectively
Hao Cen · Nov 12, 2009 · r-help

Hi Duncan, Thanks for your reply. I am not sure what you meant by "tell your C function to use the memory that R sent to it". What R can pass to C is a pointer to an array and...

Rmpi with Open MPI on Debian
Hao Yu · Feb 11, 2009 · r-sig-hpc

Hi Ingeborg, Dirk already answered some of your questions so I will not repeat here. I just address some of your issues. Overall OpenMPI is not a friendly MPI environment to work with unless it runs under job or resource...

questions on the ff package
Hao Cen · Nov 26, 2009 · r-help

Hi Jens, Thanks for your prompt and informative answers. ff is a fabulous package and your suggestions helped me solve my problems at hands. As I need to incrementally increase each of several large matrices (about 1000 rows *10000 columns...

Rmpi long vector support
Hao Yu · Aug 8, 2013 · r-sig-hpc

To all, Look like the max buffer size in any MPI transfer is restricted to 2^31-1. Whether XLENGTH is used or not will not change it. This is the restriction of MPI-2. MPI-3 will address some...

Rmpi long vector support
Hao Yu · Aug 7, 2013 · r-sig-hpc

Hi Simon, Thank for pointing out this XLENGTH and R_xlen_t. I will add them in the next release of Rmpi. However I do run into the following issue. On a debian system with R 3.0.1 (8GB...

dividing a matrix by positive sum or negative sum depending on the sign
Hao Cen · Nov 12, 2009 · r-help

Hi David and Dimitris, Thanks for your suggestions. They are very helpful. Jeff On Wed, November 11, 2009 12:12 pm, David Winsemius wrote: > > On Nov 11, 2009, at 10:57 AM, David Winsemius wrote: > > >> >> On Nov 11, 2009, at...

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