Description Usage Arguments Details Value Author(s) See Also Examples
Use functions on this page to influence scheduling of parallel processing.
1 | bpschedule(x)
|
x |
An instance of a
|
bpschedule
returns a logical(1) indicating whether the parallel
evaluation should occur at this point.
bpschedule
returns a scalar logical.
Martin Morgan mailto:mtmorgan@fhcrc.org.
BiocParallelParam
for possible values of x
.
1 2 3 4 5 6 7 8 | bpschedule(SnowParam()) # TRUE
bpschedule(MulticoreParam(2)) # FALSE on windows
p <- MulticoreParam()
bpschedule(p) # TRUE
bplapply(1:2, function(i, p) {
bpschedule(p) # FALSE
}, p = p, BPPARAM=p)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.