11 #include <cudf/utilities/export.hpp>
19 namespace CUDF_EXPORT
cudf {
100 [[nodiscard]] std::unique_ptr<rmm::device_uvector<size_type>>
semi_join(
113 [[nodiscard]] std::unique_ptr<rmm::device_uvector<size_type>>
anti_join(
119 std::unique_ptr<cudf::detail::mark_join> _impl;
Mark-based hash join for semi/anti join with left table reuse.
mark_join(cudf::table_view const &build, cudf::null_equality compare_nulls=null_equality::EQUAL, rmm::cuda_stream_view stream=cudf::get_default_stream())
Constructs a mark join object by building a hash table from the build table.
mark_join(cudf::table_view const &build, cudf::null_equality compare_nulls, double load_factor, rmm::cuda_stream_view stream=cudf::get_default_stream())
Constructs a mark join object with a specified load factor.
std::unique_ptr< rmm::device_uvector< size_type > > semi_join(cudf::table_view const &probe, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) const
Returns build row indices that have at least one match in the probe table.
std::unique_ptr< rmm::device_uvector< size_type > > anti_join(cudf::table_view const &probe, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) const
Returns build row indices that have no match in the probe table.
A set of cudf::column_view's of the same size.
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.
detail::cccl_async_resource_ref< cuda::mr::resource_ref< cuda::mr::device_accessible > > device_async_resource_ref
null_equality
Enum to consider two nulls as equal or unequal.
Class definitions for (mutable)_table_view
Type declarations for libcudf.