-
Notifications
You must be signed in to change notification settings - Fork 908
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
cudf::rolling
ROW_NUMBER
support for decimal32
and decimal64
#7061
cudf::rolling
ROW_NUMBER
support for decimal32
and decimal64
#7061
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.18 #7061 +/- ##
===============================================
+ Coverage 82.09% 82.11% +0.02%
===============================================
Files 97 97
Lines 16474 16477 +3
===============================================
+ Hits 13524 13530 +6
+ Misses 2950 2947 -3
Continue to review full report at Codecov.
|
…p-rolling-row-number
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.
Looks good to me.
@@ -73,7 +73,7 @@ class aggregation { | |||
ARGMIN, ///< Index of min element | |||
NUNIQUE, ///< count number of unique elements | |||
NTH_ELEMENT, ///< get the nth element | |||
ROW_NUMBER, ///< get row-number of element | |||
ROW_NUMBER, ///< get row-number of current index (relative to rolling window) |
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.
Thank you for fixing this, @codereport. I should have made it clear here that this aggregation is specific to window functions.
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.
So, no changes needed? Nice
This PR adds support for
cudf::rolling
for theROW_NUMBER
option fordecimal32
anddecimal64
. It also clarifies the documentation.