%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /proc/985914/root/lib/python3/dist-packages/pythran/pythonic/include/numpy/
Upload File :
Create Path :
Current File : //proc/985914/root/lib/python3/dist-packages/pythran/pythonic/include/numpy/around.hpp

#ifndef PYTHONIC_INCLUDE_NUMPY_AROUND_HPP
#define PYTHONIC_INCLUDE_NUMPY_AROUND_HPP

#include "pythonic/include/numpy/rint.hpp"
#include "pythonic/include/numpy/floor_divide.hpp"
#include "pythonic/include/numpy/asarray.hpp"
#include "pythonic/include/numpy/float64.hpp"
#include "pythonic/include/numpy/multiply.hpp"

PYTHONIC_NS_BEGIN

namespace numpy
{
  // fast path
  template <class E>
  auto around(E &&a) -> decltype(functor::rint{}(std::forward<E>(a)));

  // generic floating point version, pure numpy_expr
  template <class E>
  auto around(E &&a, long decimals) -> typename std::enable_if<
      !std::is_integral<
          typename types::dtype_of<typename std::decay<E>::type>::type>::value,
      decltype(functor::rint{}(functor::multiply{}(
                   std::forward<E>(a),
                   std::declval<typename types::dtype_of<
                       typename std::decay<E>::type>::type>())) /
               std::declval<typename types::dtype_of<
                   typename std::decay<E>::type>::type>())>::type;

  // the integer version is only relevant when decimals < 0
  template <class E>
  auto around(E &&a, long decimals) -> typename std::enable_if<
      std::is_integral<
          typename types::dtype_of<typename std::decay<E>::type>::type>::value,
      decltype(numpy::functor::floor_divide{}(
                   functor::float64{}(std::forward<E>(a)),
                   std::declval<typename types::dtype_of<
                       typename std::decay<E>::type>::type>()) *
               std::declval<typename types::dtype_of<
                   typename std::decay<E>::type>::type>())>::type;

  DEFINE_FUNCTOR(pythonic::numpy, around);
}
PYTHONIC_NS_END

#endif

Zerion Mini Shell 1.0