| Server IP : 217.160.0.212 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3/dist-packages/pythran/pythonic/numpy/ |
Upload File : |
#ifndef PYTHONIC_NUMPY_FREXP_HPP
#define PYTHONIC_NUMPY_FREXP_HPP
#include "pythonic/include/numpy/frexp.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/utils/numpy_conversion.hpp"
#include "pythonic/types/traits.hpp"
#include "pythonic/types/ndarray.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
template <class T>
typename std::enable_if<std::is_scalar<T>::value, std::tuple<T, int>>::type
frexp(T val)
{
int exp;
T significand = std::frexp(val, &exp);
return std::make_tuple(significand, exp);
}
namespace
{
template <class E, class F, class G>
void _frexp(E begin, E end, F significands_iter, G exps_iter,
utils::int_<1>)
{
for (; begin != end; ++begin, ++significands_iter, ++exps_iter)
*significands_iter = std::frexp(*begin, exps_iter);
}
template <class E, class F, class G, size_t N>
void _frexp(E begin, E end, F significands_iter, G exps_iter,
utils::int_<N>)
{
for (; begin != end; ++begin, ++significands_iter, ++exps_iter)
_frexp((*begin).begin(), (*begin).end(), (*significands_iter).begin(),
(*exps_iter).begin(), utils::int_<N - 1>());
}
}
template <class E>
typename std::enable_if<
!types::is_dtype<E>::value,
std::tuple<types::ndarray<typename E::dtype, typename E::shape_t>,
types::ndarray<int, typename E::shape_t>>>::type
frexp(E const &arr)
{
auto arr_shape = sutils::getshape(arr);
types::ndarray<typename E::dtype, typename E::shape_t> significands(
arr_shape, builtins::None);
types::ndarray<int, typename E::shape_t> exps(arr_shape, builtins::None);
_frexp(arr.begin(), arr.end(), significands.begin(), exps.begin(),
utils::int_<E::value>());
return std::make_tuple(significands, exps);
}
}
PYTHONIC_NS_END
#endif