12 #include <cudf/utilities/export.hpp>
25 namespace CUDF_EXPORT
cudf {
87 cuda::mr::any_resource<cuda::mr::device_accessible> mr =
108 cuda::mr::any_resource<cuda::mr::device_accessible> mr =
119 [[nodiscard]] std::unique_ptr<rmm::device_uvector<size_type>>
semi_join(
132 [[nodiscard]] std::unique_ptr<rmm::device_uvector<size_type>>
anti_join(
138 std::unique_ptr<cudf::detail::mark_join> _impl;
Mark-based hash join for semi/anti join with left table reuse.
std::unique_ptr< rmm::device_uvector< size_type > > anti_join(cudf::table_view const &right, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) const
Returns left row indices that have no match in the right table.
std::unique_ptr< rmm::device_uvector< size_type > > semi_join(cudf::table_view const &right, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) const
Returns left row indices that have at least one match in the right table.
mark_join(cudf::table_view const &left, cudf::null_equality compare_nulls, cudf::join_prefilter prefilter, rmm::cuda_stream_view stream=cudf::get_default_stream(), cuda::mr::any_resource< cuda::mr::device_accessible > mr=cudf::get_current_device_resource_ref())
Constructs a mark join object with explicit prefilter selection.
mark_join(cudf::table_view const &left, double load_factor, cudf::null_equality compare_nulls=cudf::null_equality::EQUAL, cudf::join_prefilter prefilter=cudf::join_prefilter::NO, rmm::cuda_stream_view stream=cudf::get_default_stream(), cuda::mr::any_resource< cuda::mr::device_accessible > mr=cudf::get_current_device_resource_ref())
Constructs a mark join object with explicit prefilter selection and the given load factor.
A set of cudf::column_view's of the same size.
APIs for querying the default CUDA stream and per-thread default stream status.
join_prefilter
Specifies whether a join implementation should apply an optional prefilter that reduces candidate row...
rmm::cuda_stream_view 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
null_equality
Enum to consider two nulls as equal or unequal.
@ EQUAL
nulls compare equal
Common types and utilities shared by cuDF's join APIs.
APIs for getting and setting the current device memory resource.
Class definitions for (mutable)_table_view
Type declarations for libcudf.