-
Notifications
You must be signed in to change notification settings - Fork 927
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 string conversion to/from decimal values libcudf APIs #7364
Add string conversion to/from decimal values libcudf APIs #7364
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7364 +/- ##
==============================================
Coverage ? 82.23%
==============================================
Files ? 101
Lines ? 17060
Branches ? 0
==============================================
Hits ? 14029
Misses ? 3031
Partials ? 0 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.
Some small stuff.
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.
cmake / conda lgtm
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. Just doc questions / suggestions.
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.
Approve, but one small comment.
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 far looks good, some unit test enhancements
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 great!
rerun tests |
@gpucibot merge |
Reference #7285
Closes #5818
This PR adds the libcudf APIs for converting to/from decimal32 and decimal64 column types.
PR also includes
cudf::strings::is_fixed_point
check APIWhile coding this, I found a bug in the
fixed_point::string()
operator and fixed it in this PR as well.A follow on PR will include the Python/Cython interface to the new APIs.