%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/logaddexp2.hpp |
#ifndef PYTHONIC_NUMPY_LOGADDEXP2_HPP
#define PYTHONIC_NUMPY_LOGADDEXP2_HPP
#include "pythonic/include/numpy/logaddexp2.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/ndarray.hpp"
#include "pythonic/types/numpy_broadcast.hpp"
#include "pythonic/utils/numpy_traits.hpp"
#include "pythonic/numpy/log2.hpp"
#include "pythonic/numpy/power.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
namespace wrapper
{
template <class T0, class T1>
auto logaddexp2(T0 const &t0, T1 const &t1)
-> decltype(functor::log2{}(functor::power{}(T0(2), t0) +
functor::power{}(T1(2), t1)))
{
return functor::log2{}(functor::power{}(T0(2), t0) +
functor::power{}(T1(2), t1));
}
}
#define NUMPY_NARY_FUNC_NAME logaddexp2
#define NUMPY_NARY_FUNC_SYM wrapper::logaddexp2
#include "pythonic/types/numpy_nary_expr.hpp"
}
PYTHONIC_NS_END
#endif