Re: [R] parallel computing in r....

2018-06-28 Thread Juan Telleria Ruiz de Aguirre
Maybe this R-bloggers post could also help you: https://www.google.es/amp/s/www.r-bloggers.com/implementing-parallel-processing-in-r/amp/ https://www.google.es/amp/s/www.r-bloggers.com/a-guide-to-parallelism-in-r/amp/ [[alternative HTML version deleted]]

Re: [R] parallel computing in r....

2018-06-24 Thread Jeff Newmiller
You cannot send one task to 12 processors... the price of parallelism is that you must break down your task into smaller tasks. Once you have number of tasks equal to our more than the number of available cores then the higher level functions such as parLapply or mclapply can shuffle tasks onto

Re: [R] Parallel Computing in R

2015-02-05 Thread Pascal Oettli
Hi, You already asked this here (http://stackoverflow.com/questions/28357210/parallel-computing-in-r) and got some comments. Regards, Pascal On Fri, Feb 6, 2015 at 11:58 AM, Zhenchuan Wang wrote: > I usually need to compute P-values as following: > 1. generate one sample (usually it is a matri

[R] Parallel Computing in R

2015-02-05 Thread Zhenchuan Wang
I usually need to compute P-values as following: 1. generate one sample (usually it is a matrix) 2. apply several methods (I already wrote a subfunction for each method, and they are independent) to the generated sample to get pvalues. 3. compare the pvalues. Since each method mentioned above ta