-
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
Add Katz Centrality to pylibcugraph, refactor Katz Centrality for cugraph #2201
Merged
rapids-bot
merged 29 commits into
rapidsai:branch-22.06
from
betochimas:branch-22.06-wip-sg-katz
Apr 20, 2022
Merged
Add Katz Centrality to pylibcugraph, refactor Katz Centrality for cugraph #2201
rapids-bot
merged 29 commits into
rapidsai:branch-22.06
from
betochimas:branch-22.06-wip-sg-katz
Apr 20, 2022
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
Fea c api katz
Merging 22.06 branch into wip sg katz branch
Fea c api katz
Include PR#2124
betochimas
added
improvement
Improvement / enhancement to an existing function
non-breaking
Non-breaking change
labels
Apr 6, 2022
Codecov Report
@@ Coverage Diff @@
## branch-22.06 #2201 +/- ##
================================================
+ Coverage 70.82% 71.33% +0.51%
================================================
Files 170 171 +1
Lines 11036 11161 +125
================================================
+ Hits 7816 7962 +146
+ Misses 3220 3199 -21
Continue to review full report at Codecov.
|
…mas/cugraph into branch-22.06-wip-sg-katz
Merging 4/7-11 commits
Revert "Merging 4/7-11 commits"
Revert "Revert "Merging 4/7-11 commits""
Fix error from two conflicting merges (rapidsai#2219)
rlratzel
reviewed
Apr 18, 2022
betochimas
added
breaking
Breaking change
and removed
non-breaking
Non-breaking change
labels
Apr 19, 2022
rlratzel
approved these changes
Apr 19, 2022
@gpucibot merge |
rapids-bot bot
pushed a commit
that referenced
this pull request
Apr 27, 2022
This PR is a slight reversion of a minor change from #2201, which changed the signature for the refactored SG Katz method in cugraph. That PR was breaking, but when combined with this one, will be non-breaking for the next release. This closes #1759 (already closed). Authors: - https://github.com/betochimas Approvers: - Rick Ratzel (https://github.com/rlratzel) URL: #2242
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
This PR adds Single-GPU (SG) Katz Centrality to the pylibcugraph software stack, as well as refactoring SG Katz Centrality for the cugraph software stack. Both Katz Centrality algorithms are wrappers calling a lower level version of the algorithm, originally based on the C API. This PR directly depends on #2192, and combined with it, should close #1759.