Skip to content

Commit

Permalink
Fix a typo (rapidsai#2070)
Browse files Browse the repository at this point in the history
A code change to fix a typo that I found while going through the codebase.

Authors:
  - Vivek Narang (https://github.com/narangvivek10)

Approvers:
  - Corey J. Nolet (https://github.com/cjnolet)

URL: rapidsai#2070
  • Loading branch information
narangvivek10 authored and ChristinaZ committed Jan 17, 2024
1 parent 8885046 commit 87b2b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/include/raft/neighbors/detail/refine_device.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void refine_device(raft::resources const& handle,
uint32_t k = static_cast<uint32_t>(indices.extent(1));

RAFT_EXPECTS(k <= raft::matrix::detail::select::warpsort::kMaxCapacity,
"k must be lest than topk::kMaxCapacity (%d).",
"k must be less than topk::kMaxCapacity (%d).",
raft::matrix::detail::select::warpsort::kMaxCapacity);

common::nvtx::range<common::nvtx::domain::raft> fun_scope(
Expand Down

0 comments on commit 87b2b7d

Please sign in to comment.