The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The dodgr
package implements most calculations by
default in parallel, using the maximum number of available threads or
cores. Numbers of available threads can be determined with either of the
following two functions:
parallel::detectCores ()
## [1] 12
RcppParallel::defaultNumThreads ()
## [1] 12
Numbers of cores used in calculations can be controlled by specifying
the numThread
parameter passed to the
RcppParallel
function setThreadOptions
.
For control over numbers of threads used, this function must be called
prior to calling any dodgr
functions. For example,
single-threaded processing can be ensured by first making the following
call:
RcppParallel::setThreadOptions (numThreads = 1L)
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.