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

Function copy

include/boost/compute/algorithm/copy.hpp:337–343  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

335/// \see copy_n(), copy_if(), copy_async()
336template<class InputIterator, class OutputIterator>
337inline OutputIterator copy(InputIterator first,
338 InputIterator last,
339 OutputIterator result,
340 command_queue &queue = system::default_queue())
341{
342 return detail::dispatch_copy(first, last, result, queue);
343}
344
345/// Copies the values in the range [\p first, \p last) to the range
346/// beginning at \p result. The copy is performed asynchronously.

Callers 15

mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls 1

dispatch_copyFunction · 0.85

Tested by 15

BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68
BOOST_AUTO_TEST_CASEFunction · 0.68