Skip to content
Prev 155436 / 398502 Next

cluster/snow question

Hi Tolga,

in SNOW you have to start a cluster with the command

 > library(snow)
 > cluster <- makeCluster(#nodes)

The object "cluster" is a list with an object for each node and each 
object again is a list with all informations (rank, comm, tags)
The size of the cluster is the length of the list.

 > #nodes == length(cluster)

E.g. the rank for node one you can get by
 > cluster[[1]]$rank

Best
Markus

tolga.i.uzuner at jpmorgan.com schrieb: