Namespaces | Enumerations | Functions
stemmer.hpp File Reference
#include <cudf/column/column.hpp>
#include <cudf/scalar/scalar.hpp>
#include <cudf/strings/strings_column_view.hpp>
#include <cudf/utilities/export.hpp>
#include <cudf/utilities/memory_resource.hpp>

Go to the source code of this file.

Namespaces

 nvtext
 NVText APIs.
 

Enumerations

enum class  nvtext::letter_type { nvtext::CONSONANT , nvtext::VOWEL }
 Used for specifying letter type to check. More...
 

Functions

std::unique_ptr< cudf::columnnvtext::is_letter (cudf::strings_column_view const &input, letter_type ltype, cudf::size_type character_index, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
 Returns boolean column indicating if character_index of the input strings is a consonant or vowel. More...
 
std::unique_ptr< cudf::columnnvtext::is_letter (cudf::strings_column_view const &input, letter_type ltype, cudf::column_view const &indices, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
 Returns boolean column indicating if character at indices[i] of input[i] is a consonant or vowel. More...
 
std::unique_ptr< cudf::columnnvtext::porter_stemmer_measure (cudf::strings_column_view const &input, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
 Returns the Porter Stemmer measurements of a strings column. More...