Description Parallel computing for constraint-based algorithms Author(s)
How to use the bnlearn package with the parallel computing environment provided by the snow or parallel packages.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | # load parallel and bnlearn and rsprng.
> library(parallel)
> library(bnlearn)
> cl = makeCluster(2)
# check it works.
> clusterEvalQ(cl, runif(10))
[[1]]
[1] 0.9245585 0.1876445 0.3371175 0.2267916 0.0392876 0.9085125
[7] 0.9041345 0.7408525 0.1537343 0.9503611
[[2]]
[1] 0.1932651 0.8218854 0.6087155 0.9037118 0.5257906 0.8737284
[7] 0.5225114 0.8149691 0.1671706 0.6883363
# 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] 47
[[2]]
[1] 42
# a few tests are still executed by this process.
> (test.counter())
[1] 4
# stop the cluster.
> stopCluster(cl)
|
Marco Scutari
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.