Re: [R] using SNOW and clusterApplyLB to run jobs parallel

2011-02-05 Thread Uwe Ligges
On 01.02.2011 23:07, kparamas wrote: I have this function and want to run it parallel with different sets of data. Using SNOW and clusterApplyLB. Nice, but what is your question? PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self

[R] using SNOW and clusterApplyLB to run jobs parallel

2011-02-01 Thread kparamas
I have this function and want to run it parallel with different sets of data. Using SNOW and clusterApplyLB. system.time(out <- mclapply(cData, plotGraph)) #each cData contains 100X6000 doubles system.time(out <- mclapply(cData2, plotGraph)) system.time(out <- mclapply(cData3, plotGraph)) system.