Description Usage Arguments Value Examples
getBackend
is used to obtain BiocParallel
Back-end to allow
parallel computing.
1 | getBackend(ncore, BPPARAM = NULL, verbose = FALSE)
|
ncore |
Number of cores used for parallel computing. By default max number
of cores available in the machine will be utilized. If |
BPPARAM |
An optional |
verbose |
Logical parameter. Should the function be verbose? |
A BiocParallel
object that can be used for parallel
computing.
1 2 3 4 5 6 7 | # Non-parallel mode
be <- getBackend(ncore = 1, verbose = TRUE)
be
# parallel mode (2 workers)
be <- getBackend(ncore = 2, verbose = TRUE)
be
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.