| SerialParam-class {BiocParallel} | R Documentation |
This class is used to parameterize serial evaluation, primarily to facilitate easy transition from parallel to serial code.
SerialParam(catch.errors = TRUE)
catch.errors |
|
Flag to determine in
apply-like functions (see e.g. bplapply) whether
to quit with an error as soon as one application fails or
encapsulation of function calls in try
blocks which triggers a resume mechanism (see
bpresume). Defaults to TRUE.
Return an object to be used for serial evaluation of otherwise
parallel functions such as bplapply,
bpvec.
The following generics are implemented and perform as documented on
the corresponding help page (e.g., ?bpworkers):
bpworkers. bpisup, bpstart,
bpstop, are implemented, but do not have any
side-effects.
Martin Morgan mailto:mtmorgan@fhcrc.org
getClass("BiocParallelParam") for additional parameter classes.
register for registering parameter classes for use in parallel
evaluation.
p <- SerialParam() simplify2array(bplapply(1:10, sqrt, BPPARAM=p)) bpvec(1:10, sqrt, BPPARAM=p) ## Not run: register(SerialParam(), default=TRUE) ## End(Not run)