-
Notifications
You must be signed in to change notification settings - Fork 57
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
Efficient version for global motif counts #1322
Conversation
… multiple time deltas
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1322 +/- ##
==============================
==============================
☔ View full report in Codecov by Sentry. |
Also just edited some python docs for balance that were referring to rust objects. |
* array of accumulators works and efficient algo for global motifs with multiple time deltas * agg not agging * try with global agg * global algo works * rm print statement * fmt * renamed files to be more precise * fixed something in docs * remove global functionality from local since this is done elsewhere * motif plotting capability * remove print statement oops * ordinal number for JOSS --------- Co-authored-by: Ben Steer <[email protected]>
What changes were proposed in this pull request?
Array accumulators (thank you @fabianmurariu !) and global motif counting algo
Why are the changes needed?
Other algorithm was storing results per vertex in memory till right at the end, this is a massive memory hog unless you particularly care about the local results, especially if you're running with multiple time deltas
Does this PR introduce any user-facing change? If yes is this documented?
TBC
How was this patch tested?
Small unit test
Are there any further changes required?
need to expose to python + add back in the array acc test