-
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
bitmask_or implementation with bitmask refactor #7406
Conversation
cd9210c
to
d3382e0
Compare
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7406 +/- ##
==============================================
Coverage ? 81.86%
==============================================
Files ? 101
Lines ? 16884
Branches ? 0
==============================================
Hits ? 13822
Misses ? 3062
Partials ? 0 Continue to review full report at Codecov.
|
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.
Java approval
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.
Just move the sync and this looks good to go. Thanks for doing the extra work of cleaning up with the device_span/host_span
.
rerun tests -- cuda 11.0 python 3.8 Ubuntu 18.04 errored with |
Rerun tests |
rerun tests |
@gpucibot merge |
Fix for issue caused by stale PR issue from #7406 Authors: - @rwlee - Keith Kraus (@kkraus14) Approvers: - Keith Kraus (@kkraus14) - Mike Wilson (@hyperbolic2346) - GALI PREM SAGAR (@galipremsagar) - Jake Hemstad (@jrhemstad) - Vukasin Milovanovic (@vuule) - Paul Taylor (@trxcllnt) URL: #7533
Refactors the bitmask merging functionality to support any binary function, allowing for `bitwise_or` support in addition the existing `bitwise_and` support. Includes changes to the Java api and JNI to access the `bitwise_or` functionality. Authors: - @rwlee Approvers: - Jason Lowe (@jlowe) - Jake Hemstad (@jrhemstad) - Christopher Harris (@cwharris) URL: rapidsai#7406
Fix for issue caused by stale PR issue from rapidsai#7406 Authors: - @rwlee - Keith Kraus (@kkraus14) Approvers: - Keith Kraus (@kkraus14) - Mike Wilson (@hyperbolic2346) - GALI PREM SAGAR (@galipremsagar) - Jake Hemstad (@jrhemstad) - Vukasin Milovanovic (@vuule) - Paul Taylor (@trxcllnt) URL: rapidsai#7533
Refactors the bitmask merging functionality to support any binary function, allowing for
bitwise_or
support in addition the existingbitwise_and
support. Includes changes to the Java api and JNI to access thebitwise_or
functionality.