-
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
[REVIEW] Add support for BaseIndexer in Rolling APIs #9085
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-21.10 #9085 +/- ##
===============================================
Coverage ? 10.75%
===============================================
Files ? 114
Lines ? 18694
Branches ? 0
===============================================
Hits ? 2010
Misses ? 16684
Partials ? 0 Continue to review full report at Codecov.
|
start = as_column(start, dtype="int32") | ||
end = as_column(end, dtype="int32") |
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.
Note that this does a HtoD copy of a potentially large array. Thus my comment https://github.com/rapidsai/cudf/pull/9085/files#r695093462
@gpucibot merge |
Fixes: #9077
This PR adds support for
BaseIndexer
subclass support inRolling
APIs. This also contains a fix related tofillna
- testcase added.