Description Usage Arguments Details Author(s) See Also Examples
The number of threads is 0 by default (corresponding to all available threads), but can be set manually using this function. If you clear environment variables or affect the "RcppMLthreads" environment variable specifically, you will need to set your number of preferred threads again.
1 | setRcppMLthreads(threads)
|
threads |
number of threads to be used in RcppML functions that are parallelized with OpenMP. |
The number of threads set affects OpenMP parallelization only for functions in the RcppML package. It does not affect other R packages that use OpenMP. Parallelization is used for projection of linear factor models with rank > 2, calculation of mean squared error for linear factor models, and for divisive clustering.
Zach DeBruine
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
# set serial configuration
setRcppMLthreads(1)
getRcppMLthreads()
# restore default parallel configuration,
# letting OpenMP decide how many threads to use
setRcppMLthreads(0)
getRcppMLthreads()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.