#include <cudf/column/column.hpp>
#include <cudf/dictionary/dictionary_column_view.hpp>
#include <cudf/utilities/span.hpp>
#include <rmm/mr/device/per_device_resource.hpp>
Go to the source code of this file.
Namespaces | |
cudf | |
cuDF interfaces | |
cudf::dictionary | |
Dictionary column APIs. | |
Functions | |
std::unique_ptr< column > | cudf::dictionary::add_keys (dictionary_column_view const &dictionary_column, column_view const &new_keys, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Create a new dictionary column by adding the new keys elements to the existing dictionary_column. More... | |
std::unique_ptr< column > | cudf::dictionary::remove_keys (dictionary_column_view const &dictionary_column, column_view const &keys_to_remove, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Create a new dictionary column by removing the specified keys from the existing dictionary_column. More... | |
std::unique_ptr< column > | cudf::dictionary::remove_unused_keys (dictionary_column_view const &dictionary_column, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Create a new dictionary column by removing any keys that are not referenced by any of the indices. More... | |
std::unique_ptr< column > | cudf::dictionary::set_keys (dictionary_column_view const &dictionary_column, column_view const &keys, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Create a new dictionary column by applying only the specified keys to the existing dictionary_column. More... | |
std::vector< std::unique_ptr< column > > | cudf::dictionary::match_dictionaries (cudf::host_span< dictionary_column_view const > input, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Create new dictionaries that have keys merged from the input dictionaries. More... | |