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.
Mainly for curiosity, why did you move graph_view_mg.cu to here?
There was a problem hiding this comment.
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