| 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_ARANGE_HPP
#define PYTHONIC_NUMPY_ARANGE_HPP
#include "pythonic/include/numpy/arange.hpp"
#include "pythonic/operator_/pos.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/ndarray.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
template <class T, class U, class S, class dtype>
types::numpy_expr<pythonic::operator_::functor::pos,
details::arange_index<typename dtype::type>>
arange(T begin, U end, S step, dtype d)
{
using R = typename dtype::type;
long size;
if (std::is_integral<R>::value)
size = std::max(R(0), R((end - begin + step - 1) / step));
else
size = std::max(R(0), R(std::ceil((end - begin) / step)));
return {details::arange_index<R>{(R)begin, (R)step, size}};
}
template <class T>
types::numpy_expr<pythonic::operator_::functor::pos,
details::arange_index<typename types::dtype_t<T>::type>>
arange(T end)
{
return arange<T, T, T, types::dtype_t<T>>(T(0), end);
}
}
PYTHONIC_NS_END
#endif