-
Notifications
You must be signed in to change notification settings - Fork 933
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 XXHash_32 hasher #17533
Add XXHash_32 hasher #17533
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
/ok to test |
/ok to test |
Nice work so far @PointKernel. I was experimenting with the same thing locally and had most of the same changes. 😄 |
Thanks, @bdice. The failing tests are a bit concerning, but I'll investigate them further. |
Co-authored-by: Bradley Dice <[email protected]>
/ok to test |
Perhaps plumb this through as a public function as well here? |
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.
Approving C++ changes.
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.
Approving python changes. Do we have a tracking issue for removal of the hash_combine
step when only hashing a single column?
/merge |
Description
Contributes to #17531
This PR introduces the xxhash_32 hasher to libcudf as a preparatory step for evaluating the impact of replacing murmurhash3_x86_32 with xxhash_32 as the default hash.
Checklist