Description Usage Arguments Author(s) Examples
View source: R/metaseqr.util.R
A wrapper around normal and parallel apply
(mclapply
or multicore package) to avoid
excessive coding for control of single or parallel code
execution. Internal use.
1 |
m |
a logical indicating whether to execute in parallel or not. |
... |
the rest arguments to |
Panagiotis Moulos
1 2 3 4 5 6 7 | multic <- check.parallel(0.8)
# Test meaningful only in machines where parallel computation
# supported
if (multic) {
system.time(r<-wapply(TRUE,1:10,function(x) runif(1e+6)))
system.time(r<-wapply(FALSE,1:10,function(x) runif(1e+6)))
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.