%PDF- %PDF-
| Direktori : /proc/thread-self/root/lib/python3/dist-packages/pythran/pythonic/numpy/ |
| Current File : //proc/thread-self/root/lib/python3/dist-packages/pythran/pythonic/numpy/complex64.hpp |
#ifndef PYTHONIC_NUMPY_COMPLEX64_HPP
#define PYTHONIC_NUMPY_COMPLEX64_HPP
#include "pythonic/include/numpy/complex64.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/utils/meta.hpp"
#include "pythonic/utils/numpy_traits.hpp"
#include "pythonic/types/complex.hpp"
#include "pythonic/types/numpy_op_helper.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
namespace details
{
std::complex<float> complex64()
{
return {};
}
template <class V>
std::complex<float> complex64(V v)
{
return v;
}
template <class T>
std::complex<float> complex64(std::complex<T> v)
{
return {(float)v.real(), (float)v.imag()};
}
}
#define NUMPY_NARY_FUNC_NAME complex64
#define NUMPY_NARY_FUNC_SYM details::complex64
#include "pythonic/types/numpy_nary_expr.hpp"
}
PYTHONIC_NS_END
#endif