-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
Speed improvements for PE, RPE etc #831
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This saves some repeated calculation of the same values per processing group.
This should avoid the need to climb up and down the tree when PD is not needed.
Benchmarking shows it to be faster.
We can grab these once after all the weights have been calculated. This means we do not need to run all the hash mergers and so Data::Recursive and Panda::Lib can be removed from this file.
It avoids repeated calls to the last-if sub by running it all in one, and also assigns as it goes.
A micro-optimisation but otherwise it triggers huge numbers of calls for no real update when analysing large data sets.
… anyway Still has much repeated looping.
Mainly by avoiding recursion in internal methods.
This avoids recursion in delete_cached_values_below.
Returns an array of node names up to and including to the root. This saves time in the Phylo calculations as there is no need to then get the names. The array args variant does all the work.
This reduces the time for one large tree from ~14 s to ~6.5 s. Whether it scales linearly remains to be seen. The commented code in Spatial.pm will be cleaned up in a later commit.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Includes a few other minor cleanups.