libcudf
23.12.00
|
#include <cudf/column/column.hpp>
#include <cudf/scalar/scalar.hpp>
#include <cudf/strings/strings_column_view.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::column > | nvtext::is_letter (cudf::strings_column_view const &strings, letter_type ltype, cudf::size_type character_index, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Returns boolean column indicating if character_index of the input strings is a consonant or vowel. More... | |
std::unique_ptr< cudf::column > | nvtext::is_letter (cudf::strings_column_view const &strings, letter_type ltype, cudf::column_view const &indices, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Returns boolean column indicating if character at indices[i] of strings[i] is a consonant or vowel. More... | |
std::unique_ptr< cudf::column > | nvtext::porter_stemmer_measure (cudf::strings_column_view const &strings, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Returns the Porter Stemmer measurements of a strings column. More... | |