Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Jünger <[email protected]>
  • Loading branch information
PointKernel and sleeepyjack authored Nov 6, 2024
1 parent 04b2e02 commit e712fc2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions include/cuco/detail/static_multimap/static_multimap.inl
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ template <class Key,
void static_multimap<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::rehash(
cuda::stream_ref stream)
{
this->impl_->rehash(*this, stream);
impl_->rehash(*this, stream);
}

template <class Key,
Expand All @@ -424,7 +424,7 @@ void static_multimap<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator,
size_type capacity, cuda::stream_ref stream)
{
auto const extent = make_bucket_extent<static_multimap>(capacity);
this->impl_->rehash(extent, *this, stream);
impl_->rehash(extent, *this, stream);
}

template <class Key,
Expand All @@ -438,7 +438,7 @@ template <class Key,
void static_multimap<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::
rehash_async(cuda::stream_ref stream)
{
this->impl_->rehash_async(*this, stream);
impl_->rehash_async(*this, stream);
}

template <class Key,
Expand All @@ -453,7 +453,7 @@ void static_multimap<Key, T, Extent, Scope, KeyEqual, ProbingScheme, Allocator,
rehash_async(size_type capacity, cuda::stream_ref stream)
{
auto const extent = make_bucket_extent<static_multimap>(capacity);
this->impl_->rehash_async(extent, *this, stream);
impl_->rehash_async(extent, *this, stream);
}

template <class Key,
Expand Down
8 changes: 4 additions & 4 deletions include/cuco/detail/static_multiset/static_multiset.inl
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ template <class Key,
void static_multiset<Key, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::rehash(
cuda::stream_ref stream)
{
this->impl_->rehash(*this, stream);
impl_->rehash(*this, stream);
}

template <class Key,
Expand All @@ -498,7 +498,7 @@ void static_multiset<Key, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Sto
size_type capacity, cuda::stream_ref stream)
{
auto const extent = make_bucket_extent<static_multiset>(capacity);
this->impl_->rehash(extent, *this, stream);
impl_->rehash(extent, *this, stream);
}

template <class Key,
Expand All @@ -511,7 +511,7 @@ template <class Key,
void static_multiset<Key, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Storage>::rehash_async(
cuda::stream_ref stream)
{
this->impl_->rehash_async(*this, stream);
impl_->rehash_async(*this, stream);
}

template <class Key,
Expand All @@ -525,7 +525,7 @@ void static_multiset<Key, Extent, Scope, KeyEqual, ProbingScheme, Allocator, Sto
size_type capacity, cuda::stream_ref stream)
{
auto const extent = make_bucket_extent<static_multiset>(capacity);
this->impl_->rehash_async(extent, *this, stream);
impl_->rehash_async(extent, *this, stream);
}

template <class Key,
Expand Down

0 comments on commit e712fc2

Please sign in to comment.