Skip to content

Commit 85e0dd4

Browse files
committed
Use cuda::std::int32_t for HyperLogLog register_type
1 parent 1fcb625 commit 85e0dd4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/cuco/detail/hyperloglog/hyperloglog_impl.cuh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ class hyperloglog_impl {
6060
public:
6161
static constexpr auto thread_scope = Scope; ///< CUDA thread scope
6262

63-
using value_type = T; ///< Type of items to count
64-
using hasher = Hash; ///< Hash function type
65-
using register_type = int; ///< HLL register type
63+
using value_type = T; ///< Type of items to count
64+
using hasher = Hash; ///< Hash function type
65+
using register_type = cuda::std::int32_t; ///< HLL register type
6666

6767
template <cuda::thread_scope NewScope>
6868
using with_scope = hyperloglog_impl<T, NewScope, Hash>; ///< Ref type with different

0 commit comments

Comments
 (0)