Nothing
#' @tags %dopar%
#' @tags sequential multisession cluster multicore
library(doFuture)
strategies <- future:::supportedStrategies()
message("*** doFuture() - error handling w/ 'stop' ...")
registerDoFuture()
for (strategy in strategies) {
message(sprintf("- plan('%s') ...", strategy))
plan(strategy)
mu <- 1.0
sigma <- 2.0
res <- tryCatch({
foreach(i = 1:10, .errorhandling = "stop") %dopar% {
if (i %% 2 == 0) stop(sprintf("Index error ('stop'), because i = %d", i))
list(i = i, value = dnorm(i, mean = mu, sd = sigma))
}
}, error = identity)
print(res)
stopifnot(
inherits(res, "error"),
grepl("Index error", conditionMessage(res))
)
# Shutdown current plan
plan(sequential)
message(sprintf("- plan('%s') ... DONE", strategy))
} ## for (strategy ...)
message("*** doFuture() - error handling w/ 'stop' ... DONE")
message("*** doFuture() - error handling w/ 'pass' ...")
for (strategy in strategies) {
message(sprintf("- plan('%s') ...", strategy))
plan(strategy)
mu <- 1.0
sigma <- 2.0
res <- foreach(i = 1:10, .errorhandling = "pass") %dopar% {
if (i %% 2 == 0) stop(sprintf("Index error ('pass'), because i = %d", i))
list(i = i, value = dnorm(i, mean = mu, sd = sigma))
}
str(res)
stopifnot(
is.list(res),
length(res) == 10L
)
message(sprintf("- plan('%s') ... DONE", strategy))
} ## for (strategy ...)
message("*** doFuture() - error handling w/ 'pass' ... DONE")
message("*** doFuture() - error handling w/ 'remove' ...")
for (strategy in strategies) {
message(sprintf("- plan('%s') ...", strategy))
plan(strategy)
mu <- 1.0
sigma <- 2.0
res <- foreach(i = 1:10, .errorhandling = "remove") %dopar% {
if (i %% 2 == 0) stop(sprintf("Index error ('remove'), because i = %d", i))
list(i = i, value = dnorm(i, mean = mu, sd = sigma))
}
str(res)
stopifnot(
is.list(res),
length(res) == 5L
)
message(sprintf("- plan('%s') ... DONE", strategy))
} ## for (strategy ...)
message("*** doFuture() - error handling w/ 'remove' ... DONE")
message("*** doFuture() - invalid accumulator ...")
## This replicates how foreach:::doSEQ() handles it
boom <- function(...) stop("boom!")
res <- foreach(i = 1:3, .combine = boom) %dopar% { i }
print(res)
stopifnot(is.null(res))
message("*** doFuture() - invalid accumulator ... DONE")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.