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
2 changes: 1 addition & 1 deletion cub/cub/warp/warp_reduce.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ public:
[[nodiscard]] _CCCL_DEVICE _CCCL_FORCEINLINE T Reduce(const InputType& input, ReductionOp reduction_op)
{
auto thread_reduction = cub::ThreadReduce(input, reduction_op);
return WarpReduce<T, LogicalWarpThreads>::Reduce(thread_reduction, LogicalWarpThreads, reduction_op);
return WarpReduce<T, LogicalWarpThreads>::Reduce(thread_reduction, reduction_op);
}
//! @rst
//! Computes a partially-full warp-wide reduction in the calling warp using the specified binary
Expand Down
Loading