#include #include #include #include #include template OutputType transform_reduce(my_system &system, InputIterator, InputIterator, UnaryFunction, OutputType init, BinaryFunction) { system.validate_dispatch(); return init; } void TestTransformReduceDispatchExplicit() { thrust::device_vector vec(1); my_system sys(0); thrust::transform_reduce(sys, vec.begin(), vec.begin(), 0, 0, 0); ASSERT_EQUAL(true, sys.is_valid()); } DECLARE_UNITTEST(TestTransformReduceDispatchExplicit); template OutputType transform_reduce(my_tag, InputIterator first, InputIterator, UnaryFunction, OutputType init, BinaryFunction) { *first = 13; return init; } void TestTransformReduceDispatchImplicit() { thrust::device_vector vec(1); thrust::transform_reduce(thrust::retag(vec.begin()), thrust::retag(vec.begin()), 0, 0, 0); ASSERT_EQUAL(13, vec.front()); } DECLARE_UNITTEST(TestTransformReduceDispatchImplicit); template void TestTransformReduceSimple(void) { typedef typename Vector::value_type T; Vector data(3); data[0] = 1; data[1] = -2; data[2] = 3; T init = 10; T result = thrust::transform_reduce(data.begin(), data.end(), thrust::negate(), init, thrust::plus()); ASSERT_EQUAL(result, 8); } DECLARE_VECTOR_UNITTEST(TestTransformReduceSimple); template void TestTransformReduce(const size_t n) { thrust::host_vector h_data = unittest::random_integers(n); thrust::device_vector d_data = h_data; T init = 13; T cpu_result = thrust::transform_reduce(h_data.begin(), h_data.end(), thrust::negate(), init, thrust::plus()); T gpu_result = thrust::transform_reduce(d_data.begin(), d_data.end(), thrust::negate(), init, thrust::plus()); ASSERT_ALMOST_EQUAL(cpu_result, gpu_result); } DECLARE_VARIABLE_UNITTEST(TestTransformReduce); template void TestTransformReduceFromConst(const size_t n) { thrust::host_vector h_data = unittest::random_integers(n); thrust::device_vector d_data = h_data; T init = 13; T cpu_result = thrust::transform_reduce(h_data.cbegin(), h_data.cend(), thrust::negate(), init, thrust::plus()); T gpu_result = thrust::transform_reduce(d_data.cbegin(), d_data.cend(), thrust::negate(), init, thrust::plus()); ASSERT_ALMOST_EQUAL(cpu_result, gpu_result); } DECLARE_VARIABLE_UNITTEST(TestTransformReduceFromConst); template void TestTransformReduceCountingIterator(void) { typedef typename Vector::value_type T; typedef typename thrust::iterator_system::type space; thrust::counting_iterator first(1); T result = thrust::transform_reduce(first, first + 3, thrust::negate(), 0, thrust::plus()); ASSERT_EQUAL(result, -6); } DECLARE_INTEGRAL_VECTOR_UNITTEST(TestTransformReduceCountingIterator);