-
Notifications
You must be signed in to change notification settings - Fork 900
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
[REVIEW] Natively export __cuda_array_interface__
for Series/Index/Column objects
#2464
[REVIEW] Natively export __cuda_array_interface__
for Series/Index/Column objects
#2464
Conversation
…_interface__` in Series/Index/Column objects
…aus14/cudf into fea-ext-cuda-array-interface
|
||
mask = desc["mask"] | ||
if mask is not None: | ||
mask_ptr = mask.__cuda_array_interface__["data"][0] |
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.
You can't assume the mask is a bitmask here, it could be a boolean mask so you'd need to handle that differently.
Codecov Report
@@ Coverage Diff @@
## branch-0.9 #2464 +/- ##
==============================================
+ Coverage 83.42% 83.47% +0.05%
==============================================
Files 56 56
Lines 8746 8798 +52
==============================================
+ Hits 7296 7344 +48
- Misses 1450 1454 +4
Continue to review full report at Codecov.
|
__cuda_array_interface__
for Series/Index/Column objects__cuda_array_interface__
for Series/Index/Column objects
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.
LGTM
Fixes #2433