-
Notifications
You must be signed in to change notification settings - Fork 913
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_urls APIs to pylibcudf #17003
Add string.convert.convert_urls APIs to pylibcudf #17003
Conversation
@@ -8,7 +8,7 @@ from pylibcudf.libcudf.column.column_view cimport column_view | |||
cdef extern from "cudf/strings/convert/convert_urls.hpp" namespace \ | |||
"cudf::strings" nogil: | |||
cdef unique_ptr[column] url_encode( | |||
column_view input_col) except + | |||
column_view input) except + |
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.
@vyasr should we be marking these APIs all with libcudf_exception_handler
as we go even if currently the API has no documented exception cases?
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.
I think that's probably a good best practice yeah.
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.
xref #17036 to follow up in the future
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.
One question otherwise LGTM
…trings/convert_urls
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++ change
/merge |
Description
Contributes to #15162
Also I believe the cpp docstrings were incorrect, but could use a second look.
Checklist