Nothing
#' @tags %dopar%
#' @tags sequential multisession cluster multicore
library(doFuture)
strategies <- future:::supportedStrategies()
message("*** doFuture - reproducibility ...")
registerDoFuture()
res0 <- NULL
for (strategy in strategies) {
message(sprintf("- plan('%s') ...", strategy))
plan(strategy)
mu <- 1.0
sigma <- 2.0
res <- foreach(i = 1:3, .packages = "stats") %dopar% {
dnorm(i, mean = mu, sd = sigma)
}
print(res)
if (is.null(res0)) {
res0 <- res
} else {
stopifnot(all.equal(res, res0))
}
# Shutdown current plan
plan(sequential)
message(sprintf("- plan('%s') ... DONE", strategy))
} ## for (strategy ...)
message("*** doFuture - reproducibility ... 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.