Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions cpp/include/cudf/reduction/bloom_filter.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,4 @@ template <typename Key, typename Hash>
using arrow_bloom_filter_policy =
cuco::bloom_filter_policy<Key, Hash, sizeof(std::uint32_t), 8, 8, 8, 1, 1, 8>;

/**
* @brief Policy describing the Apache Arrow Block-Split Bloom Filter layout.
*
* @deprecated Deprecated in 26.10, to be removed in a future release. Use
* `cudf::arrow_bloom_filter_policy` instead, which takes the key type explicitly rather than
* deducing it from the hash functor.
*
* @tparam Hash The hash function used to generate a hash for each key.
*/
template <typename Hash>
using arrow_filter_policy [[deprecated("Use cudf::arrow_bloom_filter_policy<Key, Hash> instead")]] =
cuco::parametric_filter_policy<Hash, std::uint32_t, 8, 8, 8, 1, 1, 8, false, false>;

} // namespace cudf
Loading