blob: 054840305103bc629fcb6c0dcdd8ade8cb33b860 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#ifndef NUMPY_CORE_SRC_MULTIARRAY_NUMBER_H_
#define NUMPY_CORE_SRC_MULTIARRAY_NUMBER_H_
typedef struct {
PyObject *add;
PyObject *subtract;
PyObject *multiply;
PyObject *divide;
PyObject *remainder;
PyObject *divmod;
PyObject *power;
PyObject *square;
PyObject *reciprocal;
PyObject *_ones_like;
PyObject *sqrt;
PyObject *cbrt;
PyObject *negative;
PyObject *positive;
PyObject *absolute;
PyObject *invert;
PyObject *left_shift;
PyObject *right_shift;
PyObject *bitwise_and;
PyObject *bitwise_xor;
PyObject *bitwise_or;
PyObject *less;
PyObject *less_equal;
PyObject *equal;
PyObject *not_equal;
PyObject *greater;
PyObject *greater_equal;
PyObject *floor_divide;
PyObject *true_divide;
PyObject *logical_or;
PyObject *logical_and;
PyObject *floor;
PyObject *ceil;
PyObject *maximum;
PyObject *minimum;
PyObject *rint;
PyObject *conjugate;
PyObject *matmul;
PyObject *clip;
} NumericOps;
extern NPY_NO_EXPORT NumericOps n_ops;
extern NPY_NO_EXPORT PyNumberMethods array_as_number;
NPY_NO_EXPORT PyObject *
array_int(PyArrayObject *v);
NPY_NO_EXPORT int
_PyArray_SetNumericOps(PyObject *dict);
NPY_NO_EXPORT PyObject *
_PyArray_GetNumericOps(void);
NPY_NO_EXPORT PyObject *
PyArray_GenericBinaryFunction(PyObject *m1, PyObject *m2, PyObject *op);
NPY_NO_EXPORT PyObject *
PyArray_GenericUnaryFunction(PyArrayObject *m1, PyObject *op);
NPY_NO_EXPORT PyObject *
PyArray_GenericReduceFunction(PyArrayObject *m1, PyObject *op, int axis,
int rtype, PyArrayObject *out);
NPY_NO_EXPORT PyObject *
PyArray_GenericAccumulateFunction(PyArrayObject *m1, PyObject *op, int axis,
int rtype, PyArrayObject *out);
#endif /* NUMPY_CORE_SRC_MULTIARRAY_NUMBER_H_ */
|