| 31 | namespace compute = boost::compute; |
| 32 | |
| 33 | BOOST_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 | |
| 42 | BOOST_AUTO_TEST_CASE(copy_vector_tuple) |
| 43 | { |