Skip to content

Commit

Permalink
Update tests/static_map/insert_or_apply_test.cu
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel authored Jul 30, 2024
1 parent 9a50eef commit a948a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/static_map/insert_or_apply_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void test_insert_or_apply_shmem(Map& map, size_type num_keys, size_type num_uniq
// Therefore shared_map_size = (1/0.7) * (1024 + 1024) = 2925
int32_t constexpr shared_map_size = 2925;

using extent_type = cuco::extent<int32_t, shared_map_size>;
using extent_type = cuco::extent<int32_t, static_cast<int32_t>(shared_map_size)>;
using shared_map_type = cuco::static_map<Key,
Value,
extent_type,
Expand Down

0 comments on commit a948a98

Please sign in to comment.