View source: R/MiraiFutureBackend-class.R
mirai_cluster | R Documentation |
WARNING: This function must never be called.
It may only be used with future::plan()
mirai_cluster(..., envir = parent.frame())
envir |
The environment from where global objects should be identified. |
... |
Not used. |
Nothing.
# Manually launch mirai workers
mirai::daemons(parallelly::availableCores())
plan(mirai_cluster)
# A function that returns a future
# (note that N is a global variable)
f <- function() future({
4 * sum((runif(N) ^ 2 + runif(N) ^ 2) < 1) / N
}, seed = TRUE)
# Run a simple sampling approximation of pi in parallel using M * N points:
N <- 1e6 # samples per worker
M <- 10 # iterations
pi_est <- Reduce(sum, Map(value, replicate(M, f()))) / M
print(pi_est)
## Switch back to sequential processing
plan(sequential)
## Shut down manually launched mirai workers
invisible(mirai::daemons(0))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.