.parse_setup_settings | R Documentation |
Internal function for parsing settings related to the computational setup
.parse_setup_settings(
config = NULL,
parallel = waiver(),
parallel_nr_cores = waiver(),
restart_cluster = waiver(),
cluster_type = waiver(),
backend_type = waiver(),
server_port = waiver(),
...
)
config |
A list of settings, e.g. from an xml file. |
parallel |
(optional) Enable parallel processing. Defaults to |
parallel_nr_cores |
(optional) Number of cores available for parallelisation. Defaults to 2. This setting does nothing if parallelisation is disabled. |
restart_cluster |
(optional) Restart nodes used for parallel computing
to free up memory prior to starting a parallel process. Note that it does
take time to set up the clusters. Therefore setting this argument to |
cluster_type |
(optional) Selection of the cluster type for parallel
processing. Available types are the ones supported by the parallel package
that is part of the base R distribution: |
backend_type |
(optional) Selection of the backend for distributing copies of the data. This backend ensures that only a single master copy is kept in memory. This limits memory usage during parallel processing. Several backend options are available, notably |
server_port |
(optional) Integer indicating the port on which the socket server or RServe process should communicate. Defaults to port 6311. Note that ports 0 to 1024 and 49152 to 65535 cannot be used. |
... |
Unused arguments. |
List of parameters related to the computational setup.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.