| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #pragma once |
|
|
| #include <thrust/detail/config.h> |
|
|
| #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) |
| # pragma GCC system_header |
| #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) |
| # pragma clang system_header |
| #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) |
| # pragma system_header |
| #endif |
|
|
| #include <thrust/functional.h> |
|
|
| THRUST_NAMESPACE_BEGIN |
|
|
| namespace detail |
| { |
|
|
| template<typename Operation> |
| struct unary_traits_imp; |
|
|
| template<typename Operation> |
| struct unary_traits_imp<Operation*> |
| { |
| typedef Operation function_type; |
| typedef const function_type & param_type; |
| typedef typename Operation::result_type result_type; |
| typedef typename Operation::argument_type argument_type; |
| }; |
|
|
| template<typename Result, typename Argument> |
| struct unary_traits_imp<Result(*)(Argument)> |
| { |
| typedef Result (*function_type)(Argument); |
| typedef Result (*param_type)(Argument); |
| typedef Result result_type; |
| typedef Argument argument_type; |
| }; |
|
|
| template<typename Operation> |
| struct binary_traits_imp; |
|
|
| template<typename Operation> |
| struct binary_traits_imp<Operation*> |
| { |
| typedef Operation function_type; |
| typedef const function_type & param_type; |
| typedef typename Operation::result_type result_type; |
| typedef typename Operation::first_argument_type first_argument_type; |
| typedef typename Operation::second_argument_type second_argument_type; |
| }; |
|
|
| template<typename Result, typename Argument1, typename Argument2> |
| struct binary_traits_imp<Result(*)(Argument1, Argument2)> |
| { |
| typedef Result (*function_type)(Argument1, Argument2); |
| typedef Result (*param_type)(Argument1, Argument2); |
| typedef Result result_type; |
| typedef Argument1 first_argument_type; |
| typedef Argument2 second_argument_type; |
| }; |
|
|
| } |
|
|
| template<typename Operation> |
| struct unary_traits |
| { |
| typedef typename detail::unary_traits_imp<Operation*>::function_type function_type; |
| typedef typename detail::unary_traits_imp<Operation*>::param_type param_type; |
| typedef typename detail::unary_traits_imp<Operation*>::result_type result_type; |
| typedef typename detail::unary_traits_imp<Operation*>::argument_type argument_type; |
| }; |
|
|
| template<typename Result, typename Argument> |
| struct unary_traits<Result(*)(Argument)> |
| { |
| typedef Result (*function_type)(Argument); |
| typedef Result (*param_type)(Argument); |
| typedef Result result_type; |
| typedef Argument argument_type; |
| }; |
|
|
| template<typename Operation> |
| struct binary_traits |
| { |
| typedef typename detail::binary_traits_imp<Operation*>::function_type function_type; |
| typedef typename detail::binary_traits_imp<Operation*>::param_type param_type; |
| typedef typename detail::binary_traits_imp<Operation*>::result_type result_type; |
| typedef typename detail::binary_traits_imp<Operation*>::first_argument_type first_argument_type; |
| typedef typename detail::binary_traits_imp<Operation*>::second_argument_type second_argument_type; |
| }; |
|
|
| template<typename Result, typename Argument1, typename Argument2> |
| struct binary_traits<Result(*)(Argument1, Argument2)> |
| { |
| typedef Result (*function_type)(Argument1, Argument2); |
| typedef Result (*param_type)(Argument1, Argument2); |
| typedef Result result_type; |
| typedef Argument1 first_argument_type; |
| typedef Argument2 second_argument_type; |
| }; |
|
|
| template<typename Predicate> |
| __host__ __device__ |
| unary_negate<Predicate> not1(const Predicate &pred) |
| { |
| return unary_negate<Predicate>(pred); |
| } |
|
|
| template<typename BinaryPredicate> |
| __host__ __device__ |
| binary_negate<BinaryPredicate> not2(const BinaryPredicate &pred) |
| { |
| return binary_negate<BinaryPredicate>(pred); |
| } |
|
|
| THRUST_NAMESPACE_END |
|
|