Skip to content

Commit 31e1d5d

Browse files
authored
Merge pull request #255 from sleeepyjack/prime-array-size
2 parents dc47e98 + a868894 commit 31e1d5d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/cuco/detail/prime.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
namespace cuco {
2626
namespace detail {
2727

28-
inline constexpr std::array<int64_t, 140746> primes = {
28+
// TODO use CTAD instead of explicitly specifying the array size once we drop support for nvcc <11.5
29+
inline constexpr std::array<int64_t, 140739> primes = {
2930
2, 3, 5, 7, 13, 19, 29,
3031
37, 43, 53, 59, 67, 73, 79,
3132
89, 97, 103, 109, 127, 137, 149,

0 commit comments

Comments
 (0)