-
Notifications
You must be signed in to change notification settings - Fork 302
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
C++ implementation for unweighted Jaccard/Sorensen/Overlap #2750
C++ implementation for unweighted Jaccard/Sorensen/Overlap #2750
Conversation
rerun tests |
src/community/detail/common_methods_mg.cu | ||
src/community/detail/common_methods_sg.cu | ||
src/detail/utility_wrappers.cu | ||
src/structure/graph_view_mg.cu |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mainly for curiosity, why did you move graph_view_mg.cu to here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ninja tracing showed that it take 217 seconds to compile. I basically moved everything that was slow (by the unscientific method of my eyes looking at the graphic) up to the top to get it started earlier in the parallel schedule.
@gpucibot merge |
Codecov ReportBase: 59.79% // Head: 59.81% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## branch-22.10 #2750 +/- ##
================================================
+ Coverage 59.79% 59.81% +0.01%
================================================
Files 111 111
Lines 6184 6388 +204
================================================
+ Hits 3698 3821 +123
- Misses 2486 2567 +81
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Closes #2543
Implements unweighted similarity algorithms using the new primitive defined in #2728.
Weighted implementations will be tracked by issue #2749