-
Notifications
You must be signed in to change notification settings - Fork 912
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.convert.convert_ipv4 APIs to pylibcudf #16994
Add string.convert.convert_ipv4 APIs to pylibcudf #16994
Conversation
Parameters | ||
---------- | ||
integers : Column | ||
Integer (uint32) column to convert. |
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.
This isays uint32 whereas ipv4_to_integers above says it produces int32. Should these be the same, or is one really unsigned while the other is signed?
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.
Thanks, this was a documentation mistake on my end. ipv4_to_integers
should say it returns uint32 integers (matching the cpp docstring and the unit test in this PR)
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.
OK cool yes please match those when you resolve conflicts, then you are good to go.
/merge |
Description
Contributes to #15162
Checklist