-
Notifications
You must be signed in to change notification settings - Fork 915
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
Return count of set bits from inplace_bitmask_and. #9904
Return count of set bits from inplace_bitmask_and. #9904
Conversation
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.
Some some small style changes
…lace-bitmask-and-null-count
rerun tests |
1 similar comment
rerun tests |
…lace-bitmask-and-null-count
…lace-bitmask-and-null-count
…lace-bitmask-and-null-count
…erimpose_parent_nulls.
Codecov Report
@@ Coverage Diff @@
## branch-22.02 #9904 +/- ##
================================================
- Coverage 10.49% 10.41% -0.08%
================================================
Files 119 119
Lines 20305 20498 +193
================================================
+ Hits 2130 2134 +4
- Misses 18175 18364 +189
Continue to review full report at Codecov.
|
@gpucibot merge |
This PR updates the function
cudf::detail::inplace_bitmask_and
to return the count of set bits in the result. This change alignsinplace_bitmask_and
with behavior changes introduced in #9616 to return counts of set bits (valid items in the nullmask) from functions acting on bitmasks. This will be helpful for #9621.