Skip to content

Commit

Permalink
Temporarily disable window extent checks in open addressing ref base …
Browse files Browse the repository at this point in the history
…class
  • Loading branch information
PointKernel committed Sep 11, 2023
1 parent d913720 commit 02eabf6
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions include/cuco/detail/open_addressing_ref_impl.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,13 @@ class open_addressing_ref_impl {
ProbingScheme>,
"ProbingScheme must inherit from cuco::detail::probing_scheme_base");

/*
static_assert(is_window_extent_v<typename StorageRef::extent_type>,
"Extent is not a valid cuco::window_extent");
static_assert(ProbingScheme::cg_size == StorageRef::extent_type::cg_size,
"Extent has incompatible CG size");
static_assert(StorageRef::window_size == StorageRef::extent_type::window_size,
"Extent has incompatible window size");
*/
// TODO: revise those build-time checks
// static_assert(is_window_extent_v<typename StorageRef::extent_type>,
// "Extent is not a valid cuco::window_extent");
// static_assert(ProbingScheme::cg_size == StorageRef::extent_type::cg_size,
// "Extent has incompatible CG size");
// static_assert(StorageRef::window_size == StorageRef::extent_type::window_size,
// "Extent has incompatible window size");

public:
using key_type = Key; ///< Key type
Expand Down

0 comments on commit 02eabf6

Please sign in to comment.