%PDF- %PDF-
| Direktori : /usr/lib/python3/dist-packages/pythran/pythonic/include/numpy/ |
| Current File : //usr/lib/python3/dist-packages/pythran/pythonic/include/numpy/ufunc_accumulate.hpp |
#ifndef UFUNC_NAME
#error missing UFUNC_NAME
#endif
// clang-format off
#include INCLUDE_FILE(pythonic/include/numpy,UFUNC_NAME)
// clang-format on
#include "pythonic/include/utils/functor.hpp"
#include <pythonic/include/numpy/partial_sum.hpp>
#include <utility>
PYTHONIC_NS_BEGIN
namespace numpy
{
namespace UFUNC_NAME
{
template <class T,
class dtype = numpy::result_dtype<numpy::functor::UFUNC_NAME, T>>
auto accumulate(T &&a, long axis = 0, dtype d = dtype())
-> decltype(partial_sum<numpy::functor::UFUNC_NAME>(std::forward<T>(a),
axis, d));
DEFINE_FUNCTOR(pythonic::numpy::UFUNC_NAME, accumulate);
}
}
PYTHONIC_NS_END