MCPcopy Create free account
hub / github.com/boostorg/compute / partition_point

Function partition_point

include/boost/compute/algorithm/partition_point.hpp:40–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38///
39template<class InputIterator, class UnaryPredicate>
40inline InputIterator partition_point(InputIterator first,
41 InputIterator last,
42 UnaryPredicate predicate,
43 command_queue &queue = system::default_queue())
44{
45 BOOST_STATIC_ASSERT(is_device_iterator<InputIterator>::value);
46 return detail::binary_find(first, last, not1(predicate), queue);
47}
48
49} // end compute namespace
50} // end boost namespace

Callers 4

BOOST_AUTO_TEST_CASEFunction · 0.85
BOOST_AUTO_TEST_CASEFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls 2

binary_findFunction · 0.85
not1Function · 0.85

Tested by 2

BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68