Skip to content

Commit

Permalink
[pre-commit.ci] auto code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jul 29, 2024
1 parent 9761df0 commit 60844d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/cuco/detail/dynamic_map/dynamic_map.inl
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ template <typename InputIt, typename OutputIt>
void dynamic_map<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::contains(
InputIt first, InputIt last, OutputIt output_begin, cuda::stream_ref stream) const
{
auto num_keys = cuco::detail::distance(first, last);
std::size_t traversed = 0;
uint32_t submap_idx = 0;
auto num_keys = cuco::detail::distance(first, last);
std::size_t traversed = 0;
uint32_t submap_idx = 0;
while (num_keys > 0 && submap_idx < submaps_.size()) {
const auto& cur = submaps_[submap_idx];
const size_t cur_size = cur->size();
Expand Down

0 comments on commit 60844d1

Please sign in to comment.