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

Function BOOST_AUTO_TEST_CASE

test/test_tuple.cpp:33–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31namespace compute = boost::compute;
32
33BOOST_AUTO_TEST_CASE(vector_tuple_int_float)
34{
35 boost::compute::vector<boost::tuple<int, float> > vector(context);
36
37 vector.push_back(boost::make_tuple(1, 2.1f), queue);
38 vector.push_back(boost::make_tuple(2, 3.2f), queue);
39 vector.push_back(boost::make_tuple(3, 4.3f), queue);
40}
41
42BOOST_AUTO_TEST_CASE(copy_vector_tuple)
43{

Callers

nothing calls this directly

Calls 7

copyFunction · 0.85
transformFunction · 0.85
bug_in_struct_assignmentFunction · 0.85
fillFunction · 0.85
push_backMethod · 0.80
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected