Learn R Programming

dclone (version 1.4-0)

parLoadModule: Dynamically load JAGS modules on parallel workers

Description

A JAGS module is a dynamically loaded library that extends the functionality of JAGS. These functions load and unload JAGS modules and show the names of the currently loaded modules on parallel workers.

Usage

parLoadModule(cl, name, path, quiet=FALSE)
parUnloadModule(cl, name, quiet=FALSE)
parListModules(cl)

Arguments

cl
a cluster object created by the snow package.
name
name of the load module to be loaded
path
file path to the location of the DLL. If omitted, the option jags.moddir is used to locate the modules
quiet
a logical. If TRUE, no message will be printed about loading the package

See Also

list.modules, load.module, unload.module

Examples

Run this code
cl <- makeSOCKcluster(3)
parListModules(cl)
parLoadModule(cl, "glm")
parListModules(cl)
parUnloadModule(cl, "glm")
parListModules(cl)
stopCluster(cl)

Run the code above in your browser using DataLab