1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/*! \file thrust/zip_function.h
* \brief Adaptor type that turns an N-ary function object into one that takes
* a tuple of size N so it can easily be used with algorithms taking zip
* iterators
*/
#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 // no system header
#include <thrust/detail/cpp11_required.h>
#include <thrust/detail/modern_gcc_required.h>
#if THRUST_CPP_DIALECT >= 2011 && !defined(THRUST_LEGACY_GCC)
#include <thrust/tuple.h>
#include <thrust/type_traits/integer_sequence.h>
#include <thrust/detail/type_deduction.h>
THRUST_NAMESPACE_BEGIN
/*! \addtogroup function_objects Function Objects
* \{
*/
/*! \addtogroup function_object_adaptors Function Object Adaptors
* \ingroup function_objects
* \{
*/
namespace detail {
namespace zip_detail {
// Add workaround for decltype(auto) on C++11-only compilers:
#if THRUST_CPP_DIALECT >= 2014
__thrust_exec_check_disable__
template <typename Function, typename Tuple, std::size_t... Is>
__host__ __device__
decltype(auto) apply_impl(Function&& func, Tuple&& args, index_sequence<Is...>)
{
return func(thrust::get<Is>(THRUST_FWD(args))...);
}
template <typename Function, typename Tuple>
__host__ __device__
decltype(auto) apply(Function&& func, Tuple&& args)
{
constexpr auto tuple_size = thrust::tuple_size<typename std::decay<Tuple>::type>::value;
return apply_impl(THRUST_FWD(func), THRUST_FWD(args), make_index_sequence<tuple_size>{});
}
#else // THRUST_CPP_DIALECT
__thrust_exec_check_disable__
template <typename Function, typename Tuple, std::size_t... Is>
__host__ __device__
auto apply_impl(Function&& func, Tuple&& args, index_sequence<Is...>)
THRUST_DECLTYPE_RETURNS(func(thrust::get<Is>(THRUST_FWD(args))...))
template <typename Function, typename Tuple>
__host__ __device__
auto apply(Function&& func, Tuple&& args)
THRUST_DECLTYPE_RETURNS(
apply_impl(
THRUST_FWD(func),
THRUST_FWD(args),
make_index_sequence<
thrust::tuple_size<typename std::decay<Tuple>::type>::value>{})
)
#endif // THRUST_CPP_DIALECT
} // namespace zip_detail
} // namespace detail
/*! \p zip_function is a function object that allows the easy use of N-ary
* function objects with \p zip_iterators without redefining them to take a
* \p tuple instead of N arguments.
*
* This means that if a functor that takes 2 arguments which could be used with
* the \p transform function and \p device_iterators can be extended to take 3
* arguments and \p zip_iterators without rewriting the functor in terms of
* \p tuple.
*
* The \p make_zip_function convenience function is provided to avoid having
* to explicitely define the type of the functor when creating a \p zip_function,
* whic is especially helpful when using lambdas as the functor.
*
* \code
* #include <thrust/iterator/zip_iterator.h>
* #include <thrust/device_vector.h>
* #include <thrust/transform.h>
* #include <thrust/zip_function.h>
*
* struct SumTuple {
* float operator()(Tuple tup) {
* return std::get<0>(tup) + std::get<1>(tup) + std::get<2>(tup);
* }
* };
* struct SumArgs {
* float operator()(float a, float b, float c) {
* return a + b + c;
* }
* };
*
* int main() {
* thrust::device_vector<float> A(3);
* thrust::device_vector<float> B(3);
* thrust::device_vector<float> C(3);
* thrust::device_vector<float> D(3);
* A[0] = 0.f; A[1] = 1.f; A[2] = 2.f;
* B[0] = 1.f; B[1] = 2.f; B[2] = 3.f;
* C[0] = 2.f; C[1] = 3.f; C[2] = 4.f;
*
* // The following four invocations of transform are equivalent
* // Transform with 3-tuple
* thrust::transform(thrust::make_zip_iterator(thrust::make_tuple(A.begin(), B.begin(), C.begin())),
* thrust::make_zip_iterator(thrust::make_tuple(A.end(), B.end(), C.end())),
* D.begin(),
* SumTuple{});
*
* // Transform with 3 parameters
* thrust::zip_function<SumArgs> adapted{};
* thrust::transform(thrust::make_zip_iterator(thrust::make_tuple(A.begin(), B.begin(), C.begin())),
* thrust::make_zip_iterator(thrust::make_tuple(A.end(), B.end(), C.end())),
* D.begin(),
* adapted);
*
* // Transform with 3 parameters with convenience function
* thrust::zip_function<SumArgs> adapted{};
* thrust::transform(thrust::make_zip_iterator(thrust::make_tuple(A.begin(), B.begin(), C.begin())),
* thrust::make_zip_iterator(thrust::make_tuple(A.end(), B.end(), C.end())),
* D.begin(),
* thrust::make_zip_function(SumArgs{}));
*
* // Transform with 3 parameters with convenience function and lambda
* thrust::zip_function<SumArgs> adapted{};
* thrust::transform(thrust::make_zip_iterator(thrust::make_tuple(A.begin(), B.begin(), C.begin())),
* thrust::make_zip_iterator(thrust::make_tuple(A.end(), B.end(), C.end())),
* D.begin(),
* thrust::make_zip_function([] (float a, float b, float c) {
* return a + b + c;
* }));
* return 0;
* }
* \endcode
*
* \see make_zip_function
* \see zip_iterator
*/
template <typename Function>
class zip_function
{
public:
__host__ __device__
zip_function(Function func) : func(std::move(func)) {}
// Add workaround for decltype(auto) on C++11-only compilers:
#if THRUST_CPP_DIALECT >= 2014
template <typename Tuple>
__host__ __device__
decltype(auto) operator()(Tuple&& args) const
{
return detail::zip_detail::apply(func, THRUST_FWD(args));
}
#else // THRUST_CPP_DIALECT
// Can't just use THRUST_DECLTYPE_RETURNS here since we need to use
// std::declval for the signature components:
template <typename Tuple>
__host__ __device__
auto operator()(Tuple&& args) const
noexcept(noexcept(detail::zip_detail::apply(std::declval<Function>(), THRUST_FWD(args))))
THRUST_TRAILING_RETURN(decltype(detail::zip_detail::apply(std::declval<Function>(), THRUST_FWD(args))))
{
return detail::zip_detail::apply(func, THRUST_FWD(args));
}
#endif // THRUST_CPP_DIALECT
private:
mutable Function func;
};
/*! \p make_zip_function creates a \p zip_function from a function object.
*
* \param fun The N-ary function object.
* \return A \p zip_function that takes a N-tuple.
*
* \see zip_function
*/
template <typename Function>
__host__ __device__
zip_function<typename std::decay<Function>::type>
make_zip_function(Function&& fun)
{
using func_t = typename std::decay<Function>::type;
return zip_function<func_t>(THRUST_FWD(fun));
}
/*! \} // end function_object_adaptors
*/
/*! \} // end function_objects
*/
THRUST_NAMESPACE_END
#endif
|