Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed Nov 16, 2023
1 parent cce16b0 commit cb9934f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion include/cuco/detail/open_addressing/open_addressing_ref_impl.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,16 @@ class open_addressing_ref_impl {
}
}

// TODO docs
/**
* @brief Waits until the slot payload has been updated
*
* @note The function will return once the slot payload is no longer equal to the sentinel value.
*
* @tparam T Map slot type
*
* @param slot The target slot to check payload with
* @param sentinel The slot sentinel value
*/
template <typename T>
__device__ void wait_for_payload(T& slot, T const& sentinel) const noexcept
{
Expand Down

0 comments on commit cb9934f

Please sign in to comment.