Spaces:
Runtime error
Runtime error
| static const size_t num_samples = 10000; | |
| template<typename Vector, typename U> struct rebind_vector; | |
| template<typename T, typename U, typename Allocator> | |
| struct rebind_vector<thrust::host_vector<T, Allocator>, U> | |
| { | |
| typedef typename thrust::detail::allocator_traits<Allocator> alloc_traits; | |
| typedef typename alloc_traits::template rebind_alloc<U> new_alloc; | |
| typedef thrust::host_vector<U, new_alloc> type; | |
| }; | |
| template<typename T, typename U, typename Allocator> | |
| struct rebind_vector<thrust::device_vector<T, Allocator>, U> | |
| { | |
| typedef thrust::device_vector<U, | |
| typename Allocator::template rebind<U>::other> type; | |
| }; | |
| 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<typename T> | |
| struct bit_negate_reference | |
| { | |
| __host__ __device__ T operator()(const T &x) const | |
| { | |
| return ~x; | |
| } | |
| }; | |
| template<typename Vector> | |
| void TestFunctionalPlaceholdersBitNegate(void) | |
| { | |
| typedef typename Vector::value_type T; | |
| typedef typename rebind_vector<Vector,bool>::type bool_vector; | |
| Vector input = unittest::random_samples<T>(num_samples); | |
| bool_vector reference(input.size()); | |
| thrust::transform(input.begin(), input.end(), reference.begin(), bit_negate_reference<T>()); | |
| 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); | |