]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/compute/algorithm/remove_if.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / compute / algorithm / remove_if.hpp
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_REMOVE_IF_HPP
12 #define BOOST_COMPUTE_ALGORITHM_REMOVE_IF_HPP
13
14 #include <boost/compute/system.hpp>
15 #include <boost/compute/algorithm/copy_if.hpp>
16 #include <boost/compute/container/vector.hpp>
17 #include <boost/compute/functional/logical.hpp>
18
19 namespace boost {
20 namespace compute {
21
22 /// Removes each element for which \p predicate returns \c true in the
23 /// range [\p first, \p last).
24 ///
25 /// Space complexity: \Omega(3n)
26 ///
27 /// \see remove()
28 template<class Iterator, class Predicate>
29 inline Iterator remove_if(Iterator first,
30 Iterator last,
31 Predicate predicate,
32 command_queue &queue = system::default_queue())
33 {
34 typedef typename std::iterator_traits<Iterator>::value_type value_type;
35
36 // temporary storage for the input data
37 ::boost::compute::vector<value_type> tmp(first, last, queue);
38
39 return ::boost::compute::copy_if(tmp.begin(),
40 tmp.end(),
41 first,
42 not1(predicate),
43 queue);
44 }
45
46 } // end compute namespace
47 } // end boost namespace
48
49 #endif // BOOST_COMPUTE_ALGORITHM_REMOVE_IF_HPP