| | #include <thrust/detail/config.h> |
| |
|
| | #if THRUST_CPP_DIALECT >= 2014 |
| |
|
| | #include <async/test_policy_overloads.h> |
| |
|
| | #include <async/exclusive_scan/mixin.h> |
| |
|
| | namespace |
| | { |
| |
|
| | |
| | template <typename T> |
| | struct stateful_operator |
| | { |
| | T offset; |
| |
|
| | __host__ __device__ T operator()(T v1, T v2) { return v1 + v2 + offset; } |
| | }; |
| |
|
| | |
| | template <typename value_type> |
| | struct use_stateful_operator |
| | { |
| | using postfix_args_type = std::tuple< |
| | std::tuple<value_type, stateful_operator<value_type>> |
| | >; |
| |
|
| | static postfix_args_type generate_postfix_args() |
| | { |
| | return postfix_args_type{ |
| | std::make_tuple(value_type{42}, |
| | stateful_operator<value_type>{value_type{2}})}; |
| | } |
| | }; |
| |
|
| | template <typename value_type> |
| | struct invoker |
| | : testing::async::mixin::input::device_vector<value_type> |
| | , testing::async::mixin::output::device_vector<value_type> |
| | , use_stateful_operator<value_type> |
| | , testing::async::exclusive_scan::mixin::invoke_reference::host_synchronous< |
| | value_type> |
| | , testing::async::exclusive_scan::mixin::invoke_async::simple |
| | , testing::async::mixin::compare_outputs::assert_almost_equal_if_fp_quiet |
| | { |
| | static std::string description() { return "scan with stateful operator"; } |
| | }; |
| |
|
| | } |
| |
|
| | template <typename T> |
| | struct test_stateful_operator |
| | { |
| | void operator()(std::size_t num_values) const |
| | { |
| | testing::async::test_policy_overloads<invoker<T>>::run(num_values); |
| | } |
| | }; |
| | DECLARE_GENERIC_SIZED_UNITTEST_WITH_TYPES(test_stateful_operator, NumericTypes); |
| |
|
| | #endif |
| |
|