Skip to content
Closed
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
9 changes: 1 addition & 8 deletions include/cuco/detail/bloom_filter/bloom_filter_impl.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,7 @@ class bloom_filter_impl {

static_assert(cuda::std::has_single_bit(words_per_block) and words_per_block <= 32,
"Number of words per block must be a power-of-two and less than or equal to 32");
static_assert(
cuda::std::is_constructible_v<cuda::atomic_ref<word_type, Scope>, word_type&> &&
cuda::std::is_invocable_r_v<word_type,
decltype(&cuda::atomic_ref<word_type, Scope>::fetch_or),
cuda::atomic_ref<word_type, Scope>*,
word_type,
cuda::std::memory_order>,
"Invalid word type");
static_assert(cuda::std::is_integral_v<word_type>, "word_type must be an integral type");

__host__ __device__ static constexpr size_t alignment() noexcept
{
Expand Down
Loading