12 #include <cudf/utilities/export.hpp>
16 namespace CUDF_EXPORT
nvtext {
Given a column-view of lists type, an instance of this class provides a wrapper on this compound colu...
Given a column-view of strings type, an instance of this class provides a wrapper on this compound co...
Class definition for cudf::column.
cuda::stream_ref const get_default_stream()
Get the current default stream.
rmm::device_async_resource_ref get_current_device_resource_ref()
Get the current device memory resource reference.
cuda::mr::resource_ref< cuda::mr::device_accessible > device_async_resource_ref
std::unique_ptr< cudf::column > minhash64(cudf::strings_column_view const &input, uint64_t seed, cudf::device_span< uint64_t const > parameter_a, cudf::device_span< uint64_t const > parameter_b, cudf::size_type width, cuda::stream_ref stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Returns the minhash values for each string.
std::unique_ptr< cudf::column > minhash_ngrams(cudf::lists_column_view const &input, cudf::size_type ngrams, uint32_t seed, cudf::device_span< uint32_t const > parameter_a, cudf::device_span< uint32_t const > parameter_b, cuda::stream_ref stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Returns the minhash values for each input row.
std::unique_ptr< cudf::column > minhash(cudf::strings_column_view const &input, uint32_t seed, cudf::device_span< uint32_t const > parameter_a, cudf::device_span< uint32_t const > parameter_b, cudf::size_type width, cuda::stream_ref stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Returns the minhash values for each string.
std::unique_ptr< cudf::column > minhash64_ngrams(cudf::lists_column_view const &input, cudf::size_type ngrams, uint64_t seed, cudf::device_span< uint64_t const > parameter_a, cudf::device_span< uint64_t const > parameter_b, cuda::stream_ref stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Returns the minhash values for each input row.
cuda::std::span< T, Extent > device_span
Device span is an alias of cuda::std::span.
int32_t size_type
Row index type for columns and tables.
APIs for computing hash values of columns and tables using various hash algorithms.
Class definition for cudf::lists_column_view.
APIs for getting and setting the current device memory resource.
Class definitions for cudf::scalar.
Class definition for cudf::strings_column_view.