| bpschedule {BiocParallel} | R Documentation |
Use functions on this page to influence scheduling of parallel processing.
bpschedule(x)
x |
An instance of a
|
... |
Additional arguments, perhaps used by methods. |
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.
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)