Skip to content
Merged
Changes from all commits
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
28 changes: 20 additions & 8 deletions cub/cub/device/device_topk.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,11 @@ struct DeviceTopK
//! Overview
//! +++++++++++++++++++++++++++++++++++++++++++++
//!
//! - Finds the largest K keys and their corresponding values from an unordered input sequence of key-value pairs.
//! - Note that the behavior is undefined if the input and output ranges overlap in any way.
//! Finds the largest K keys and their corresponding values from an unordered input sequence of key-value pairs.
//!
//! .. note::
//!
//! The behavior is undefined if the input and output ranges overlap in any way.
//!
//! - @devicestorage
//!
Expand Down Expand Up @@ -247,8 +250,11 @@ struct DeviceTopK
//! Overview
//! +++++++++++++++++++++++++++++++++++++++++++++
//!
//! - Finds the lowest K keys and their corresponding values from an unordered input sequence of key-value pairs.
//! - Note that the behavior is undefined if the input and output ranges overlap in any way.
//! Finds the lowest K keys and their corresponding values from an unordered input sequence of key-value pairs.
//!
//! .. note::
//!
//! The behavior is undefined if the input and output ranges overlap in any way.
//!
//! - @devicestorage
//!
Expand Down Expand Up @@ -351,8 +357,11 @@ struct DeviceTopK
//! Overview
//! +++++++++++++++++++++++++++++++++++++++++++++
//!
//! - Finds the largest K keys from an unordered input sequence of keys.
//! - Note that the behavior is undefined if the input and output ranges overlap in any way.
//! Finds the largest K keys from an unordered input sequence of keys.
//!
//! .. note::
//!
//! The behavior is undefined if the input and output ranges overlap in any way.
//!
//! - @devicestorage
//!
Expand Down Expand Up @@ -438,8 +447,11 @@ struct DeviceTopK
//! Overview
//! +++++++++++++++++++++++++++++++++++++++++++++
//!
//! - Finds the lowest K keys from an unordered input sequence of keys.
//! - Note that the behavior is undefined if the input and output ranges overlap in any way.
//! Finds the lowest K keys from an unordered input sequence of keys.
//!
//! .. note::
//!
//! The behavior is undefined if the input and output ranges overlap in any way.
//!
//! - @devicestorage
//!
Expand Down