-
Notifications
You must be signed in to change notification settings - Fork 922
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
Combine rolling window function tests #7480
Combine rolling window function tests #7480
Conversation
The contents of the tests have not been modified at all, except to remove The only stray modification here is to |
@@ -92,7 +92,7 @@ struct DeviceCount { | |||
* values. Also, this char pointer serves as valid device pointer of identity | |||
* value for minimum operator on string values. | |||
*/ | |||
__constant__ char max_string_sentinel[5]{"\xF7\xBF\xBF\xBF"}; | |||
static __constant__ char max_string_sentinel[5]{"\xF7\xBF\xBF\xBF"}; |
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.
@kaatish for visibility (wrt https://github.com/rapidsai/cudf/pull/7439/files#r583304683 convo).
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.
@harrism informs me that he discussed this bit with @karthikeyann, and that they are alright with this part. I have requested Karthik to examine this PR.
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7480 +/- ##
===============================================
+ Coverage 81.80% 82.26% +0.45%
===============================================
Files 101 101
Lines 16695 17244 +549
===============================================
+ Hits 13658 14185 +527
- Misses 3037 3059 +22
Continue to review full report at Codecov.
|
Thank you for the reviews, @karthikeyann, @vuule! I'll merge this now. |
Ah, shoot. Spotted the mistake on refresh. I'll request a |
@gpucibot merge |
The
tests/
folder has several tests pertaining to*rolling_window()
functionality:rolling/
grouped_rolling/
lead_lag/
collect_list/
This commit consolidates all
rolling_window
-related tests into a single test directory.Fixes #7455.
(This peripheral change was required for the consolidated
rolling_test
to link correctly.)