#include #include #include #include #include static const size_t num_samples = 10000; template struct rebind_vector; template struct rebind_vector, U> { typedef typename thrust::detail::allocator_traits alloc_traits; typedef typename alloc_traits::template rebind_alloc new_alloc; typedef thrust::host_vector type; }; template struct rebind_vector, U> { typedef thrust::device_vector::other> type; }; #define BINARY_FUNCTIONAL_PLACEHOLDERS_TEST(name, op, reference_functor, type_list) \ template \ struct TestFunctionalPlaceholders##name \ { \ void operator()(const size_t) \ { \ static const size_t num_samples = 10000; \ const size_t zero = 0; \ typedef typename Vector::value_type T; \ Vector lhs = unittest::random_samples(num_samples); \ Vector rhs = unittest::random_samples(num_samples); \ thrust::replace(rhs.begin(), rhs.end(), T(0), T(1)); \ \ Vector reference(lhs.size()); \ Vector result(lhs.size()); \ using namespace thrust::placeholders; \ \ thrust::transform(lhs.begin(), lhs.end(), rhs.begin(), reference.begin(), reference_functor()); \ thrust::transform(lhs.begin(), lhs.end(), rhs.begin(), result.begin(), _1 op _2); \ ASSERT_ALMOST_EQUAL(reference, result); \ \ thrust::transform(lhs.begin(), lhs.end(), thrust::make_constant_iterator(1), reference.begin(), reference_functor()); \ thrust::transform(lhs.begin(), lhs.end(), result.begin(), _1 op T(1)); \ ASSERT_ALMOST_EQUAL(reference, result); \ \ thrust::transform(thrust::make_constant_iterator(1,zero), thrust::make_constant_iterator(1,num_samples), rhs.begin(), reference.begin(), reference_functor()); \ thrust::transform(rhs.begin(), rhs.end(), result.begin(), T(1) op _1); \ ASSERT_ALMOST_EQUAL(reference, result); \ } \ }; \ VectorUnitTest TestFunctionalPlaceholders##name##DeviceInstance; \ VectorUnitTest TestFunctionalPlaceholders##name##HostInstance; BINARY_FUNCTIONAL_PLACEHOLDERS_TEST(BitAnd, &, thrust::bit_and, SmallIntegralTypes); BINARY_FUNCTIONAL_PLACEHOLDERS_TEST(BitOr, |, thrust::bit_or, SmallIntegralTypes); BINARY_FUNCTIONAL_PLACEHOLDERS_TEST(BitXor, ^, thrust::bit_xor, SmallIntegralTypes); template struct bit_negate_reference { __host__ __device__ T operator()(const T &x) const { return ~x; } }; template void TestFunctionalPlaceholdersBitNegate(void) { typedef typename Vector::value_type T; typedef typename rebind_vector::type bool_vector; Vector input = unittest::random_samples(num_samples); bool_vector reference(input.size()); thrust::transform(input.begin(), input.end(), reference.begin(), bit_negate_reference()); using namespace thrust::placeholders; bool_vector result(input.size()); thrust::transform(input.begin(), input.end(), result.begin(), ~_1); ASSERT_EQUAL(reference, result); } DECLARE_INTEGRAL_VECTOR_UNITTEST(TestFunctionalPlaceholdersBitNegate);