-
Notifications
You must be signed in to change notification settings - Fork 901
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
Enable round in cudf for DataFrame and Series #7022
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.18 #7022 +/- ##
===============================================
+ Coverage 82.09% 82.16% +0.07%
===============================================
Files 97 97
Lines 16474 16535 +61
===============================================
+ Hits 13524 13586 +62
+ Misses 2950 2949 -1
Continue to review full report at Codecov.
|
Looks very thorough - great work! Just a suggestion for improving the implementation for DataFrames. |
Thanks for the feedback! I'll make those changes shortly |
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.
small comments and questions. Otherwise looks pretty good.
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, couple of small questions.
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! Awesome work!
@gpucibot merge |
This enables round for DataFrames and Series using the libcudf round implementation and removes the old numba round implementation.
Closes #1270