23 #include <cudf/utilities/export.hpp>
32 namespace CUDF_EXPORT
cudf {
41 namespace hashing::detail {
129 [[nodiscard]] std::pair<std::unique_ptr<rmm::device_uvector<size_type>>,
130 std::unique_ptr<rmm::device_uvector<size_type>>>
132 std::optional<std::size_t> output_size = {},
154 [[nodiscard]] std::pair<std::unique_ptr<rmm::device_uvector<size_type>>,
155 std::unique_ptr<rmm::device_uvector<size_type>>>
157 std::optional<std::size_t> output_size = {},
179 [[nodiscard]] std::pair<std::unique_ptr<rmm::device_uvector<size_type>>,
180 std::unique_ptr<rmm::device_uvector<size_type>>>
182 std::optional<std::size_t> output_size = {},
239 std::unique_ptr<impl_type const> _impl;
Forward declaration for our hash join.
Hash join that builds hash table in creation and probes results in subsequent *_join member functions...
std::pair< std::unique_ptr< rmm::device_uvector< size_type > >, std::unique_ptr< rmm::device_uvector< size_type > > > left_join(cudf::table_view const &probe, std::optional< std::size_t > output_size={}, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) const
hash_join(cudf::table_view const &build, nullable_join has_nulls, null_equality compare_nulls, rmm::cuda_stream_view stream=cudf::get_default_stream())
Construct a hash join object for subsequent probe calls.
typename cudf::detail::hash_join< cudf::hashing::detail::MurmurHash3_x86_32< cudf::hash_value_type > > impl_type
Implementation type.
std::size_t left_join_size(cudf::table_view const &probe, rmm::cuda_stream_view stream=cudf::get_default_stream()) const
std::size_t inner_join_size(cudf::table_view const &probe, rmm::cuda_stream_view stream=cudf::get_default_stream()) const
hash_join(cudf::table_view const &build, null_equality compare_nulls, rmm::cuda_stream_view stream=cudf::get_default_stream())
Construct a hash join object for subsequent probe calls.
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, std::optional< std::size_t > output_size={}, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) const
std::pair< std::unique_ptr< rmm::device_uvector< size_type > >, std::unique_ptr< rmm::device_uvector< size_type > > > full_join(cudf::table_view const &probe, std::optional< std::size_t > output_size={}, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) const
std::size_t full_join_size(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
Forward declaration for our Murmur Hash 3 implementation.
A set of cudf::column_view's of the same size.
nullable_join
The enum class to specify if any of the input join tables (build table and any later probe table) has...
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.
bool has_nulls(table_view const &view)
Returns True if the table has nulls in any of its columns.
Class definitions for (mutable)_table_view
Type declarations for libcudf.