-
Notifications
You must be signed in to change notification settings - Fork 915
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
Remove deprecated method Series.hash_encode. #9942
Remove deprecated method Series.hash_encode. #9942
Conversation
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.
5:1 delete ratio! Woo 🔥
Codecov Report
@@ Coverage Diff @@
## branch-22.02 #9942 +/- ##
================================================
+ Coverage 10.37% 10.41% +0.04%
================================================
Files 119 119
Lines 20111 20488 +377
================================================
+ Hits 2086 2134 +48
- Misses 18025 18354 +329
Continue to review full report at Codecov.
|
@gpucibot merge |
This is caused by the change in rapidsai#9942. Signed-off-by: Firestarman <[email protected]>
cudf Java build is broken by #9942. So update the `hash` JNI accordingly. Signed-off-by: Firestarman <[email protected]> Authors: - Liangcai Li (https://github.com/firestarman) Approvers: - Gary Shen (https://github.com/GaryShen2008) URL: #9958
This PR removes the deprecated method
Series.hash_encode
. Resolves #9475. Follows up on #9457, #9381.This PR also removes libcudf code paths used solely for this Python method.
Users may replace code like
series.hash_encode(stop, use_name=False)
withseries.hash_values(method="murmur3") % stop
.