hostParams | R Documentation |
Initialize for NlmeParallelHost
hostParams(
sharedDirectory,
installationDirectory = Sys.getenv("INSTALLDIR"),
hostName = Sys.info()[["nodename"]],
machineName = "127.0.0.1",
hostType = Sys.info()[["sysname"]],
numCores = 4,
parallelMethod = "LOCAL_MPI",
userName = "",
privateKeyFile = NULL,
userPassword = "",
scriptPath = "",
rLocation = "",
isLocal = TRUE
)
sharedDirectory |
Directory where temporary NLME run folder is created during execution. If missing, the current working directory will be used. |
installationDirectory |
Directory containing NLME libraries/scripts |
hostName |
Visual name of the host (default A name by which the machine is known on the network) |
machineName |
IP address or name of the host(default 127.0.0.1) |
hostType |
|
numCores |
Integer; Number of compute cores. 4 by default |
parallelMethod |
String; Options are:
|
userName |
String; How the user is identified to the remote system |
privateKeyFile |
Path to private key file, see
|
userPassword |
Either a string or a callback function for
password prompt, see |
scriptPath |
a path to the script to be executed before starting Rscript within Certara.NLME8 package on the remote host. Ignored when running locally. |
rLocation |
Path to Rscript executable on remote host; ignored on local host |
isLocal |
Is this a local |
NlmeParallelHost class instance
host <- hostParams(sharedDirectory = tempdir(),
parallelMethod = "LOCAL_MPI",
hostName = "Local",
numCores = 4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.