Skip to content

Commit bf5804a

Browse files
authored
Fix versionadd's in DeviceFor (#8016)
There was a mess up with versionadd's that slipped review for DeviceFor env algorithms
1 parent f7fcf6f commit bf5804a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

cub/cub/device/device_for.cuh

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -519,8 +519,8 @@ public:
519519
//! `bulk <https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2300r5.html#design-sender-adaptor-bulk>`_
520520
//! from P2300.
521521
//!
522-
//! .. versionadded:: 2.4.0
523-
//! First appears in CUDA Toolkit 12.5.
522+
//! .. versionadded:: 3.4.0
523+
//! First appears in CUDA Toolkit 13.4.
524524
//!
525525
//! This is an environment-based API that allows customization of:
526526
//!
@@ -632,8 +632,8 @@ public:
632632
//!
633633
//! Applies the function object ``op`` to each element in the range ``[first, first + num_items)``
634634
//!
635-
//! .. versionadded:: 2.4.0
636-
//! First appears in CUDA Toolkit 12.5.
635+
//! .. versionadded:: 3.4.0
636+
//! First appears in CUDA Toolkit 13.4.
637637
//!
638638
//! This is an environment-based API that allows customization of:
639639
//!
@@ -730,8 +730,8 @@ public:
730730
//!
731731
//! Applies the function object ``op`` to each element in the range ``[first, last)``
732732
//!
733-
//! .. versionadded:: 2.4.0
734-
//! First appears in CUDA Toolkit 12.5.
733+
//! .. versionadded:: 3.4.0
734+
//! First appears in CUDA Toolkit 13.4.
735735
//!
736736
//! This is an environment-based API that allows customization of:
737737
//!
@@ -840,8 +840,8 @@ public:
840840
//! Unlike the ``ForEachN`` algorithm, ``ForEachCopyN`` is allowed to invoke ``op`` on copies of the elements.
841841
//! This relaxation allows ``ForEachCopyN`` to vectorize loads.
842842
//!
843-
//! .. versionadded:: 2.4.0
844-
//! First appears in CUDA Toolkit 12.5.
843+
//! .. versionadded:: 3.4.0
844+
//! First appears in CUDA Toolkit 13.4.
845845
//!
846846
//! This is an environment-based API that allows customization of:
847847
//!
@@ -941,8 +941,8 @@ public:
941941
//! Unlike the ``ForEach`` algorithm, ``ForEachCopy`` is allowed to invoke ``op`` on copies of the elements.
942942
//! This relaxation allows ``ForEachCopy`` to vectorize loads.
943943
//!
944-
//! .. versionadded:: 2.4.0
945-
//! First appears in CUDA Toolkit 12.5.
944+
//! .. versionadded:: 3.4.0
945+
//! First appears in CUDA Toolkit 13.4.
946946
//!
947947
//! This is an environment-based API that allows customization of:
948948
//!
@@ -1124,8 +1124,8 @@ public:
11241124
//!
11251125
//! Iterate through a multi-dimensional extents producing
11261126
//!
1127-
//! .. versionadded:: 2.4.0
1128-
//! First appears in CUDA Toolkit 12.5.
1127+
//! .. versionadded:: 3.4.0
1128+
//! First appears in CUDA Toolkit 13.4.
11291129
//!
11301130
//! This is an environment-based API that allows customization of:
11311131
//!
@@ -1218,8 +1218,8 @@ public:
12181218
//! Iterate through multi-dimensional extents using a specific mdspan layout, applying a function object for each
12191219
//! element, passing
12201220
//!
1221-
//! .. versionadded:: 2.4.0
1222-
//! First appears in CUDA Toolkit 12.5.
1221+
//! .. versionadded:: 3.4.0
1222+
//! First appears in CUDA Toolkit 13.4.
12231223
//!
12241224
//! - a single linear index that represents the current iteration
12251225
//! - a list of indices containing the coordinates for each extent dimension

0 commit comments

Comments
 (0)