Triangle Counting#2253
Merged
rapids-bot[bot] merged 39 commits intorapidsai:branch-22.06from May 17, 2022
Merged
Conversation
| @@ -0,0 +1,492 @@ | |||
| /* | |||
| * Copyright (c) 2020-2022, NVIDIA CORPORATION. | |||
Collaborator
There was a problem hiding this comment.
Shouldn't this be just 2022
Contributor
Author
There was a problem hiding this comment.
Fixed (tests/community/triangle_count_test.cpp & mg_triangle_count_test.cpp as well).
rapids-bot bot
pushed a commit
that referenced
this pull request
May 16, 2022
This defines the C API for triangle counting. This PR is independent of #2253 and can be merged independently. The change here defines the C API and returns the `CUGRAPH_NOT_IMPLEMENTED` error when called. Once #2253 is completed and merged, a follow-up PR will fill in the C API implementation for triangle counting (although the code is written and untested in this PR). Authors: - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - Seunghwa Kang (https://github.com/seunghwak) - Rick Ratzel (https://github.com/rlratzel) URL: #2271
ChuckHastings
approved these changes
May 16, 2022
Codecov Report
@@ Coverage Diff @@
## branch-22.06 #2253 +/- ##
=============================================
Coverage 63.97% 63.97%
=============================================
Files 100 100
Lines 4436 4436
=============================================
Hits 2838 2838
Misses 1598 1598 Continue to review full report at Codecov.
|
Member
|
@gpucibot merge |
This file contains hidden or 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
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.
Implements SG & MG Triangle Counting.