From db054879869ad71bfbfdd999d45728a74366192c Mon Sep 17 00:00:00 2001 From: Yunsong Wang Date: Thu, 28 Sep 2023 13:15:24 -0700 Subject: [PATCH] Update docs --- include/cuco/detail/open_addressing_impl.cuh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/cuco/detail/open_addressing_impl.cuh b/include/cuco/detail/open_addressing_impl.cuh index c4acccaef..4cc79084d 100644 --- a/include/cuco/detail/open_addressing_impl.cuh +++ b/include/cuco/detail/open_addressing_impl.cuh @@ -147,9 +147,9 @@ class open_addressing_impl { * than the capacity of the container results in undefined behavior. * @note Any `*_sentinel`s are reserved and behavior is undefined when attempting to insert * this sentinel value. - * @note If a non-default CUDA stream is provided, the caller is responsible for synchronizing the - * stream before the object is first used. - * @note Static extent will become dynamic extent by invoking this constructor. + * @note This constructor doesn't synchronize the given stream. + * @note This overload will convert compile-time extents to runtime constants which might lead to + * performance regressions. * * @throw If the desired occupancy is no bigger than zero * @throw If the desired occupancy is no smaller than one