Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Fix BlockReduceRaking non-commutative docs #549

Merged
merged 1 commit into from
Aug 13, 2022
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
6 changes: 3 additions & 3 deletions cub/block/specializations/block_reduce_raking.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ CUB_NAMESPACE_BEGIN
* honor the relative ordering of items and partial reductions when applying the
* reduction operator.
*
* Compared to the implementation of BlockReduceRaking (which does not support
* non-commutative operators), this implementation requires a few extra
* rounds of inter-thread communication.
* Compared to the implementation of BlockReduceRakingCommutativeOnly (which
* does not support non-commutative operators), this implementation requires a
* few extra rounds of inter-thread communication.
*/
template <
typename T, ///< Data type being reduced
Expand Down