stopCluster {ParallelLogger} | R Documentation |
Stop the cluster
Description
Stop the cluster
Usage
stopCluster(cluster)
Arguments
cluster |
The cluster to stop |
Examples
fun <- function(x) {
return (x^2)
}
cluster <- makeCluster(numberOfThreads = 3)
clusterApply(cluster, 1:10, fun)
stopCluster(cluster)
[Package ParallelLogger version 3.3.0 Index]