Files | |
file | lists/combine.hpp |
Enumerations | |
enum class | cudf::lists::concatenate_null_policy { IGNORE , NULLIFY_OUTPUT_ROW } |
Flag to specify whether a null list element will be ignored from concatenation, or the entire concatenation result involving null list elements will be a null element. | |
Functions | |
std::unique_ptr< column > | cudf::lists::concatenate_rows (table_view const &input, concatenate_null_policy null_policy=concatenate_null_policy::IGNORE, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
Row-wise concatenating multiple lists columns into a single lists column. More... | |
std::unique_ptr< column > | cudf::lists::concatenate_list_elements (column_view const &input, concatenate_null_policy null_policy=concatenate_null_policy::IGNORE, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
Concatenating multiple lists on the same row of a lists column into a single list. More... | |
std::unique_ptr<column> cudf::lists::concatenate_list_elements | ( | column_view const & | input, |
concatenate_null_policy | null_policy = concatenate_null_policy::IGNORE , |
||
rmm::cuda_stream_view | stream = cudf::get_default_stream() , |
||
rmm::device_async_resource_ref | mr = cudf::get_current_device_resource_ref() |
||
) |
Concatenating multiple lists on the same row of a lists column into a single list.
Given a lists column where each row in the column is a list of lists of entries, an output lists column is generated by concatenating all the list elements at the same row together. If any row contains null list elements, the concatenation process will either ignore those null elements, or will simply set the entire resulting row to be a null element.
std::invalid_argument | if the input column is not at least two-level depth lists column (i.e., each row must be a list of lists). |
input | The lists column containing lists of list elements to concatenate. |
null_policy | The parameter to specify whether a null list element will be ignored from concatenation, or any concatenation involving a null element will result in a null list. |
stream | CUDA stream used for device memory operations and kernel launches. |
mr | Device memory resource used to allocate the returned column's device memory. |
std::unique_ptr<column> cudf::lists::concatenate_rows | ( | table_view const & | input, |
concatenate_null_policy | null_policy = concatenate_null_policy::IGNORE , |
||
rmm::cuda_stream_view | stream = cudf::get_default_stream() , |
||
rmm::device_async_resource_ref | mr = cudf::get_current_device_resource_ref() |
||
) |
Row-wise concatenating multiple lists columns into a single lists column.
The output column is generated by concatenating the elements within each row of the input table. If any row of the input table contains null elements, the concatenation process will either ignore those null elements, or will simply set the entire resulting row to be a null element.
cudf::logic_error | if any column of the input table is not a lists column. |
cudf::logic_error | if all lists columns do not have the same type. |
input | Table of lists to be concatenated. |
null_policy | The parameter to specify whether a null list element will be ignored from concatenation, or any concatenation involving a null element will result in a null list. |
stream | CUDA stream used for device memory operations and kernel launches. |
mr | Device memory resource used to allocate the returned column's device memory. |