%PDF- %PDF-
| Direktori : /proc/self/root/lib/python3/dist-packages/pythran/pythonic/numpy/ |
| Current File : //proc/self/root/lib/python3/dist-packages/pythran/pythonic/numpy/logaddexp.hpp |
#ifndef PYTHONIC_NUMPY_LOGADDEXP_HPP
#define PYTHONIC_NUMPY_LOGADDEXP_HPP
#include "pythonic/include/numpy/logaddexp.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/ndarray.hpp"
#include "pythonic/utils/numpy_traits.hpp"
#include "pythonic/numpy/log.hpp"
#include "pythonic/numpy/exp.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
namespace wrapper
{
template <class T0, class T1>
auto logaddexp(T0 const &t0, T1 const &t1)
-> decltype(functor::log{}(functor::exp{}(t0) + functor::exp{}(t1)))
{
return functor::log{}(functor::exp{}(t0) + functor::exp{}(t1));
}
}
#define NUMPY_NARY_FUNC_NAME logaddexp
#define NUMPY_NARY_FUNC_SYM wrapper::logaddexp
#include "pythonic/types/numpy_nary_expr.hpp"
}
PYTHONIC_NS_END
#endif