We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fcb625 commit 85e0dd4Copy full SHA for 85e0dd4
include/cuco/detail/hyperloglog/hyperloglog_impl.cuh
@@ -60,9 +60,9 @@ class hyperloglog_impl {
60
public:
61
static constexpr auto thread_scope = Scope; ///< CUDA thread scope
62
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
+ using value_type = T; ///< Type of items to count
+ using hasher = Hash; ///< Hash function type
+ using register_type = cuda::std::int32_t; ///< HLL register type
66
67
template <cuda::thread_scope NewScope>
68
using with_scope = hyperloglog_impl<T, NewScope, Hash>; ///< Ref type with different
0 commit comments