Skip to content

Commit

Permalink
Merge branch 'dev' into insert_or_apply_shmem
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel authored Aug 2, 2024
2 parents 015f945 + 60ef99e commit 5c4ae63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cuco/detail/open_addressing/functors.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct get_slot {
auto const window_idx = idx / StorageRef::window_size;
auto const intra_idx = idx % StorageRef::window_size;
if constexpr (HasPayload) {
auto const& [first, second] = storage_[window_idx][intra_idx];
auto const [first, second] = storage_[window_idx][intra_idx];
return thrust::make_tuple(first, second);
} else {
return storage_[window_idx][intra_idx];
Expand Down

0 comments on commit 5c4ae63

Please sign in to comment.