You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it used to be the case that when revdep_check() was called with a value for Ncpus, it would install packages in parallel because it passed Ncpus to install.packages(). Now the packages seem to be installed one at a time, which is much slower -- I'm installing over 600 packages for a revdep check, so the cost is not trivial. I believe this happens because it ends up calling install_remotes, which looks like it installs packages one at a time.
The text was updated successfully, but these errors were encountered:
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/
lockbot
locked and limited conversation to collaborators
Sep 18, 2018
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I think it used to be the case that when
revdep_check()
was called with a value forNcpus
, it would install packages in parallel because it passedNcpus
toinstall.packages()
. Now the packages seem to be installed one at a time, which is much slower -- I'm installing over 600 packages for a revdep check, so the cost is not trivial. I believe this happens because it ends up callinginstall_remotes
, which looks like it installs packages one at a time.The text was updated successfully, but these errors were encountered: