-
Notifications
You must be signed in to change notification settings - Fork 948
Implement BIT_COUNT
unary operation
#18589
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
Conversation
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
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.
+1 for Java
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
Signed-off-by: Nghia Truong <[email protected]>
I've just added the |
Signed-off-by: Nghia Truong <[email protected]>"
Signed-off-by: Nghia Truong <[email protected]>
This reverts commit 0a40cc1.
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.
Thanks, approving the python change! I also noticed the unary tests in pylibcudf are lacking, but I'll leave that as a follow-up for myself.
Signed-off-by: Nghia Truong <[email protected]>
/merge |
This adds support for `bit_count` SQL function. Depends on: * rapidsai/cudf#18589 Closes #12571. --------- Signed-off-by: Nghia Truong <[email protected]> Co-authored-by: Ferdinand Xu <[email protected]>
This implements bitwise count (
BIT_COUNT
) unary operation for counting the number of set bits in the given integer numbers.Partially contributes to #18552.