bnlearn (version 0.8)

snow integration: bnlearn - snow package integration

Description

How to use the bnlearn package with the parallel computing environment provided by the snow package.

Arguments

Parallel computing for constraint-based algorithms

# load snow, bnlearn and rsprng (for parallel random number # generation, just in case it's needed); start LAM/MPI via # lamboot if using an MPI cluster. > library(snow) > library(bnlearn) > library(rsprng) # initialize the cluster ("socket" and "PVM" clusters are fine, too). > cl <- makeCluster(2, type = "MPI") Loading required package: Rmpi 2 slaves are spawned successfully. 0 failed. > clusterSetupSPRNG(cl) # load the data. > data(learning.test) # call a learning function passing the cluster object (the # return value of the previous makeCluster() call) as a # parameter. > res = gs(learning.test, cluster = cl) # note that the number of test is evenly divided between # the two nodes of the cluster. > clusterEvalQ(cl, .test.counter) [[1]] [1] 46

[[2]] [1] 40 # a few tests are still executed by this process. > .test.counter [1] 4 # stop the cluster. > stopCluster(cl) [1] 1