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

Function partial_sum

include/boost/compute/algorithm/partial_sum.hpp:25–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23/// \p result.
24template<class InputIterator, class OutputIterator>
25inline OutputIterator
26partial_sum(InputIterator first,
27 InputIterator last,
28 OutputIterator result,
29 command_queue &queue = system::default_queue())
30{
31 return ::boost::compute::inclusive_scan(first, last, result, queue);
32}
33
34} // end compute namespace
35} // end boost namespace

Callers 5

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

Calls 1

inclusive_scanFunction · 0.85

Tested by 2

BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68