From b6c06ac38944501d21ee89c491d3f4f173bd9936 Mon Sep 17 00:00:00 2001 From: Yunsong Wang Date: Fri, 16 Aug 2024 10:19:14 -0700 Subject: [PATCH] Add a TODO note to revert the current PR in future work --- include/cuco/detail/open_addressing/open_addressing_impl.cuh | 1 + 1 file changed, 1 insertion(+) diff --git a/include/cuco/detail/open_addressing/open_addressing_impl.cuh b/include/cuco/detail/open_addressing/open_addressing_impl.cuh index e91d2f559..772e8a667 100644 --- a/include/cuco/detail/open_addressing/open_addressing_impl.cuh +++ b/include/cuco/detail/open_addressing/open_addressing_impl.cuh @@ -649,6 +649,7 @@ class open_addressing_impl { auto d_num_out = reinterpret_cast( std::allocator_traits::allocate(temp_allocator, sizeof(size_type))); + // TODO: PR #580 to be reverted once https://github.com/NVIDIA/cccl/issues/1422 is resolved for (cuco::detail::index_type offset = 0; offset < static_cast(this->capacity()); offset += stride) {