Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AIR-Top-k reference #2031

Merged
merged 6 commits into from
Jan 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cpp/include/raft/matrix/detail/select_radix.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -1151,6 +1151,12 @@ void radix_topk_one_block(const T* in,
*
* Note, the output is NOT sorted within the groups of `k` selected elements.
*
* Reference:
* Jingrong Zhang, Akira Naruse, Xipeng Li, and Yong Wang. 2023. Parallel Top-K Algorithms on GPU:
* A Comprehensive Study and New Methods. In The International Conference for High Performance
* Computing, Networking, Storage and Analysis (SC ’23), November 12–17, 2023, Denver, CO, USA.
* ACM, New York, NY, USA. https://doi.org/10.1145/3581784.3607062
*
* @tparam T
* the type of the keys (what is being compared).
* @tparam IdxT
Expand Down