From 622521d62632593c3552ccc4ec0c75156ddcbc32 Mon Sep 17 00:00:00 2001 From: "Artem M. Chirkin" <9253178+achirkin@users.noreply.github.com> Date: Mon, 2 Dec 2024 15:57:02 +0100 Subject: [PATCH] Update cpp/src/neighbors/detail/dynamic_batching.cuh Co-authored-by: Tamas Bela Feher --- cpp/src/neighbors/detail/dynamic_batching.cuh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/neighbors/detail/dynamic_batching.cuh b/cpp/src/neighbors/detail/dynamic_batching.cuh index 2f51af029..cf386c5b2 100644 --- a/cpp/src/neighbors/detail/dynamic_batching.cuh +++ b/cpp/src/neighbors/detail/dynamic_batching.cuh @@ -224,7 +224,7 @@ struct batch_token { * * The CPU threads atomically increment this counter until its size reaches `max_batch_size`. * - * Any (CPU or GPU thread) my atomically write to the highest byte of this value, which indicates + * Any (CPU or GPU thread) may atomically write to the highest byte of this value, which indicates * that no one can commit to this batch anymore (e.g. the wait timeout is exceeded). * Hence, the actual number of committed queries is `size_committed % 0x00ffffff`. *