Nothing
## based sorta on parallel::detectCores
guessNumCores <- function(logical = FALSE) {
if (is.na(logical)) stop("logical cannot be NA")
if (length(logical) != 1) stop("logical must be length 1")
cGuess <- .Call(C_dbarts_guessNumCores)
if (logical == FALSE && !is.na(cGuess[1])) return(cGuess[1])
if (logical == TRUE && !is.na(cGuess[2])) return(cGuess[2])
systems <- list(linux = "grep \"^processor\" /proc/cpuinfo 2>/dev/null | wc -l",
darwin = if (logical) "/usr/sbin/sysctl -n hw.logicalcpu 2>/dev/null" else "/usr/sbin/sysctl -n hw.physicalcpu 2>/dev/null",
solaris = if (logical) "/usr/sbin/psrinfo -v | grep 'Status of.*processor' | wc -l" else "/bin/kstat -p -m cpu_info | grep :core_id | cut -f2 | uniq | wc -l",
freebsd = "/sbin/sysctl -n hw.ncpu 2>/dev/null", openbsd = "/sbin/sysctl -n hw.ncpu 2>/dev/null",
irix = c("hinv | grep Processors | sed 's: .*::'", "hinv | grep '^Processor '| wc -l"))
for (i in seq_along(systems)) {
if (length(grep(paste0("^", names(systems)[i]), R.version$os)) > 0) {
for (command in systems[i]) {
commandResult <- gsub("^ +", "", system(command, TRUE)[1])
if (length(grep("^[1-9]", commandResult))) return(as.integer(commandResult))
}
}
}
NA_integer_
}
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.