23 #include <cudf/utilities/export.hpp>
31 namespace CUDF_EXPORT
cudf {
43 class distinct_hash_join;
88 [[nodiscard]] std::pair<std::unique_ptr<rmm::device_uvector<size_type>>,
89 std::unique_ptr<rmm::device_uvector<size_type>>>
111 [[nodiscard]] std::unique_ptr<rmm::device_uvector<size_type>>
left_join(
117 using impl_type = cudf::detail::distinct_hash_join;
119 std::unique_ptr<impl_type> _impl;
Distinct hash join that builds hash table in creation and probes results in subsequent *_join member ...
std::unique_ptr< rmm::device_uvector< size_type > > left_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 the build table indices that can be used to construct the result of performing a left join be...
std::pair< std::unique_ptr< rmm::device_uvector< size_type > >, std::unique_ptr< rmm::device_uvector< size_type > > > inner_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 the row indices that can be used to construct the result of performing an inner join between ...
distinct_hash_join(cudf::table_view const &build, null_equality compare_nulls=null_equality::EQUAL, rmm::cuda_stream_view stream=cudf::get_default_stream())
Constructs a distinct hash join object for subsequent probe calls.
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.
cuda::mr::async_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.