Nothing
#' @keywords internal
beginparallel<-function(parallel=1, type="PSOCK", seed=NULL, packagenames=c("sspse"),verbose=TRUE){
# require(parallel)
# Make FORK the default on the Mac
if(missing(type) && Sys.info()["sysname"]=="Darwin"){type <- "FORK"}
if(verbose){
cat(paste("Engaging warp drive using",type,"...\n",sep=" "))
}
#
# Start Cluster
#
### Set up the cluster
cl <- parallel::makeCluster(parallel,type=type)
### initialize parallel random number streams
if(is.null(seed)){
parallel::clusterSetRNGStream(cl)
}else{
parallel::clusterSetRNGStream(cl,iseed=seed)
}
### start each virtual machine with libraries loaded
for(pkg in packagenames){
attached <- parallel::clusterCall(cl, require, package=pkg, character.only=TRUE)
}
#
# Run the jobs with Rmpi
#
### make sure that R has printed out console messages before go parallel
utils::flush.console()
return(cl)
}
#' @keywords internal
endparallel<-function(cl, type="PSOCK", finalize=TRUE, verbose=TRUE){
parallel::stopCluster(cl)
# Activate the next line for Rmpi
# if(finalize & type=="MPI"){Rmpi::mpi.finalize()}
invisible()
}
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.