detectCores <- local({
cache <- list(NULL, NULL)
function(logical = TRUE) {
key <- as.integer(logical) + 1L
value <- cache[[key]]
if (!is.null(value)) return(value)
stop_if_not(is.logical(logical), length(logical) == 1L, !is.na(logical))
## Get number of system cores from option, cache, and finally
## detectCores(). This is also designed such that it is indeed
## possible to return NA_integer_.
value <- getOption2("parallelly.availableCores.system", NULL)
if (!is.null(value)) {
value <- as.integer(value)
return(value)
}
value <- parallel::detectCores(logical = logical)
## If unknown, set default to 1L
if (is.na(value)) {
value <- 1L
} else {
value <- as.integer(value)
}
## Assert positive integer
stop_if_not(length(value) == 1L, is.numeric(value),
is.finite(value), value >= 1L)
cache[[key]] <<- value
value
}
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.