blob: e0c3d4ca41116c2ea212c2390aecda8337d4829e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef PYTHONIC_INCLUDE_SCIPY_SPECIAL_NDTR_HPP
#define PYTHONIC_INCLUDE_SCIPY_SPECIAL_NDTR_HPP
#include "pythonic/include/types/ndarray.hpp"
#include "pythonic/include/utils/functor.hpp"
#include "pythonic/include/utils/numpy_traits.hpp"
#include <xsimd/xsimd.hpp>
PYTHONIC_NS_BEGIN
namespace scipy
{
namespace special
{
namespace details
{
template <class T>
double ndtr(T x);
}
#define NUMPY_NARY_FUNC_NAME ndtr
#define NUMPY_NARY_FUNC_SYM details::ndtr
#include "pythonic/include/types/numpy_nary_expr.hpp"
}
}
PYTHONIC_NS_END
#endif
|