| | #include <unittest/unittest.h> |
| | #include <thrust/functional.h> |
| | #include <thrust/transform.h> |
| |
|
| | #include <functional> |
| | #include <algorithm> |
| | |
| | const size_t NUM_SAMPLES = 10000; |
| |
|
| | template <class InputVector, class OutputVector, class Operator, class ReferenceOperator> |
| | void TestBinaryFunctional(void) |
| | { |
| | typedef typename InputVector::value_type InputType; |
| | typedef typename OutputVector::value_type OutputType; |
| | |
| | thrust::host_vector<InputType> std_input1 = unittest::random_samples<InputType>(NUM_SAMPLES); |
| | thrust::host_vector<InputType> std_input2 = unittest::random_samples<InputType>(NUM_SAMPLES); |
| | thrust::host_vector<OutputType> std_output(NUM_SAMPLES); |
| |
|
| | InputVector input1 = std_input1; |
| | InputVector input2 = std_input2; |
| | OutputVector output(NUM_SAMPLES); |
| |
|
| | thrust::transform( input1.begin(), input1.end(), input2.begin(), output.begin(), Operator()); |
| | thrust::transform(std_input1.begin(), std_input1.end(), std_input2.begin(), std_output.begin(), ReferenceOperator()); |
| |
|
| | |
| | ASSERT_ALMOST_EQUAL(output, std_output); |
| | } |
| |
|
| |
|
| |
|
| | |
| | |
| | #define INSTANTIATE_INTEGER_TYPES(Macro, vector_type, operator_name) \ |
| | Macro(vector_type, operator_name, unittest::int8_t ) \ |
| | Macro(vector_type, operator_name, unittest::uint8_t ) \ |
| | Macro(vector_type, operator_name, unittest::int16_t ) \ |
| | Macro(vector_type, operator_name, unittest::uint16_t) \ |
| | Macro(vector_type, operator_name, unittest::int32_t ) \ |
| | Macro(vector_type, operator_name, unittest::uint32_t) \ |
| | Macro(vector_type, operator_name, unittest::int64_t ) \ |
| | Macro(vector_type, operator_name, unittest::uint64_t) |
| |
|
| | |
| | #define INSTANTIATE_ALL_TYPES(Macro, vector_type, operator_name) \ |
| | INSTANTIATE_INTEGER_TYPES(Macro, vector_type, operator_name) \ |
| | Macro(vector_type, operator_name, float) |
| |
|
| |
|
| | |
| | |
| | #define INSTANTIATE_BINARY_LOGICAL_FUNCTIONAL_TEST(vector_type, operator_name, data_type) \ |
| | TestBinaryFunctional< thrust::vector_type<data_type>, \ |
| | thrust::vector_type<data_type>, \ |
| | thrust::operator_name<data_type>, \ |
| | std::operator_name<data_type> >(); |
| |
|
| | |
| | #define DECLARE_BINARY_LOGICAL_FUNCTIONAL_UNITTEST(operator_name, OperatorName) \ |
| | void Test##OperatorName##FunctionalHost(void) \ |
| | { \ |
| | INSTANTIATE_ALL_TYPES( INSTANTIATE_BINARY_LOGICAL_FUNCTIONAL_TEST, host_vector, operator_name); \ |
| | } \ |
| | DECLARE_UNITTEST(Test##OperatorName##FunctionalHost); \ |
| | void Test##OperatorName##FunctionalDevice(void) \ |
| | { \ |
| | INSTANTIATE_ALL_TYPES( INSTANTIATE_BINARY_LOGICAL_FUNCTIONAL_TEST, device_vector, operator_name); \ |
| | } \ |
| | DECLARE_UNITTEST(Test##OperatorName##FunctionalDevice); |
| |
|
| | |
| | DECLARE_BINARY_LOGICAL_FUNCTIONAL_UNITTEST(equal_to, EqualTo ); |
| | DECLARE_BINARY_LOGICAL_FUNCTIONAL_UNITTEST(not_equal_to, NotEqualTo ); |
| | DECLARE_BINARY_LOGICAL_FUNCTIONAL_UNITTEST(greater, Greater ); |
| | DECLARE_BINARY_LOGICAL_FUNCTIONAL_UNITTEST(less, Less ); |
| | DECLARE_BINARY_LOGICAL_FUNCTIONAL_UNITTEST(greater_equal, GreaterEqual); |
| | DECLARE_BINARY_LOGICAL_FUNCTIONAL_UNITTEST(less_equal, LessEqual ); |
| | DECLARE_BINARY_LOGICAL_FUNCTIONAL_UNITTEST(logical_and, LogicalAnd ); |
| | DECLARE_BINARY_LOGICAL_FUNCTIONAL_UNITTEST(logical_or, LogicalOr ); |
| |
|
| |
|