Re: [OMPI users] Newbie question continues, a step toward real app

2011-01-14 Thread Martin Siegert
On Thu, Jan 13, 2011 at 05:34:48PM -0800, Tena Sakai wrote: > Hi Gus, > > > Did you speak to the Rmpi author about this? > > No, I haven't, but here's what the author wrote: > https://stat.ethz.ch/pipermail/r-sig-hpc/2009-February/000104.html > in which he states: >...The way of spawning R sl

Re: [OMPI users] Newbie question continues, a step toward real app

2011-01-13 Thread Tena Sakai
Hi Gus, > Did you speak to the Rmpi author about this? No, I haven't, but here's what the author wrote: https://stat.ethz.ch/pipermail/r-sig-hpc/2009-February/000104.html in which he states: ...The way of spawning R slaves under LAM is not working any more under OpenMPI. Under LAM, one just

Re: [OMPI users] Newbie question continues, a step toward real app

2011-01-13 Thread Gus Correa
Tena Sakai wrote: Fantastic, Gus! Now I think I got framework pretty much done. The rest is to work on 'problem solving' end with R. Many thanks for your insight and kindness. I really appreciate it. Regards, Tena Sakai tsa...@gallo.ucsf.edu Hi Tena I'm glad that it helped somebody at the

Re: [OMPI users] Newbie question continues, a step toward real app

2011-01-13 Thread Tena Sakai
Fantastic, Gus! Now I think I got framework pretty much done. The rest is to work on 'problem solving' end with R. Many thanks for your insight and kindness. I really appreciate it. Regards, Tena Sakai tsa...@gallo.ucsf.edu On 1/13/11 2:40 PM, "Gus Correa" wrote: > Tena Sakai wrote: >> Hi,

Re: [OMPI users] Newbie question continues, a step toward real app

2011-01-13 Thread Gus Correa
Tena Sakai wrote: Hi, I have a script I call fib.r. It looks like: #!/usr/bin/env r fib <- function( n ) { a <- 0 b <- 1 for ( i in 1:n ) { t <- b b <- a a <- a + t