summaryrefslogtreecommitdiff
path: root/boost/compute/algorithm/minmax_element.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/compute/algorithm/minmax_element.hpp')
-rw-r--r--boost/compute/algorithm/minmax_element.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/boost/compute/algorithm/minmax_element.hpp b/boost/compute/algorithm/minmax_element.hpp
index 3f44c09eaf..4b2aae6dee 100644
--- a/boost/compute/algorithm/minmax_element.hpp
+++ b/boost/compute/algorithm/minmax_element.hpp
@@ -31,6 +31,9 @@ namespace compute {
/// argument is less than (i.e. is ordered before) the second.
/// \param queue command queue to perform the operation
///
+/// Space complexity on CPUs: \Omega(1)<br>
+/// Space complexity on GPUs: \Omega(N)
+///
/// \see max_element(), min_element()
template<class InputIterator, class Compare>
inline std::pair<InputIterator, InputIterator>