From 8fc4b00a6a0a09760201bc362404d86ded799640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20J=C3=BCnger?= Date: Thu, 26 Sep 2024 15:56:04 +0000 Subject: [PATCH] Add bloom_filter section to README --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 6b848f8d2..8e3bb152d 100644 --- a/README.md +++ b/README.md @@ -242,4 +242,11 @@ We plan to add many GPU-accelerated, concurrent data structures to `cuCollection - [Host-bulk APIs](https://github.com/NVIDIA/cuCollections/blob/dev/examples/distinct_count_estimator/host_bulk_example.cu) (see [live example in godbolt](https://godbolt.org/z/sMfofM6qd)) - [Device-ref APIs](https://github.com/NVIDIA/cuCollections/blob/dev/examples/distinct_count_estimator/device_ref_example.cu) (see [live example in godbolt](https://godbolt.org/z/156T9ox7h)) +### `bloom_filter` + +`cuco::bloom_filter` implements a Blocked Bloom filter for approximate set membership queries. + +#### Examples: +- [Host-bulk APIs](https://github.com/NVIDIA/cuCollections/blob/dev/examples/bloom_filter/host_bulk_example.cu) (see [live example in godbolt](https://godbolt.org/z/EY7T5v5aE)) +