-
Notifications
You must be signed in to change notification settings - Fork 902
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
Add explicit fixed_point merge test #7635
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7635 +/- ##
===============================================
+ Coverage 81.86% 82.04% +0.17%
===============================================
Files 101 101
Lines 16884 16991 +107
===============================================
+ Hits 13822 13940 +118
+ Misses 3062 3051 -11
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.
LGTM
@gpucibot merge |
}; | ||
|
||
template <typename T> | ||
using fp_wrapper = cudf::test::fixed_point_column_wrapper<T>; |
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.
Why is this using stmt outside the test and the rest are inside?
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 declare template inside GTEST macros:
../../../../tests/merge/merge_test.cpp:740:3: error: a template declaration cannot appear at block scope
template <typename T>
While confirming that libcudf does indeed support
cudf::merge
withfixed_point
ended up writing an explicit test that there is no reason not to just add as a unit test.