lower_bound、upper_bound 和 contains 的列 API。 更多...
#include <cudf/column/column.hpp>
#include <cudf/scalar/scalar.hpp>
#include <cudf/table/table.hpp>
#include <cudf/types.hpp>
#include <cudf/utilities/export.hpp>
#include <cudf/utilities/memory_resource.hpp>
#include <vector>
命名空间 | |
cudf | |
cuDF 接口 | |
函数 | |
std::unique_ptr< column > | cudf::lower_bound (table_view const &haystack, table_view const &needles, std::vector< order > const &column_order, std::vector< null_order > const &null_precedence, 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::upper_bound (table_view const &haystack, table_view const &needles, std::vector< order > const &column_order, std::vector< null_order > const &null_precedence, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
在已排序表中查找应插入值以保持顺序的最大索引。 更多... | |
bool | cudf::contains (column_view const &haystack, scalar const &needle, rmm::cuda_stream_view stream=cudf::get_default_stream()) |
检查给定 `needle` 值是否存在于 `haystack` 列中。 更多... | |
std::unique_ptr< column > | cudf::contains (column_view const &haystack, column_view const &needles, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
检查给定 `needles` 值是否存在于 `haystack` 列中。 更多... | |
lower_bound、upper_bound 和 contains 的列 API。
文件定义:search.hpp。