We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the appendix of the documentation it can be seen that fitting the model m1 takes 202 minutes.
m1
Using the optimParallel package running on pqR (instead of GNU R) with 8 cores (Amazon EC2 t3.2xlarge) this model was fitted in 26 minutes.
If you want to experiment with this, do the following:
git clone https://github.com/mardukbp/optimParallel git clone https://github.com/mardukbp/oSCR.git -b optimParallel git clone https://github.com/mardukbp/pqR.git -b all-patches
Compile pqR as usual: ./configure && make.
./configure && make
Install the R packages in pqR:
deps <- c("abind", "doParallel", "gdistance", "Formula", "FNN") sapply(deps, function(x) if(!require(x, character.only=TRUE)) install.packages(x)) setwd(“/path/to/packages”) install.packages(“optimParallel", repos=NULL, type="source") install.packages("oSCR", repos=NULL, type="source")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the appendix of the documentation it can be seen that fitting the model
m1
takes 202 minutes.Using the optimParallel package running on pqR (instead of GNU R) with 8 cores (Amazon EC2 t3.2xlarge) this model was fitted in 26 minutes.
If you want to experiment with this, do the following:
Compile pqR as usual:
./configure && make
.Install the R packages in pqR:
The text was updated successfully, but these errors were encountered: