This repository was archived by the owner on Jul 28, 2025. It is now read-only.
Pairwise Multipoint Equals Count function#1022
Merged
rapids-bot[bot] merged 63 commits intorapidsai:branch-23.06from Apr 27, 2023
Merged
Pairwise Multipoint Equals Count function#1022rapids-bot[bot] merged 63 commits intorapidsai:branch-23.06from
rapids-bot[bot] merged 63 commits intorapidsai:branch-23.06from
Conversation
Member
|
Note skip-ci does nothing in PR titles. |
isVoid
reviewed
Mar 31, 2023
…com/cuspatial into feature/allpairs_point_equals_count
Co-authored-by: Mark Harris <783069+harrism@users.noreply.github.com>
Co-authored-by: Mark Harris <783069+harrism@users.noreply.github.com>
Co-authored-by: Mark Harris <783069+harrism@users.noreply.github.com>
…com/cuspatial into feature/allpairs_point_equals_count
Co-authored-by: Mark Harris <783069+harrism@users.noreply.github.com>
…count.cuh Co-authored-by: Mark Harris <783069+harrism@users.noreply.github.com>
…com/cuspatial into feature/allpairs_point_equals_count
harrism
suggested changes
Apr 26, 2023
| namespace cuspatial { | ||
|
|
||
| /** | ||
| * @brief Compute the number of multipoint pairs that are equal. |
Member
There was a problem hiding this comment.
This is not addressed yet. The original @brief is not accurate.
Comment on lines
+59
to
+62
| * @tparam MultiPointRangeA Iterator over multipoints. Must meet the requirements of | ||
| * [LegacyRandomAccessIterator][LinkLRAI] and be device-accessible. | ||
| * @tparam MultiPointRangeB Iterator over multipoints. Must meet the requirements of | ||
| * [LegacyRandomAccessIterator][LinkLRAI] and be device-accessible. |
harrism
approved these changes
Apr 26, 2023
harrism
reviewed
Apr 26, 2023
| @@ -0,0 +1,157 @@ | |||
| /* | |||
Member
There was a problem hiding this comment.
This file seems to be a duplicate of the one in the equality directory. Perhaps copied here accidentally?
harrism
reviewed
Apr 26, 2023
Comment on lines
+21
to
+22
| #include <cuspatial/experimental/pairwise_multipoint_equals_count.cuh> | ||
| #include <cuspatial/experimental/ranges/multipoint_range.cuh> |
Contributor
Author
|
/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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Closes #1020
Description
This contribution adds
pairwise_multipoint_equals_countto the column and header-only APIs.pairwise_multipoint_equals_countcounts the number of times that each point in the lhs occurs in the rhs.Written while pairing with @isVoid.
Checklist