-
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
Changing cudf::io::source_info
to use cudf::host_span<std::byte>
in a non-breaking form
#12730
Changing cudf::io::source_info
to use cudf::host_span<std::byte>
in a non-breaking form
#12730
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.
nice!
Few suggestions, and a potential bug fix.
Co-authored-by: Vukasin Milovanovic <[email protected]>
…df into mwilson/cuio_host_span
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.
few more suggestions. Mostly making sure the new API is as applicable as desired.
Co-authored-by: Vukasin Milovanovic <[email protected]>
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 for adding the tests! Few more comments.
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.
🔥 🔥
/merge |
Description
Closes #12576
This change converts
cudf::io::source_info
to take ahost_span<std::byte const>
. This version deprecates the original API, but leaves it intact to avoid breaking changes. After being deprecated for a few releases, they will be removed.Checklist