-
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
Migrate cudf::io::merge_row_group_metadata
to pylibcudf
#17491
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. |
] | ||
|
||
|
||
cdef class BufferArrayFromVector: |
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.
You can probably reuse HostBuffer
from contiguous_split.pyx
@@ -577,3 +612,34 @@ cpdef memoryview write_parquet(ParquetWriterOptions options): | |||
c_result = cpp_write_parquet(c_options) | |||
|
|||
return memoryview(HostBuffer.from_unique_ptr(move(c_result))) | |||
|
|||
|
|||
cpdef BufferArrayFromVector merge_row_group_metadata(list metdata_list): |
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.
Similar to write_parquet
, I think we want to return a memoryview
here
/ok to test |
/ok to test |
/merge |
Description
Apart of #15162
Checklist