]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/compute/algorithm/partition.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / compute / algorithm / partition.hpp
CommitLineData
7c673cae
FG
1//---------------------------------------------------------------------------//
2// Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
3//
4// Distributed under the Boost Software License, Version 1.0
5// See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt
7//
8// See http://boostorg.github.com/compute for more information.
9//---------------------------------------------------------------------------//
10
11#ifndef BOOST_COMPUTE_ALGORITHM_PARTITION_HPP
12#define BOOST_COMPUTE_ALGORITHM_PARTITION_HPP
13
92f5a8d4
TL
14#include <boost/static_assert.hpp>
15
7c673cae
FG
16#include <boost/compute/system.hpp>
17#include <boost/compute/command_queue.hpp>
18#include <boost/compute/algorithm/stable_partition.hpp>
92f5a8d4 19#include <boost/compute/type_traits/is_device_iterator.hpp>
7c673cae
FG
20
21namespace boost {
22namespace compute {
23
24///
25/// Partitions the elements in the range [\p first, \p last) according to
26/// \p predicate. Order of the elements need not be preserved.
27///
b32b8144
FG
28/// Space complexity: \Omega(3n)
29///
7c673cae
FG
30/// \see is_partitioned() and stable_partition()
31///
32template<class Iterator, class UnaryPredicate>
33inline Iterator partition(Iterator first,
34 Iterator last,
35 UnaryPredicate predicate,
36 command_queue &queue = system::default_queue())
37{
92f5a8d4 38 BOOST_STATIC_ASSERT(is_device_iterator<Iterator>::value);
7c673cae
FG
39 return stable_partition(first, last, predicate, queue);
40}
41
42} // end compute namespace
43} // end boost namespace
44
45#endif // BOOST_COMPUTE_ALGORITHM_PARTITION_HPP