1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
//---------------------------------------------------------------------------//
// Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
//
// Distributed under the Boost Software License, Version 1.0
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
// See http://boostorg.github.com/compute for more information.
//---------------------------------------------------------------------------//
#define BOOST_TEST_MODULE TestMerge
#include <boost/test/unit_test.hpp>
#include <boost/compute/system.hpp>
#include <boost/compute/types/pair.hpp>
#include <boost/compute/algorithm/copy_n.hpp>
#include <boost/compute/algorithm/merge.hpp>
#include <boost/compute/container/vector.hpp>
#include <boost/compute/lambda.hpp>
#include "check_macros.hpp"
#include "context_setup.hpp"
BOOST_AUTO_TEST_CASE(simple_merge_int)
{
int data1[] = { 1, 3, 5, 7 };
int data2[] = { 2, 4, 6, 8 };
boost::compute::vector<int> v1(4, context);
boost::compute::vector<int> v2(4, context);
boost::compute::vector<int> v3(8, context);
boost::compute::copy_n(data1, 4, v1.begin(), queue);
boost::compute::copy_n(data2, 4, v2.begin(), queue);
boost::compute::fill(v3.begin(), v3.end(), 0, queue);
// merge v1 with v2 into v3
boost::compute::merge(
v1.begin(), v1.end(),
v2.begin(), v2.end(),
v3.begin(),
queue
);
CHECK_RANGE_EQUAL(int, 8, v3, (1, 2, 3, 4, 5, 6, 7, 8));
// merge v2 with v1 into v3
boost::compute::merge(
v2.begin(), v2.end(),
v1.begin(), v1.end(),
v3.begin(),
queue
);
CHECK_RANGE_EQUAL(int, 8, v3, (1, 2, 3, 4, 5, 6, 7, 8));
// merge v1 with v1 into v3
boost::compute::merge(
v1.begin(), v1.end(),
v1.begin(), v1.end(),
v3.begin(),
queue
);
CHECK_RANGE_EQUAL(int, 8, v3, (1, 1, 3, 3, 5, 5, 7, 7));
// merge v2 with v2 into v3
boost::compute::merge(
v2.begin(), v2.end(),
v2.begin(), v2.end(),
v3.begin(),
queue
);
CHECK_RANGE_EQUAL(int, 8, v3, (2, 2, 4, 4, 6, 6, 8, 8));
// merge v1 with empty range into v3
boost::compute::merge(
v1.begin(), v1.end(),
v1.begin(), v1.begin(),
v3.begin(),
queue
);
CHECK_RANGE_EQUAL(int, 4, v3, (1, 3, 5, 7));
// merge v2 with empty range into v3
boost::compute::merge(
v1.begin(), v1.begin(),
v2.begin(), v2.end(),
v3.begin(),
queue
);
CHECK_RANGE_EQUAL(int, 4, v3, (2, 4, 6, 8));
}
BOOST_AUTO_TEST_CASE(merge_pairs)
{
std::vector<std::pair<int, float> > data1;
std::vector<std::pair<int, float> > data2;
data1.push_back(std::make_pair(0, 0.1f));
data1.push_back(std::make_pair(2, 2.1f));
data1.push_back(std::make_pair(4, 4.1f));
data1.push_back(std::make_pair(6, 6.1f));
data2.push_back(std::make_pair(1, 1.1f));
data2.push_back(std::make_pair(3, 3.1f));
data2.push_back(std::make_pair(5, 5.1f));
data2.push_back(std::make_pair(7, 7.1f));
std::vector<std::pair<int, float> > data3(data1.size() + data2.size());
std::fill(data3.begin(), data3.end(), std::make_pair(-1, -1.f));
boost::compute::vector<std::pair<int, float> > v1(data1.size(), context);
boost::compute::vector<std::pair<int, float> > v2(data2.size(), context);
boost::compute::vector<std::pair<int, float> > v3(data3.size(), context);
boost::compute::copy(data1.begin(), data1.end(), v1.begin(), queue);
boost::compute::copy(data2.begin(), data2.end(), v2.begin(), queue);
using ::boost::compute::lambda::_1;
using ::boost::compute::lambda::_2;
using ::boost::compute::lambda::get;
boost::compute::merge(
v1.begin(), v1.end(),
v2.begin(), v2.end(),
v3.begin(),
get<0>(_1) < get<0>(_2),
queue
);
boost::compute::copy(v3.begin(), v3.end(), data3.begin(), queue);
BOOST_CHECK(v3[0] == std::make_pair(0, 0.1f));
BOOST_CHECK(v3[1] == std::make_pair(1, 1.1f));
BOOST_CHECK(v3[2] == std::make_pair(2, 2.1f));
BOOST_CHECK(v3[3] == std::make_pair(3, 3.1f));
BOOST_CHECK(v3[4] == std::make_pair(4, 4.1f));
BOOST_CHECK(v3[5] == std::make_pair(5, 5.1f));
BOOST_CHECK(v3[6] == std::make_pair(6, 6.1f));
BOOST_CHECK(v3[7] == std::make_pair(7, 7.1f));
}
BOOST_AUTO_TEST_CASE(merge_floats)
{
float data1[] = { 1.1f, 2.2f, 3.3f, 4.4f,
5.5f, 6.6f, 7.7f, 8.8f };
float data2[] = { 1.0f, 2.0f, 3.9f, 4.9f,
6.8f, 6.9f, 7.0f, 7.1f };
boost::compute::vector<float> v1(8, context);
boost::compute::vector<float> v2(8, context);
boost::compute::vector<float> v3(v1.size() + v2.size(), context);
boost::compute::copy_n(data1, 8, v1.begin(), queue);
boost::compute::copy_n(data2, 8, v2.begin(), queue);
boost::compute::fill(v3.begin(), v3.end(), 0.f, queue);
boost::compute::merge(
v1.begin(), v1.end(),
v2.begin(), v2.end(),
v3.begin(),
queue
);
CHECK_RANGE_EQUAL(float, 16, v3,
(1.0f, 1.1f, 2.0f, 2.2f, 3.3f, 3.9f, 4.4f, 4.9f,
5.5f, 6.6f, 6.8f, 6.9f, 7.0f, 7.1f, 7.7f, 8.8f)
);
}
BOOST_AUTO_TEST_SUITE_END()
|