From 9e29ea71c308999a5d633fe9b1302322c7bcdb92 Mon Sep 17 00:00:00 2001 From: Yunsong Wang Date: Mon, 25 Sep 2023 18:10:55 -0700 Subject: [PATCH] Add TODO reminder --- include/cuco/detail/open_addressing_ref_impl.cuh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/cuco/detail/open_addressing_ref_impl.cuh b/include/cuco/detail/open_addressing_ref_impl.cuh index 4cada6127..cce691c21 100644 --- a/include/cuco/detail/open_addressing_ref_impl.cuh +++ b/include/cuco/detail/open_addressing_ref_impl.cuh @@ -88,6 +88,10 @@ class open_addressing_ref_impl { ProbingScheme>, "ProbingScheme must inherit from cuco::detail::probing_scheme_base"); + // TODO: how to re-enable this check? + // static_assert(is_window_extent_v, + // "Extent is not a valid cuco::window_extent"); + public: using key_type = Key; ///< Key type using probing_scheme_type = ProbingScheme; ///< Type of probing scheme