命名空间 | 函数
dictionary_factories.hpp 文件参考
#include <cudf/column/column.hpp>
#include <cudf/column/column_view.hpp>
#include <cudf/utilities/default_stream.hpp>
#include <cudf/utilities/memory_resource.hpp>
#include <rmm/cuda_stream_view.hpp>

转到此文件的源代码。

命名空间

 cudf
 cuDF 接口
 

函数

std::unique_ptr< column > cudf::make_dictionary_column (column_view const &keys_column, column_view const &indices_column, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
 通过复制提供的 keysindices 来构造一个字典列。更多...
 
std::unique_ptr< column > cudf::make_dictionary_column (std::unique_ptr< column > keys_column, std::unique_ptr< column > indices_column, rmm::device_buffer &&null_mask, size_type null_count, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
 通过获取所提供的 keys 和 indices 列的所有权来构造一个字典列。更多...
 
std::unique_ptr< column > cudf::make_dictionary_column (std::unique_ptr< column > keys_column, std::unique_ptr< column > indices_column, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
 通过获取所提供的 keys 和 indices 列的所有权来构造一个字典列。更多...