命名空间 | 函数
convert_fixed_point.hpp 文件参考
#include <cudf/column/column.hpp>
#include <cudf/strings/strings_column_view.hpp>
#include <cudf/utilities/memory_resource.hpp>

查看此文件的源代码。

命名空间

 cudf
 cuDF 接口
 
 cudf::strings
 字符串列 API。
 

函数

std::unique_ptr< column > cudf::strings::to_fixed_point (strings_column_view const &input, data_type output_type, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
 返回一个新的定点列,该列从提供的字符串列中解析十进制值。更多...
 
std::unique_ptr< column > cudf::strings::from_fixed_point (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())
 返回一个新的字符串列,该列将定点值转换为字符串列。更多...
 
std::unique_ptr< column > cudf::strings::is_fixed_point (strings_column_view const &input, data_type decimal_type=data_type{type_id::DECIMAL64}, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
 返回一个布尔列,用于标识其中所有字符都可有效转换为定点格式的字符串。更多...