obliquetree 1.0.3__cp311-cp311-macosx_11_0_arm64.whl → 1.0.4__cp311-cp311-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of obliquetree might be problematic. Click here for more details.
- obliquetree/__init__.py +1 -1
- obliquetree/src/base.cpp +371 -331
- obliquetree/src/base.cpython-311-darwin.so +0 -0
- obliquetree/src/ccp.cpp +109 -74
- obliquetree/src/ccp.cpython-311-darwin.so +0 -0
- obliquetree/src/metric.cpp +263 -219
- obliquetree/src/metric.cpython-311-darwin.so +0 -0
- obliquetree/src/oblique.cpp +377 -342
- obliquetree/src/oblique.cpython-311-darwin.so +0 -0
- obliquetree/src/tree.cpp +609 -565
- obliquetree/src/tree.cpython-311-darwin.so +0 -0
- obliquetree/src/utils.cpp +160 -120
- obliquetree/src/utils.cpython-311-darwin.so +0 -0
- {obliquetree-1.0.3.dist-info → obliquetree-1.0.4.dist-info}/METADATA +1 -1
- obliquetree-1.0.4.dist-info/RECORD +21 -0
- obliquetree-1.0.3.dist-info/RECORD +0 -21
- {obliquetree-1.0.3.dist-info → obliquetree-1.0.4.dist-info}/WHEEL +0 -0
- {obliquetree-1.0.3.dist-info → obliquetree-1.0.4.dist-info}/licenses/LICENSE +0 -0
- {obliquetree-1.0.3.dist-info → obliquetree-1.0.4.dist-info}/top_level.txt +0 -0
obliquetree/src/base.cpp
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.1.
|
|
1
|
+
/* Generated by Cython 3.1.6 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
]
|
|
11
11
|
],
|
|
12
12
|
"depends": [
|
|
13
|
-
"/private/var/folders/
|
|
14
|
-
"/private/var/folders/
|
|
15
|
-
"/private/var/folders/
|
|
16
|
-
"/private/var/folders/
|
|
17
|
-
"/private/var/folders/
|
|
13
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/_core/include/numpy/arrayobject.h",
|
|
14
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/_core/include/numpy/arrayscalars.h",
|
|
15
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/_core/include/numpy/ndarrayobject.h",
|
|
16
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/_core/include/numpy/ndarraytypes.h",
|
|
17
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/_core/include/numpy/ufuncobject.h"
|
|
18
18
|
],
|
|
19
19
|
"extra_compile_args": [
|
|
20
20
|
"-O3",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"-std=c++17"
|
|
26
26
|
],
|
|
27
27
|
"include_dirs": [
|
|
28
|
-
"/private/var/folders/
|
|
28
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/_core/include"
|
|
29
29
|
],
|
|
30
30
|
"language": "c++",
|
|
31
31
|
"name": "obliquetree.src.base",
|
|
@@ -41,8 +41,16 @@ END: Cython Metadata */
|
|
|
41
41
|
#define PY_SSIZE_T_CLEAN
|
|
42
42
|
#endif /* PY_SSIZE_T_CLEAN */
|
|
43
43
|
/* InitLimitedAPI */
|
|
44
|
-
#if defined(Py_LIMITED_API)
|
|
44
|
+
#if defined(Py_LIMITED_API)
|
|
45
|
+
#if !defined(CYTHON_LIMITED_API)
|
|
45
46
|
#define CYTHON_LIMITED_API 1
|
|
47
|
+
#endif
|
|
48
|
+
#elif defined(CYTHON_LIMITED_API)
|
|
49
|
+
#ifdef _MSC_VER
|
|
50
|
+
#pragma message ("Limited API usage is enabled with 'CYTHON_LIMITED_API' but 'Py_LIMITED_API' does not define a Python target version. Consider setting 'Py_LIMITED_API' instead.")
|
|
51
|
+
#else
|
|
52
|
+
#warning Limited API usage is enabled with 'CYTHON_LIMITED_API' but 'Py_LIMITED_API' does not define a Python target version. Consider setting 'Py_LIMITED_API' instead.
|
|
53
|
+
#endif
|
|
46
54
|
#endif
|
|
47
55
|
|
|
48
56
|
#include "Python.h"
|
|
@@ -51,8 +59,8 @@ END: Cython Metadata */
|
|
|
51
59
|
#elif PY_VERSION_HEX < 0x03080000
|
|
52
60
|
#error Cython requires Python 3.8+.
|
|
53
61
|
#else
|
|
54
|
-
#define __PYX_ABI_VERSION "
|
|
55
|
-
#define CYTHON_HEX_VERSION
|
|
62
|
+
#define __PYX_ABI_VERSION "3_1_6"
|
|
63
|
+
#define CYTHON_HEX_VERSION 0x030106F0
|
|
56
64
|
#define CYTHON_FUTURE_DIVISION 1
|
|
57
65
|
/* CModulePreamble */
|
|
58
66
|
#include <stddef.h>
|
|
@@ -415,6 +423,9 @@ END: Cython Metadata */
|
|
|
415
423
|
enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
|
|
416
424
|
#endif
|
|
417
425
|
#endif
|
|
426
|
+
#ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
|
|
427
|
+
#define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
|
|
428
|
+
#endif
|
|
418
429
|
#ifndef __has_attribute
|
|
419
430
|
#define __has_attribute(x) 0
|
|
420
431
|
#endif
|
|
@@ -1331,6 +1342,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
|
|
|
1331
1342
|
typedef sdigit __Pyx_compact_pylong;
|
|
1332
1343
|
typedef digit __Pyx_compact_upylong;
|
|
1333
1344
|
#endif
|
|
1345
|
+
static CYTHON_INLINE int __Pyx_PyLong_CompactAsLong(PyObject *x, long *return_value);
|
|
1334
1346
|
#if PY_VERSION_HEX >= 0x030C00A5
|
|
1335
1347
|
#define __Pyx_PyLong_Digits(x) (((PyLongObject*)x)->long_value.ob_digit)
|
|
1336
1348
|
#else
|
|
@@ -1407,7 +1419,7 @@ static const char *__pyx_filename;
|
|
|
1407
1419
|
static const char* const __pyx_f[] = {
|
|
1408
1420
|
"obliquetree/src/base.pyx",
|
|
1409
1421
|
"<stringsource>",
|
|
1410
|
-
"../../../../../private/var/folders/
|
|
1422
|
+
"../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd",
|
|
1411
1423
|
"obliquetree/src/base.pxd",
|
|
1412
1424
|
"cpython/type.pxd",
|
|
1413
1425
|
};
|
|
@@ -1712,7 +1724,7 @@ typedef int __pyx_t_11obliquetree_3src_5utils_int32_t;
|
|
|
1712
1724
|
*/
|
|
1713
1725
|
typedef PY_LONG_LONG __pyx_t_11obliquetree_3src_5utils_int64_t;
|
|
1714
1726
|
|
|
1715
|
-
/* "../../../../../private/var/folders/
|
|
1727
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":743
|
|
1716
1728
|
* # in Cython to enable them only on the right systems.
|
|
1717
1729
|
*
|
|
1718
1730
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1721,7 +1733,7 @@ typedef PY_LONG_LONG __pyx_t_11obliquetree_3src_5utils_int64_t;
|
|
|
1721
1733
|
*/
|
|
1722
1734
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1723
1735
|
|
|
1724
|
-
/* "../../../../../private/var/folders/
|
|
1736
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":744
|
|
1725
1737
|
*
|
|
1726
1738
|
* ctypedef npy_int8 int8_t
|
|
1727
1739
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1730,7 +1742,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1730
1742
|
*/
|
|
1731
1743
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1732
1744
|
|
|
1733
|
-
/* "../../../../../private/var/folders/
|
|
1745
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
|
|
1734
1746
|
* ctypedef npy_int8 int8_t
|
|
1735
1747
|
* ctypedef npy_int16 int16_t
|
|
1736
1748
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1739,7 +1751,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1739
1751
|
*/
|
|
1740
1752
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1741
1753
|
|
|
1742
|
-
/* "../../../../../private/var/folders/
|
|
1754
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
|
|
1743
1755
|
* ctypedef npy_int16 int16_t
|
|
1744
1756
|
* ctypedef npy_int32 int32_t
|
|
1745
1757
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1748,7 +1760,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1748
1760
|
*/
|
|
1749
1761
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1750
1762
|
|
|
1751
|
-
/* "../../../../../private/var/folders/
|
|
1763
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":748
|
|
1752
1764
|
* ctypedef npy_int64 int64_t
|
|
1753
1765
|
*
|
|
1754
1766
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1757,7 +1769,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1757
1769
|
*/
|
|
1758
1770
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1759
1771
|
|
|
1760
|
-
/* "../../../../../private/var/folders/
|
|
1772
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":749
|
|
1761
1773
|
*
|
|
1762
1774
|
* ctypedef npy_uint8 uint8_t
|
|
1763
1775
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1766,7 +1778,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1766
1778
|
*/
|
|
1767
1779
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1768
1780
|
|
|
1769
|
-
/* "../../../../../private/var/folders/
|
|
1781
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":750
|
|
1770
1782
|
* ctypedef npy_uint8 uint8_t
|
|
1771
1783
|
* ctypedef npy_uint16 uint16_t
|
|
1772
1784
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1775,7 +1787,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1775
1787
|
*/
|
|
1776
1788
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1777
1789
|
|
|
1778
|
-
/* "../../../../../private/var/folders/
|
|
1790
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":751
|
|
1779
1791
|
* ctypedef npy_uint16 uint16_t
|
|
1780
1792
|
* ctypedef npy_uint32 uint32_t
|
|
1781
1793
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1784,7 +1796,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1784
1796
|
*/
|
|
1785
1797
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1786
1798
|
|
|
1787
|
-
/* "../../../../../private/var/folders/
|
|
1799
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":753
|
|
1788
1800
|
* ctypedef npy_uint64 uint64_t
|
|
1789
1801
|
*
|
|
1790
1802
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1793,7 +1805,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1793
1805
|
*/
|
|
1794
1806
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1795
1807
|
|
|
1796
|
-
/* "../../../../../private/var/folders/
|
|
1808
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":754
|
|
1797
1809
|
*
|
|
1798
1810
|
* ctypedef npy_float32 float32_t
|
|
1799
1811
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1802,7 +1814,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1802
1814
|
*/
|
|
1803
1815
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1804
1816
|
|
|
1805
|
-
/* "../../../../../private/var/folders/
|
|
1817
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1806
1818
|
* ctypedef double complex complex128_t
|
|
1807
1819
|
*
|
|
1808
1820
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1811,7 +1823,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1811
1823
|
*/
|
|
1812
1824
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1813
1825
|
|
|
1814
|
-
/* "../../../../../private/var/folders/
|
|
1826
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":762
|
|
1815
1827
|
*
|
|
1816
1828
|
* ctypedef npy_longlong longlong_t
|
|
1817
1829
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1820,7 +1832,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1820
1832
|
*/
|
|
1821
1833
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1822
1834
|
|
|
1823
|
-
/* "../../../../../private/var/folders/
|
|
1835
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1824
1836
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1825
1837
|
*
|
|
1826
1838
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1829,7 +1841,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1829
1841
|
*/
|
|
1830
1842
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1831
1843
|
|
|
1832
|
-
/* "../../../../../private/var/folders/
|
|
1844
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1833
1845
|
*
|
|
1834
1846
|
* ctypedef npy_intp intp_t
|
|
1835
1847
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1838,7 +1850,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1838
1850
|
*/
|
|
1839
1851
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1840
1852
|
|
|
1841
|
-
/* "../../../../../private/var/folders/
|
|
1853
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1842
1854
|
* ctypedef npy_uintp uintp_t
|
|
1843
1855
|
*
|
|
1844
1856
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1847,7 +1859,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1847
1859
|
*/
|
|
1848
1860
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1849
1861
|
|
|
1850
|
-
/* "../../../../../private/var/folders/
|
|
1862
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1851
1863
|
*
|
|
1852
1864
|
* ctypedef npy_double float_t
|
|
1853
1865
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1856,7 +1868,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1856
1868
|
*/
|
|
1857
1869
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1858
1870
|
|
|
1859
|
-
/* "../../../../../private/var/folders/
|
|
1871
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1860
1872
|
* ctypedef npy_double float_t
|
|
1861
1873
|
* ctypedef npy_double double_t
|
|
1862
1874
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -2916,22 +2928,22 @@ static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k);
|
|
|
2916
2928
|
static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
2917
2929
|
|
|
2918
2930
|
/* TypeImport.proto */
|
|
2919
|
-
#ifndef
|
|
2920
|
-
#define
|
|
2931
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_6
|
|
2932
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_6
|
|
2921
2933
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2922
2934
|
#include <stdalign.h>
|
|
2923
2935
|
#endif
|
|
2924
2936
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2925
|
-
#define
|
|
2937
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_6(s) alignof(s)
|
|
2926
2938
|
#else
|
|
2927
|
-
#define
|
|
2939
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_6(s) sizeof(void*)
|
|
2928
2940
|
#endif
|
|
2929
|
-
enum
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2941
|
+
enum __Pyx_ImportType_CheckSize_3_1_6 {
|
|
2942
|
+
__Pyx_ImportType_CheckSize_Error_3_1_6 = 0,
|
|
2943
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6 = 1,
|
|
2944
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6 = 2
|
|
2933
2945
|
};
|
|
2934
|
-
static PyTypeObject *
|
|
2946
|
+
static PyTypeObject *__Pyx_ImportType_3_1_6(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_6 check_size);
|
|
2935
2947
|
#endif
|
|
2936
2948
|
|
|
2937
2949
|
/* FetchSharedCythonModule.proto */
|
|
@@ -3347,7 +3359,7 @@ static unsigned long __Pyx_get_runtime_version(void);
|
|
|
3347
3359
|
static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer);
|
|
3348
3360
|
|
|
3349
3361
|
/* FunctionImport.proto */
|
|
3350
|
-
static int
|
|
3362
|
+
static int __Pyx_ImportFunction_3_1_6(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
|
|
3351
3363
|
|
|
3352
3364
|
/* MultiPhaseInitModuleState.proto */
|
|
3353
3365
|
#if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE
|
|
@@ -4270,7 +4282,7 @@ static int __pyx_array___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, P
|
|
|
4270
4282
|
default: goto __pyx_L5_argtuple_error;
|
|
4271
4283
|
}
|
|
4272
4284
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
4273
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__cinit__", 0) < 0) __PYX_ERR(1, 129, __pyx_L3_error)
|
|
4285
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__cinit__", 0) < (0)) __PYX_ERR(1, 129, __pyx_L3_error)
|
|
4274
4286
|
if (!values[3]) values[3] = __Pyx_NewRef(((PyObject *)__pyx_mstate_global->__pyx_n_u_c));
|
|
4275
4287
|
for (Py_ssize_t i = __pyx_nargs; i < 3; i++) {
|
|
4276
4288
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 3, 5, i); __PYX_ERR(1, 129, __pyx_L3_error) }
|
|
@@ -5884,7 +5896,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
5884
5896
|
default: goto __pyx_L5_argtuple_error;
|
|
5885
5897
|
}
|
|
5886
5898
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
5887
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < 0) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
5899
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
5888
5900
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
5889
5901
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 3, __pyx_L3_error) }
|
|
5890
5902
|
}
|
|
@@ -6229,7 +6241,7 @@ static struct __pyx_array_obj *__pyx_array_new(PyObject *__pyx_v_shape, Py_ssize
|
|
|
6229
6241
|
__pyx_t_4 = 0;
|
|
6230
6242
|
__pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 273, __pyx_L1_error)
|
|
6231
6243
|
__Pyx_GOTREF(__pyx_t_4);
|
|
6232
|
-
if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_allocate_buffer, Py_False) < 0) __PYX_ERR(1, 273, __pyx_L1_error)
|
|
6244
|
+
if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_allocate_buffer, Py_False) < (0)) __PYX_ERR(1, 273, __pyx_L1_error)
|
|
6233
6245
|
__pyx_t_3 = ((PyObject *)__pyx_tp_new_array(((PyTypeObject *)__pyx_mstate_global->__pyx_array_type), __pyx_t_1, __pyx_t_4)); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 273, __pyx_L1_error)
|
|
6234
6246
|
__Pyx_GOTREF((PyObject *)__pyx_t_3);
|
|
6235
6247
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -6324,7 +6336,7 @@ static int __pyx_MemviewEnum___init__(PyObject *__pyx_v_self, PyObject *__pyx_ar
|
|
|
6324
6336
|
default: goto __pyx_L5_argtuple_error;
|
|
6325
6337
|
}
|
|
6326
6338
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
6327
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__init__", 0) < 0) __PYX_ERR(1, 302, __pyx_L3_error)
|
|
6339
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__init__", 0) < (0)) __PYX_ERR(1, 302, __pyx_L3_error)
|
|
6328
6340
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
6329
6341
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__init__", 1, 1, 1, i); __PYX_ERR(1, 302, __pyx_L3_error) }
|
|
6330
6342
|
}
|
|
@@ -6761,7 +6773,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
6761
6773
|
default: goto __pyx_L5_argtuple_error;
|
|
6762
6774
|
}
|
|
6763
6775
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
6764
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < 0) __PYX_ERR(1, 16, __pyx_L3_error)
|
|
6776
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 16, __pyx_L3_error)
|
|
6765
6777
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
6766
6778
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 16, __pyx_L3_error) }
|
|
6767
6779
|
}
|
|
@@ -6886,7 +6898,7 @@ static int __pyx_memoryview___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_ar
|
|
|
6886
6898
|
default: goto __pyx_L5_argtuple_error;
|
|
6887
6899
|
}
|
|
6888
6900
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
6889
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__cinit__", 0) < 0) __PYX_ERR(1, 347, __pyx_L3_error)
|
|
6901
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__cinit__", 0) < (0)) __PYX_ERR(1, 347, __pyx_L3_error)
|
|
6890
6902
|
for (Py_ssize_t i = __pyx_nargs; i < 2; i++) {
|
|
6891
6903
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 2, 3, i); __PYX_ERR(1, 347, __pyx_L3_error) }
|
|
6892
6904
|
}
|
|
@@ -11203,7 +11215,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
11203
11215
|
default: goto __pyx_L5_argtuple_error;
|
|
11204
11216
|
}
|
|
11205
11217
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
11206
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < 0) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
11218
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
11207
11219
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
11208
11220
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 3, __pyx_L3_error) }
|
|
11209
11221
|
}
|
|
@@ -14090,7 +14102,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
14090
14102
|
default: goto __pyx_L5_argtuple_error;
|
|
14091
14103
|
}
|
|
14092
14104
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
14093
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < 0) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
14105
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
14094
14106
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
14095
14107
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 3, __pyx_L3_error) }
|
|
14096
14108
|
}
|
|
@@ -17249,7 +17261,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
17249
17261
|
default: goto __pyx_L5_argtuple_error;
|
|
17250
17262
|
}
|
|
17251
17263
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
17252
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__pyx_unpickle_Enum", 0) < 0) __PYX_ERR(1, 1, __pyx_L3_error)
|
|
17264
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__pyx_unpickle_Enum", 0) < (0)) __PYX_ERR(1, 1, __pyx_L3_error)
|
|
17253
17265
|
for (Py_ssize_t i = __pyx_nargs; i < 3; i++) {
|
|
17254
17266
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_Enum", 1, 3, 3, i); __PYX_ERR(1, 1, __pyx_L3_error) }
|
|
17255
17267
|
}
|
|
@@ -17571,7 +17583,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
17571
17583
|
return __pyx_r;
|
|
17572
17584
|
}
|
|
17573
17585
|
|
|
17574
|
-
/* "../../../../../private/var/folders/
|
|
17586
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":242
|
|
17575
17587
|
* cdef int type_num
|
|
17576
17588
|
*
|
|
17577
17589
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17582,7 +17594,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
17582
17594
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
|
17583
17595
|
npy_intp __pyx_r;
|
|
17584
17596
|
|
|
17585
|
-
/* "../../../../../private/var/folders/
|
|
17597
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":244
|
|
17586
17598
|
* @property
|
|
17587
17599
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
|
17588
17600
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -17592,7 +17604,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
17592
17604
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
|
17593
17605
|
goto __pyx_L0;
|
|
17594
17606
|
|
|
17595
|
-
/* "../../../../../private/var/folders/
|
|
17607
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":242
|
|
17596
17608
|
* cdef int type_num
|
|
17597
17609
|
*
|
|
17598
17610
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17605,7 +17617,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
17605
17617
|
return __pyx_r;
|
|
17606
17618
|
}
|
|
17607
17619
|
|
|
17608
|
-
/* "../../../../../private/var/folders/
|
|
17620
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":246
|
|
17609
17621
|
* return PyDataType_ELSIZE(self)
|
|
17610
17622
|
*
|
|
17611
17623
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17616,7 +17628,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
17616
17628
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
|
17617
17629
|
npy_intp __pyx_r;
|
|
17618
17630
|
|
|
17619
|
-
/* "../../../../../private/var/folders/
|
|
17631
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
|
|
17620
17632
|
* @property
|
|
17621
17633
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
|
17622
17634
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
|
@@ -17626,7 +17638,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
17626
17638
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
|
17627
17639
|
goto __pyx_L0;
|
|
17628
17640
|
|
|
17629
|
-
/* "../../../../../private/var/folders/
|
|
17641
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":246
|
|
17630
17642
|
* return PyDataType_ELSIZE(self)
|
|
17631
17643
|
*
|
|
17632
17644
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17639,7 +17651,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
17639
17651
|
return __pyx_r;
|
|
17640
17652
|
}
|
|
17641
17653
|
|
|
17642
|
-
/* "../../../../../private/var/folders/
|
|
17654
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":252
|
|
17643
17655
|
* # Use fields/names with care as they may be NULL. You must check
|
|
17644
17656
|
* # for this using PyDataType_HASFIELDS.
|
|
17645
17657
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17653,7 +17665,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
17653
17665
|
PyObject *__pyx_t_1;
|
|
17654
17666
|
__Pyx_RefNannySetupContext("fields", 0);
|
|
17655
17667
|
|
|
17656
|
-
/* "../../../../../private/var/folders/
|
|
17668
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
|
|
17657
17669
|
* @property
|
|
17658
17670
|
* cdef inline object fields(self):
|
|
17659
17671
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
|
@@ -17666,7 +17678,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
17666
17678
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
|
17667
17679
|
goto __pyx_L0;
|
|
17668
17680
|
|
|
17669
|
-
/* "../../../../../private/var/folders/
|
|
17681
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":252
|
|
17670
17682
|
* # Use fields/names with care as they may be NULL. You must check
|
|
17671
17683
|
* # for this using PyDataType_HASFIELDS.
|
|
17672
17684
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17681,7 +17693,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
17681
17693
|
return __pyx_r;
|
|
17682
17694
|
}
|
|
17683
17695
|
|
|
17684
|
-
/* "../../../../../private/var/folders/
|
|
17696
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":256
|
|
17685
17697
|
* return <object>PyDataType_FIELDS(self)
|
|
17686
17698
|
*
|
|
17687
17699
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17695,7 +17707,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
17695
17707
|
PyObject *__pyx_t_1;
|
|
17696
17708
|
__Pyx_RefNannySetupContext("names", 0);
|
|
17697
17709
|
|
|
17698
|
-
/* "../../../../../private/var/folders/
|
|
17710
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":258
|
|
17699
17711
|
* @property
|
|
17700
17712
|
* cdef inline tuple names(self):
|
|
17701
17713
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
|
@@ -17708,7 +17720,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
17708
17720
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
|
17709
17721
|
goto __pyx_L0;
|
|
17710
17722
|
|
|
17711
|
-
/* "../../../../../private/var/folders/
|
|
17723
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":256
|
|
17712
17724
|
* return <object>PyDataType_FIELDS(self)
|
|
17713
17725
|
*
|
|
17714
17726
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17723,7 +17735,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
17723
17735
|
return __pyx_r;
|
|
17724
17736
|
}
|
|
17725
17737
|
|
|
17726
|
-
/* "../../../../../private/var/folders/
|
|
17738
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
|
17727
17739
|
* # valid (the pointer can be NULL). Most users should access
|
|
17728
17740
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
17729
17741
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17734,7 +17746,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
17734
17746
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
|
17735
17747
|
PyArray_ArrayDescr *__pyx_r;
|
|
17736
17748
|
|
|
17737
|
-
/* "../../../../../private/var/folders/
|
|
17749
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":265
|
|
17738
17750
|
* @property
|
|
17739
17751
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
|
17740
17752
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
|
@@ -17744,7 +17756,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
17744
17756
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
|
17745
17757
|
goto __pyx_L0;
|
|
17746
17758
|
|
|
17747
|
-
/* "../../../../../private/var/folders/
|
|
17759
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
|
17748
17760
|
* # valid (the pointer can be NULL). Most users should access
|
|
17749
17761
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
17750
17762
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17757,7 +17769,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
17757
17769
|
return __pyx_r;
|
|
17758
17770
|
}
|
|
17759
17771
|
|
|
17760
|
-
/* "../../../../../private/var/folders/
|
|
17772
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":267
|
|
17761
17773
|
* return PyDataType_SUBARRAY(self)
|
|
17762
17774
|
*
|
|
17763
17775
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17768,7 +17780,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
17768
17780
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
|
17769
17781
|
npy_uint64 __pyx_r;
|
|
17770
17782
|
|
|
17771
|
-
/* "../../../../../private/var/folders/
|
|
17783
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":270
|
|
17772
17784
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
|
17773
17785
|
* """The data types flags."""
|
|
17774
17786
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
|
@@ -17778,7 +17790,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
17778
17790
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
|
17779
17791
|
goto __pyx_L0;
|
|
17780
17792
|
|
|
17781
|
-
/* "../../../../../private/var/folders/
|
|
17793
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":267
|
|
17782
17794
|
* return PyDataType_SUBARRAY(self)
|
|
17783
17795
|
*
|
|
17784
17796
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17791,7 +17803,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
17791
17803
|
return __pyx_r;
|
|
17792
17804
|
}
|
|
17793
17805
|
|
|
17794
|
-
/* "../../../../../private/var/folders/
|
|
17806
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":279
|
|
17795
17807
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
17796
17808
|
*
|
|
17797
17809
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17802,7 +17814,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
17802
17814
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17803
17815
|
int __pyx_r;
|
|
17804
17816
|
|
|
17805
|
-
/* "../../../../../private/var/folders/
|
|
17817
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":282
|
|
17806
17818
|
* cdef inline int numiter(self) noexcept nogil:
|
|
17807
17819
|
* """The number of arrays that need to be broadcast to the same shape."""
|
|
17808
17820
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
|
@@ -17812,7 +17824,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
17812
17824
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
|
17813
17825
|
goto __pyx_L0;
|
|
17814
17826
|
|
|
17815
|
-
/* "../../../../../private/var/folders/
|
|
17827
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":279
|
|
17816
17828
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
17817
17829
|
*
|
|
17818
17830
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17825,7 +17837,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
17825
17837
|
return __pyx_r;
|
|
17826
17838
|
}
|
|
17827
17839
|
|
|
17828
|
-
/* "../../../../../private/var/folders/
|
|
17840
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
|
17829
17841
|
* return PyArray_MultiIter_NUMITER(self)
|
|
17830
17842
|
*
|
|
17831
17843
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17836,7 +17848,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
17836
17848
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17837
17849
|
npy_intp __pyx_r;
|
|
17838
17850
|
|
|
17839
|
-
/* "../../../../../private/var/folders/
|
|
17851
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":287
|
|
17840
17852
|
* cdef inline npy_intp size(self) noexcept nogil:
|
|
17841
17853
|
* """The total broadcasted size."""
|
|
17842
17854
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -17846,7 +17858,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
17846
17858
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
|
17847
17859
|
goto __pyx_L0;
|
|
17848
17860
|
|
|
17849
|
-
/* "../../../../../private/var/folders/
|
|
17861
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
|
17850
17862
|
* return PyArray_MultiIter_NUMITER(self)
|
|
17851
17863
|
*
|
|
17852
17864
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17859,7 +17871,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
17859
17871
|
return __pyx_r;
|
|
17860
17872
|
}
|
|
17861
17873
|
|
|
17862
|
-
/* "../../../../../private/var/folders/
|
|
17874
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":289
|
|
17863
17875
|
* return PyArray_MultiIter_SIZE(self)
|
|
17864
17876
|
*
|
|
17865
17877
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17870,7 +17882,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
17870
17882
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17871
17883
|
npy_intp __pyx_r;
|
|
17872
17884
|
|
|
17873
|
-
/* "../../../../../private/var/folders/
|
|
17885
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":292
|
|
17874
17886
|
* cdef inline npy_intp index(self) noexcept nogil:
|
|
17875
17887
|
* """The current (1-d) index into the broadcasted result."""
|
|
17876
17888
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
|
@@ -17880,7 +17892,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
17880
17892
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
|
17881
17893
|
goto __pyx_L0;
|
|
17882
17894
|
|
|
17883
|
-
/* "../../../../../private/var/folders/
|
|
17895
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":289
|
|
17884
17896
|
* return PyArray_MultiIter_SIZE(self)
|
|
17885
17897
|
*
|
|
17886
17898
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17893,7 +17905,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
17893
17905
|
return __pyx_r;
|
|
17894
17906
|
}
|
|
17895
17907
|
|
|
17896
|
-
/* "../../../../../private/var/folders/
|
|
17908
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":294
|
|
17897
17909
|
* return PyArray_MultiIter_INDEX(self)
|
|
17898
17910
|
*
|
|
17899
17911
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17904,7 +17916,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
17904
17916
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17905
17917
|
int __pyx_r;
|
|
17906
17918
|
|
|
17907
|
-
/* "../../../../../private/var/folders/
|
|
17919
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":297
|
|
17908
17920
|
* cdef inline int nd(self) noexcept nogil:
|
|
17909
17921
|
* """The number of dimensions in the broadcasted result."""
|
|
17910
17922
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -17914,7 +17926,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
17914
17926
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
|
17915
17927
|
goto __pyx_L0;
|
|
17916
17928
|
|
|
17917
|
-
/* "../../../../../private/var/folders/
|
|
17929
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":294
|
|
17918
17930
|
* return PyArray_MultiIter_INDEX(self)
|
|
17919
17931
|
*
|
|
17920
17932
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17927,7 +17939,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
17927
17939
|
return __pyx_r;
|
|
17928
17940
|
}
|
|
17929
17941
|
|
|
17930
|
-
/* "../../../../../private/var/folders/
|
|
17942
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":299
|
|
17931
17943
|
* return PyArray_MultiIter_NDIM(self)
|
|
17932
17944
|
*
|
|
17933
17945
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17938,7 +17950,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
17938
17950
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17939
17951
|
npy_intp *__pyx_r;
|
|
17940
17952
|
|
|
17941
|
-
/* "../../../../../private/var/folders/
|
|
17953
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":302
|
|
17942
17954
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
|
17943
17955
|
* """The shape of the broadcasted result."""
|
|
17944
17956
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -17948,7 +17960,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
17948
17960
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
|
17949
17961
|
goto __pyx_L0;
|
|
17950
17962
|
|
|
17951
|
-
/* "../../../../../private/var/folders/
|
|
17963
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":299
|
|
17952
17964
|
* return PyArray_MultiIter_NDIM(self)
|
|
17953
17965
|
*
|
|
17954
17966
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17961,7 +17973,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
17961
17973
|
return __pyx_r;
|
|
17962
17974
|
}
|
|
17963
17975
|
|
|
17964
|
-
/* "../../../../../private/var/folders/
|
|
17976
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":304
|
|
17965
17977
|
* return PyArray_MultiIter_DIMS(self)
|
|
17966
17978
|
*
|
|
17967
17979
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17972,7 +17984,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
17972
17984
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17973
17985
|
void **__pyx_r;
|
|
17974
17986
|
|
|
17975
|
-
/* "../../../../../private/var/folders/
|
|
17987
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":308
|
|
17976
17988
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
|
17977
17989
|
* On return, the iterators are adjusted for broadcasting."""
|
|
17978
17990
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
|
@@ -17982,7 +17994,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
17982
17994
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
|
17983
17995
|
goto __pyx_L0;
|
|
17984
17996
|
|
|
17985
|
-
/* "../../../../../private/var/folders/
|
|
17997
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":304
|
|
17986
17998
|
* return PyArray_MultiIter_DIMS(self)
|
|
17987
17999
|
*
|
|
17988
18000
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17995,7 +18007,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
17995
18007
|
return __pyx_r;
|
|
17996
18008
|
}
|
|
17997
18009
|
|
|
17998
|
-
/* "../../../../../private/var/folders/
|
|
18010
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":322
|
|
17999
18011
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
18000
18012
|
*
|
|
18001
18013
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18006,7 +18018,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
18006
18018
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18007
18019
|
PyObject *__pyx_r;
|
|
18008
18020
|
|
|
18009
|
-
/* "../../../../../private/var/folders/
|
|
18021
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":326
|
|
18010
18022
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18011
18023
|
* """
|
|
18012
18024
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18016,7 +18028,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18016
18028
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18017
18029
|
goto __pyx_L0;
|
|
18018
18030
|
|
|
18019
|
-
/* "../../../../../private/var/folders/
|
|
18031
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":322
|
|
18020
18032
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
18021
18033
|
*
|
|
18022
18034
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18029,7 +18041,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18029
18041
|
return __pyx_r;
|
|
18030
18042
|
}
|
|
18031
18043
|
|
|
18032
|
-
/* "../../../../../private/var/folders/
|
|
18044
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":328
|
|
18033
18045
|
* return PyArray_BASE(self)
|
|
18034
18046
|
*
|
|
18035
18047
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18043,7 +18055,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18043
18055
|
PyArray_Descr *__pyx_t_1;
|
|
18044
18056
|
__Pyx_RefNannySetupContext("descr", 0);
|
|
18045
18057
|
|
|
18046
|
-
/* "../../../../../private/var/folders/
|
|
18058
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":332
|
|
18047
18059
|
* """Returns an owned reference to the dtype of the array.
|
|
18048
18060
|
* """
|
|
18049
18061
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18056,7 +18068,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18056
18068
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
18057
18069
|
goto __pyx_L0;
|
|
18058
18070
|
|
|
18059
|
-
/* "../../../../../private/var/folders/
|
|
18071
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":328
|
|
18060
18072
|
* return PyArray_BASE(self)
|
|
18061
18073
|
*
|
|
18062
18074
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18071,7 +18083,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18071
18083
|
return __pyx_r;
|
|
18072
18084
|
}
|
|
18073
18085
|
|
|
18074
|
-
/* "../../../../../private/var/folders/
|
|
18086
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":334
|
|
18075
18087
|
* return <dtype>PyArray_DESCR(self)
|
|
18076
18088
|
*
|
|
18077
18089
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18082,7 +18094,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18082
18094
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18083
18095
|
int __pyx_r;
|
|
18084
18096
|
|
|
18085
|
-
/* "../../../../../private/var/folders/
|
|
18097
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":338
|
|
18086
18098
|
* """Returns the number of dimensions in the array.
|
|
18087
18099
|
* """
|
|
18088
18100
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18092,7 +18104,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18092
18104
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18093
18105
|
goto __pyx_L0;
|
|
18094
18106
|
|
|
18095
|
-
/* "../../../../../private/var/folders/
|
|
18107
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":334
|
|
18096
18108
|
* return <dtype>PyArray_DESCR(self)
|
|
18097
18109
|
*
|
|
18098
18110
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18105,7 +18117,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18105
18117
|
return __pyx_r;
|
|
18106
18118
|
}
|
|
18107
18119
|
|
|
18108
|
-
/* "../../../../../private/var/folders/
|
|
18120
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":340
|
|
18109
18121
|
* return PyArray_NDIM(self)
|
|
18110
18122
|
*
|
|
18111
18123
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18116,7 +18128,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18116
18128
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18117
18129
|
npy_intp *__pyx_r;
|
|
18118
18130
|
|
|
18119
|
-
/* "../../../../../private/var/folders/
|
|
18131
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":346
|
|
18120
18132
|
* Can return NULL for 0-dimensional arrays.
|
|
18121
18133
|
* """
|
|
18122
18134
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18126,7 +18138,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18126
18138
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18127
18139
|
goto __pyx_L0;
|
|
18128
18140
|
|
|
18129
|
-
/* "../../../../../private/var/folders/
|
|
18141
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":340
|
|
18130
18142
|
* return PyArray_NDIM(self)
|
|
18131
18143
|
*
|
|
18132
18144
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18139,7 +18151,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18139
18151
|
return __pyx_r;
|
|
18140
18152
|
}
|
|
18141
18153
|
|
|
18142
|
-
/* "../../../../../private/var/folders/
|
|
18154
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":348
|
|
18143
18155
|
* return PyArray_DIMS(self)
|
|
18144
18156
|
*
|
|
18145
18157
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18150,7 +18162,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18150
18162
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18151
18163
|
npy_intp *__pyx_r;
|
|
18152
18164
|
|
|
18153
|
-
/* "../../../../../private/var/folders/
|
|
18165
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":353
|
|
18154
18166
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18155
18167
|
* """
|
|
18156
18168
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18160,7 +18172,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18160
18172
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18161
18173
|
goto __pyx_L0;
|
|
18162
18174
|
|
|
18163
|
-
/* "../../../../../private/var/folders/
|
|
18175
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":348
|
|
18164
18176
|
* return PyArray_DIMS(self)
|
|
18165
18177
|
*
|
|
18166
18178
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18173,7 +18185,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18173
18185
|
return __pyx_r;
|
|
18174
18186
|
}
|
|
18175
18187
|
|
|
18176
|
-
/* "../../../../../private/var/folders/
|
|
18188
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":355
|
|
18177
18189
|
* return PyArray_STRIDES(self)
|
|
18178
18190
|
*
|
|
18179
18191
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18184,7 +18196,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18184
18196
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18185
18197
|
npy_intp __pyx_r;
|
|
18186
18198
|
|
|
18187
|
-
/* "../../../../../private/var/folders/
|
|
18199
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":359
|
|
18188
18200
|
* """Returns the total size (in number of elements) of the array.
|
|
18189
18201
|
* """
|
|
18190
18202
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18194,7 +18206,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18194
18206
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18195
18207
|
goto __pyx_L0;
|
|
18196
18208
|
|
|
18197
|
-
/* "../../../../../private/var/folders/
|
|
18209
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":355
|
|
18198
18210
|
* return PyArray_STRIDES(self)
|
|
18199
18211
|
*
|
|
18200
18212
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18207,7 +18219,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18207
18219
|
return __pyx_r;
|
|
18208
18220
|
}
|
|
18209
18221
|
|
|
18210
|
-
/* "../../../../../private/var/folders/
|
|
18222
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":361
|
|
18211
18223
|
* return PyArray_SIZE(self)
|
|
18212
18224
|
*
|
|
18213
18225
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18218,7 +18230,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18218
18230
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18219
18231
|
char *__pyx_r;
|
|
18220
18232
|
|
|
18221
|
-
/* "../../../../../private/var/folders/
|
|
18233
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":368
|
|
18222
18234
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18223
18235
|
* """
|
|
18224
18236
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18228,7 +18240,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18228
18240
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18229
18241
|
goto __pyx_L0;
|
|
18230
18242
|
|
|
18231
|
-
/* "../../../../../private/var/folders/
|
|
18243
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":361
|
|
18232
18244
|
* return PyArray_SIZE(self)
|
|
18233
18245
|
*
|
|
18234
18246
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18241,7 +18253,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18241
18253
|
return __pyx_r;
|
|
18242
18254
|
}
|
|
18243
18255
|
|
|
18244
|
-
/* "../../../../../private/var/folders/
|
|
18256
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18245
18257
|
* ctypedef long double complex clongdouble_t
|
|
18246
18258
|
*
|
|
18247
18259
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18258,7 +18270,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18258
18270
|
int __pyx_clineno = 0;
|
|
18259
18271
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
|
18260
18272
|
|
|
18261
|
-
/* "../../../../../private/var/folders/
|
|
18273
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18262
18274
|
*
|
|
18263
18275
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18264
18276
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18272,7 +18284,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18272
18284
|
__pyx_t_1 = 0;
|
|
18273
18285
|
goto __pyx_L0;
|
|
18274
18286
|
|
|
18275
|
-
/* "../../../../../private/var/folders/
|
|
18287
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18276
18288
|
* ctypedef long double complex clongdouble_t
|
|
18277
18289
|
*
|
|
18278
18290
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18291,7 +18303,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18291
18303
|
return __pyx_r;
|
|
18292
18304
|
}
|
|
18293
18305
|
|
|
18294
|
-
/* "../../../../../private/var/folders/
|
|
18306
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
|
18295
18307
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18296
18308
|
*
|
|
18297
18309
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18308,7 +18320,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18308
18320
|
int __pyx_clineno = 0;
|
|
18309
18321
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
|
18310
18322
|
|
|
18311
|
-
/* "../../../../../private/var/folders/
|
|
18323
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18312
18324
|
*
|
|
18313
18325
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18314
18326
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18322,7 +18334,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18322
18334
|
__pyx_t_1 = 0;
|
|
18323
18335
|
goto __pyx_L0;
|
|
18324
18336
|
|
|
18325
|
-
/* "../../../../../private/var/folders/
|
|
18337
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
|
18326
18338
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18327
18339
|
*
|
|
18328
18340
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18341,7 +18353,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18341
18353
|
return __pyx_r;
|
|
18342
18354
|
}
|
|
18343
18355
|
|
|
18344
|
-
/* "../../../../../private/var/folders/
|
|
18356
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
|
18345
18357
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18346
18358
|
*
|
|
18347
18359
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18358,7 +18370,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18358
18370
|
int __pyx_clineno = 0;
|
|
18359
18371
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
|
18360
18372
|
|
|
18361
|
-
/* "../../../../../private/var/folders/
|
|
18373
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18362
18374
|
*
|
|
18363
18375
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
18364
18376
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -18372,7 +18384,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18372
18384
|
__pyx_t_1 = 0;
|
|
18373
18385
|
goto __pyx_L0;
|
|
18374
18386
|
|
|
18375
|
-
/* "../../../../../private/var/folders/
|
|
18387
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
|
18376
18388
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18377
18389
|
*
|
|
18378
18390
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18391,7 +18403,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18391
18403
|
return __pyx_r;
|
|
18392
18404
|
}
|
|
18393
18405
|
|
|
18394
|
-
/* "../../../../../private/var/folders/
|
|
18406
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
|
18395
18407
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18396
18408
|
*
|
|
18397
18409
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18408,7 +18420,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18408
18420
|
int __pyx_clineno = 0;
|
|
18409
18421
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
|
18410
18422
|
|
|
18411
|
-
/* "../../../../../private/var/folders/
|
|
18423
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
|
|
18412
18424
|
*
|
|
18413
18425
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
18414
18426
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -18422,7 +18434,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18422
18434
|
__pyx_t_1 = 0;
|
|
18423
18435
|
goto __pyx_L0;
|
|
18424
18436
|
|
|
18425
|
-
/* "../../../../../private/var/folders/
|
|
18437
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
|
18426
18438
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18427
18439
|
*
|
|
18428
18440
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18441,7 +18453,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18441
18453
|
return __pyx_r;
|
|
18442
18454
|
}
|
|
18443
18455
|
|
|
18444
|
-
/* "../../../../../private/var/folders/
|
|
18456
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
|
18445
18457
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18446
18458
|
*
|
|
18447
18459
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18458,7 +18470,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18458
18470
|
int __pyx_clineno = 0;
|
|
18459
18471
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
|
18460
18472
|
|
|
18461
|
-
/* "../../../../../private/var/folders/
|
|
18473
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
|
|
18462
18474
|
*
|
|
18463
18475
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
18464
18476
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -18472,7 +18484,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18472
18484
|
__pyx_t_1 = 0;
|
|
18473
18485
|
goto __pyx_L0;
|
|
18474
18486
|
|
|
18475
|
-
/* "../../../../../private/var/folders/
|
|
18487
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
|
18476
18488
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18477
18489
|
*
|
|
18478
18490
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18491,7 +18503,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18491
18503
|
return __pyx_r;
|
|
18492
18504
|
}
|
|
18493
18505
|
|
|
18494
|
-
/* "../../../../../private/var/folders/
|
|
18506
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
|
18495
18507
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18496
18508
|
*
|
|
18497
18509
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18506,7 +18518,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18506
18518
|
PyObject *__pyx_t_2;
|
|
18507
18519
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
|
18508
18520
|
|
|
18509
|
-
/* "../../../../../private/var/folders/
|
|
18521
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18510
18522
|
*
|
|
18511
18523
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18512
18524
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18516,7 +18528,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18516
18528
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
18517
18529
|
if (__pyx_t_1) {
|
|
18518
18530
|
|
|
18519
|
-
/* "../../../../../private/var/folders/
|
|
18531
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
|
|
18520
18532
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18521
18533
|
* if PyDataType_HASSUBARRAY(d):
|
|
18522
18534
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -18529,7 +18541,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18529
18541
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
|
18530
18542
|
goto __pyx_L0;
|
|
18531
18543
|
|
|
18532
|
-
/* "../../../../../private/var/folders/
|
|
18544
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18533
18545
|
*
|
|
18534
18546
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18535
18547
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18538,7 +18550,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18538
18550
|
*/
|
|
18539
18551
|
}
|
|
18540
18552
|
|
|
18541
|
-
/* "../../../../../private/var/folders/
|
|
18553
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
|
|
18542
18554
|
* return <tuple>d.subarray.shape
|
|
18543
18555
|
* else:
|
|
18544
18556
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -18552,7 +18564,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18552
18564
|
goto __pyx_L0;
|
|
18553
18565
|
}
|
|
18554
18566
|
|
|
18555
|
-
/* "../../../../../private/var/folders/
|
|
18567
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
|
18556
18568
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18557
18569
|
*
|
|
18558
18570
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18567,7 +18579,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18567
18579
|
return __pyx_r;
|
|
18568
18580
|
}
|
|
18569
18581
|
|
|
18570
|
-
/* "../../../../../private/var/folders/
|
|
18582
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
|
18571
18583
|
* int _import_umath() except -1
|
|
18572
18584
|
*
|
|
18573
18585
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -18581,7 +18593,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18581
18593
|
const char *__pyx_filename = NULL;
|
|
18582
18594
|
int __pyx_clineno = 0;
|
|
18583
18595
|
|
|
18584
|
-
/* "../../../../../private/var/folders/
|
|
18596
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
|
18585
18597
|
*
|
|
18586
18598
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
18587
18599
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -18590,7 +18602,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18590
18602
|
*/
|
|
18591
18603
|
Py_INCREF(__pyx_v_base);
|
|
18592
18604
|
|
|
18593
|
-
/* "../../../../../private/var/folders/
|
|
18605
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
|
|
18594
18606
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
18595
18607
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
18596
18608
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -18599,7 +18611,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18599
18611
|
*/
|
|
18600
18612
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L1_error)
|
|
18601
18613
|
|
|
18602
|
-
/* "../../../../../private/var/folders/
|
|
18614
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
|
18603
18615
|
* int _import_umath() except -1
|
|
18604
18616
|
*
|
|
18605
18617
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -18614,7 +18626,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18614
18626
|
__pyx_L0:;
|
|
18615
18627
|
}
|
|
18616
18628
|
|
|
18617
|
-
/* "../../../../../private/var/folders/
|
|
18629
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
|
18618
18630
|
* PyArray_SetBaseObject(arr, base)
|
|
18619
18631
|
*
|
|
18620
18632
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18629,7 +18641,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18629
18641
|
int __pyx_t_1;
|
|
18630
18642
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
|
18631
18643
|
|
|
18632
|
-
/* "../../../../../private/var/folders/
|
|
18644
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":999
|
|
18633
18645
|
*
|
|
18634
18646
|
* cdef inline object get_array_base(ndarray arr):
|
|
18635
18647
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -18638,7 +18650,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18638
18650
|
*/
|
|
18639
18651
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
18640
18652
|
|
|
18641
|
-
/* "../../../../../private/var/folders/
|
|
18653
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1000
|
|
18642
18654
|
* cdef inline object get_array_base(ndarray arr):
|
|
18643
18655
|
* base = PyArray_BASE(arr)
|
|
18644
18656
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18648,7 +18660,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18648
18660
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
18649
18661
|
if (__pyx_t_1) {
|
|
18650
18662
|
|
|
18651
|
-
/* "../../../../../private/var/folders/
|
|
18663
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
18652
18664
|
* base = PyArray_BASE(arr)
|
|
18653
18665
|
* if base is NULL:
|
|
18654
18666
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -18659,7 +18671,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18659
18671
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
18660
18672
|
goto __pyx_L0;
|
|
18661
18673
|
|
|
18662
|
-
/* "../../../../../private/var/folders/
|
|
18674
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1000
|
|
18663
18675
|
* cdef inline object get_array_base(ndarray arr):
|
|
18664
18676
|
* base = PyArray_BASE(arr)
|
|
18665
18677
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18668,7 +18680,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18668
18680
|
*/
|
|
18669
18681
|
}
|
|
18670
18682
|
|
|
18671
|
-
/* "../../../../../private/var/folders/
|
|
18683
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
18672
18684
|
* if base is NULL:
|
|
18673
18685
|
* return None
|
|
18674
18686
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -18680,7 +18692,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18680
18692
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
18681
18693
|
goto __pyx_L0;
|
|
18682
18694
|
|
|
18683
|
-
/* "../../../../../private/var/folders/
|
|
18695
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
|
18684
18696
|
* PyArray_SetBaseObject(arr, base)
|
|
18685
18697
|
*
|
|
18686
18698
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18695,7 +18707,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18695
18707
|
return __pyx_r;
|
|
18696
18708
|
}
|
|
18697
18709
|
|
|
18698
|
-
/* "../../../../../private/var/folders/
|
|
18710
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1006
|
|
18699
18711
|
* # Versions of the import_* functions which are more suitable for
|
|
18700
18712
|
* # Cython code.
|
|
18701
18713
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18722,7 +18734,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18722
18734
|
int __pyx_clineno = 0;
|
|
18723
18735
|
__Pyx_RefNannySetupContext("import_array", 0);
|
|
18724
18736
|
|
|
18725
|
-
/* "../../../../../private/var/folders/
|
|
18737
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
|
18726
18738
|
* # Cython code.
|
|
18727
18739
|
* cdef inline int import_array() except -1:
|
|
18728
18740
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18738,7 +18750,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18738
18750
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18739
18751
|
/*try:*/ {
|
|
18740
18752
|
|
|
18741
|
-
/* "../../../../../private/var/folders/
|
|
18753
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1008
|
|
18742
18754
|
* cdef inline int import_array() except -1:
|
|
18743
18755
|
* try:
|
|
18744
18756
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -18747,7 +18759,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18747
18759
|
*/
|
|
18748
18760
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1008, __pyx_L3_error)
|
|
18749
18761
|
|
|
18750
|
-
/* "../../../../../private/var/folders/
|
|
18762
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
|
18751
18763
|
* # Cython code.
|
|
18752
18764
|
* cdef inline int import_array() except -1:
|
|
18753
18765
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18761,7 +18773,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18761
18773
|
goto __pyx_L8_try_end;
|
|
18762
18774
|
__pyx_L3_error:;
|
|
18763
18775
|
|
|
18764
|
-
/* "../../../../../private/var/folders/
|
|
18776
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1009
|
|
18765
18777
|
* try:
|
|
18766
18778
|
* __pyx_import_array()
|
|
18767
18779
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -18776,7 +18788,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18776
18788
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
18777
18789
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
18778
18790
|
|
|
18779
|
-
/* "../../../../../private/var/folders/
|
|
18791
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
18780
18792
|
* __pyx_import_array()
|
|
18781
18793
|
* except Exception:
|
|
18782
18794
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -18801,7 +18813,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18801
18813
|
}
|
|
18802
18814
|
goto __pyx_L5_except_error;
|
|
18803
18815
|
|
|
18804
|
-
/* "../../../../../private/var/folders/
|
|
18816
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
|
18805
18817
|
* # Cython code.
|
|
18806
18818
|
* cdef inline int import_array() except -1:
|
|
18807
18819
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18817,7 +18829,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18817
18829
|
__pyx_L8_try_end:;
|
|
18818
18830
|
}
|
|
18819
18831
|
|
|
18820
|
-
/* "../../../../../private/var/folders/
|
|
18832
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1006
|
|
18821
18833
|
* # Versions of the import_* functions which are more suitable for
|
|
18822
18834
|
* # Cython code.
|
|
18823
18835
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18842,7 +18854,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18842
18854
|
return __pyx_r;
|
|
18843
18855
|
}
|
|
18844
18856
|
|
|
18845
|
-
/* "../../../../../private/var/folders/
|
|
18857
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1012
|
|
18846
18858
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
18847
18859
|
*
|
|
18848
18860
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18869,7 +18881,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18869
18881
|
int __pyx_clineno = 0;
|
|
18870
18882
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
|
18871
18883
|
|
|
18872
|
-
/* "../../../../../private/var/folders/
|
|
18884
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
18873
18885
|
*
|
|
18874
18886
|
* cdef inline int import_umath() except -1:
|
|
18875
18887
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18885,7 +18897,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18885
18897
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18886
18898
|
/*try:*/ {
|
|
18887
18899
|
|
|
18888
|
-
/* "../../../../../private/var/folders/
|
|
18900
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
18889
18901
|
* cdef inline int import_umath() except -1:
|
|
18890
18902
|
* try:
|
|
18891
18903
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -18894,7 +18906,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18894
18906
|
*/
|
|
18895
18907
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1014, __pyx_L3_error)
|
|
18896
18908
|
|
|
18897
|
-
/* "../../../../../private/var/folders/
|
|
18909
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
18898
18910
|
*
|
|
18899
18911
|
* cdef inline int import_umath() except -1:
|
|
18900
18912
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18908,7 +18920,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18908
18920
|
goto __pyx_L8_try_end;
|
|
18909
18921
|
__pyx_L3_error:;
|
|
18910
18922
|
|
|
18911
|
-
/* "../../../../../private/var/folders/
|
|
18923
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1015
|
|
18912
18924
|
* try:
|
|
18913
18925
|
* _import_umath()
|
|
18914
18926
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -18923,7 +18935,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18923
18935
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
18924
18936
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
18925
18937
|
|
|
18926
|
-
/* "../../../../../private/var/folders/
|
|
18938
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
18927
18939
|
* _import_umath()
|
|
18928
18940
|
* except Exception:
|
|
18929
18941
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -18948,7 +18960,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18948
18960
|
}
|
|
18949
18961
|
goto __pyx_L5_except_error;
|
|
18950
18962
|
|
|
18951
|
-
/* "../../../../../private/var/folders/
|
|
18963
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
18952
18964
|
*
|
|
18953
18965
|
* cdef inline int import_umath() except -1:
|
|
18954
18966
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18964,7 +18976,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18964
18976
|
__pyx_L8_try_end:;
|
|
18965
18977
|
}
|
|
18966
18978
|
|
|
18967
|
-
/* "../../../../../private/var/folders/
|
|
18979
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1012
|
|
18968
18980
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
18969
18981
|
*
|
|
18970
18982
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18989,7 +19001,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18989
19001
|
return __pyx_r;
|
|
18990
19002
|
}
|
|
18991
19003
|
|
|
18992
|
-
/* "../../../../../private/var/folders/
|
|
19004
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1018
|
|
18993
19005
|
* raise ImportError("numpy._core.umath failed to import")
|
|
18994
19006
|
*
|
|
18995
19007
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19016,7 +19028,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19016
19028
|
int __pyx_clineno = 0;
|
|
19017
19029
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
|
19018
19030
|
|
|
19019
|
-
/* "../../../../../private/var/folders/
|
|
19031
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
|
19020
19032
|
*
|
|
19021
19033
|
* cdef inline int import_ufunc() except -1:
|
|
19022
19034
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19032,7 +19044,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19032
19044
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19033
19045
|
/*try:*/ {
|
|
19034
19046
|
|
|
19035
|
-
/* "../../../../../private/var/folders/
|
|
19047
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1020
|
|
19036
19048
|
* cdef inline int import_ufunc() except -1:
|
|
19037
19049
|
* try:
|
|
19038
19050
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19041,7 +19053,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19041
19053
|
*/
|
|
19042
19054
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1020, __pyx_L3_error)
|
|
19043
19055
|
|
|
19044
|
-
/* "../../../../../private/var/folders/
|
|
19056
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
|
19045
19057
|
*
|
|
19046
19058
|
* cdef inline int import_ufunc() except -1:
|
|
19047
19059
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19055,7 +19067,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19055
19067
|
goto __pyx_L8_try_end;
|
|
19056
19068
|
__pyx_L3_error:;
|
|
19057
19069
|
|
|
19058
|
-
/* "../../../../../private/var/folders/
|
|
19070
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1021
|
|
19059
19071
|
* try:
|
|
19060
19072
|
* _import_umath()
|
|
19061
19073
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19070,7 +19082,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19070
19082
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19071
19083
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19072
19084
|
|
|
19073
|
-
/* "../../../../../private/var/folders/
|
|
19085
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
19074
19086
|
* _import_umath()
|
|
19075
19087
|
* except Exception:
|
|
19076
19088
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19095,7 +19107,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19095
19107
|
}
|
|
19096
19108
|
goto __pyx_L5_except_error;
|
|
19097
19109
|
|
|
19098
|
-
/* "../../../../../private/var/folders/
|
|
19110
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
|
19099
19111
|
*
|
|
19100
19112
|
* cdef inline int import_ufunc() except -1:
|
|
19101
19113
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19111,7 +19123,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19111
19123
|
__pyx_L8_try_end:;
|
|
19112
19124
|
}
|
|
19113
19125
|
|
|
19114
|
-
/* "../../../../../private/var/folders/
|
|
19126
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1018
|
|
19115
19127
|
* raise ImportError("numpy._core.umath failed to import")
|
|
19116
19128
|
*
|
|
19117
19129
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19136,7 +19148,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19136
19148
|
return __pyx_r;
|
|
19137
19149
|
}
|
|
19138
19150
|
|
|
19139
|
-
/* "../../../../../private/var/folders/
|
|
19151
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1025
|
|
19140
19152
|
*
|
|
19141
19153
|
*
|
|
19142
19154
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -19147,7 +19159,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19147
19159
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19148
19160
|
int __pyx_r;
|
|
19149
19161
|
|
|
19150
|
-
/* "../../../../../private/var/folders/
|
|
19162
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1037
|
|
19151
19163
|
* bool
|
|
19152
19164
|
* """
|
|
19153
19165
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19157,7 +19169,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19157
19169
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
19158
19170
|
goto __pyx_L0;
|
|
19159
19171
|
|
|
19160
|
-
/* "../../../../../private/var/folders/
|
|
19172
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1025
|
|
19161
19173
|
*
|
|
19162
19174
|
*
|
|
19163
19175
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -19170,7 +19182,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19170
19182
|
return __pyx_r;
|
|
19171
19183
|
}
|
|
19172
19184
|
|
|
19173
|
-
/* "../../../../../private/var/folders/
|
|
19185
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1040
|
|
19174
19186
|
*
|
|
19175
19187
|
*
|
|
19176
19188
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -19181,7 +19193,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19181
19193
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19182
19194
|
int __pyx_r;
|
|
19183
19195
|
|
|
19184
|
-
/* "../../../../../private/var/folders/
|
|
19196
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
|
|
19185
19197
|
* bool
|
|
19186
19198
|
* """
|
|
19187
19199
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19191,7 +19203,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19191
19203
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19192
19204
|
goto __pyx_L0;
|
|
19193
19205
|
|
|
19194
|
-
/* "../../../../../private/var/folders/
|
|
19206
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1040
|
|
19195
19207
|
*
|
|
19196
19208
|
*
|
|
19197
19209
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -19204,7 +19216,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19204
19216
|
return __pyx_r;
|
|
19205
19217
|
}
|
|
19206
19218
|
|
|
19207
|
-
/* "../../../../../private/var/folders/
|
|
19219
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1055
|
|
19208
19220
|
*
|
|
19209
19221
|
*
|
|
19210
19222
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19215,7 +19227,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19215
19227
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19216
19228
|
npy_datetime __pyx_r;
|
|
19217
19229
|
|
|
19218
|
-
/* "../../../../../private/var/folders/
|
|
19230
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1062
|
|
19219
19231
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19220
19232
|
* """
|
|
19221
19233
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19225,7 +19237,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19225
19237
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19226
19238
|
goto __pyx_L0;
|
|
19227
19239
|
|
|
19228
|
-
/* "../../../../../private/var/folders/
|
|
19240
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1055
|
|
19229
19241
|
*
|
|
19230
19242
|
*
|
|
19231
19243
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19238,7 +19250,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19238
19250
|
return __pyx_r;
|
|
19239
19251
|
}
|
|
19240
19252
|
|
|
19241
|
-
/* "../../../../../private/var/folders/
|
|
19253
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1065
|
|
19242
19254
|
*
|
|
19243
19255
|
*
|
|
19244
19256
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19249,7 +19261,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19249
19261
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19250
19262
|
npy_timedelta __pyx_r;
|
|
19251
19263
|
|
|
19252
|
-
/* "../../../../../private/var/folders/
|
|
19264
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1069
|
|
19253
19265
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19254
19266
|
* """
|
|
19255
19267
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19259,7 +19271,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19259
19271
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19260
19272
|
goto __pyx_L0;
|
|
19261
19273
|
|
|
19262
|
-
/* "../../../../../private/var/folders/
|
|
19274
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1065
|
|
19263
19275
|
*
|
|
19264
19276
|
*
|
|
19265
19277
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19272,7 +19284,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19272
19284
|
return __pyx_r;
|
|
19273
19285
|
}
|
|
19274
19286
|
|
|
19275
|
-
/* "../../../../../private/var/folders/
|
|
19287
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1072
|
|
19276
19288
|
*
|
|
19277
19289
|
*
|
|
19278
19290
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19283,7 +19295,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19283
19295
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19284
19296
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19285
19297
|
|
|
19286
|
-
/* "../../../../../private/var/folders/
|
|
19298
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1076
|
|
19287
19299
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19288
19300
|
* """
|
|
19289
19301
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19293,7 +19305,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19293
19305
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19294
19306
|
goto __pyx_L0;
|
|
19295
19307
|
|
|
19296
|
-
/* "../../../../../private/var/folders/
|
|
19308
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-87m8wgod/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1072
|
|
19297
19309
|
*
|
|
19298
19310
|
*
|
|
19299
19311
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19647,7 +19659,7 @@ static int __pyx_pw_11obliquetree_3src_4base_14TreeClassifier_1__init__(PyObject
|
|
|
19647
19659
|
default: goto __pyx_L5_argtuple_error;
|
|
19648
19660
|
}
|
|
19649
19661
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
19650
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__init__", 0) < 0) __PYX_ERR(0, 37, __pyx_L3_error)
|
|
19662
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__init__", 0) < (0)) __PYX_ERR(0, 37, __pyx_L3_error)
|
|
19651
19663
|
for (Py_ssize_t i = __pyx_nargs; i < 14; i++) {
|
|
19652
19664
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__init__", 1, 14, 14, i); __PYX_ERR(0, 37, __pyx_L3_error) }
|
|
19653
19665
|
}
|
|
@@ -20216,7 +20228,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
20216
20228
|
default: goto __pyx_L5_argtuple_error;
|
|
20217
20229
|
}
|
|
20218
20230
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
20219
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate__", 0) < 0) __PYX_ERR(0, 79, __pyx_L3_error)
|
|
20231
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate__", 0) < (0)) __PYX_ERR(0, 79, __pyx_L3_error)
|
|
20220
20232
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
20221
20233
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate__", 1, 1, 1, i); __PYX_ERR(0, 79, __pyx_L3_error) }
|
|
20222
20234
|
}
|
|
@@ -21703,7 +21715,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
21703
21715
|
default: goto __pyx_L5_argtuple_error;
|
|
21704
21716
|
}
|
|
21705
21717
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
21706
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "fit", 0) < 0) __PYX_ERR(0, 106, __pyx_L3_error)
|
|
21718
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "fit", 0) < (0)) __PYX_ERR(0, 106, __pyx_L3_error)
|
|
21707
21719
|
for (Py_ssize_t i = __pyx_nargs; i < 3; i++) {
|
|
21708
21720
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("fit", 1, 3, 3, i); __PYX_ERR(0, 106, __pyx_L3_error) }
|
|
21709
21721
|
}
|
|
@@ -22096,7 +22108,7 @@ static PyObject *__pyx_f_11obliquetree_3src_4base_14TreeClassifier_predict(struc
|
|
|
22096
22108
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_2, __pyx_t_5};
|
|
22097
22109
|
__pyx_t_3 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 236, __pyx_L4_error)
|
|
22098
22110
|
__Pyx_GOTREF(__pyx_t_3);
|
|
22099
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_9, __pyx_t_3, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 236, __pyx_L4_error)
|
|
22111
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_9, __pyx_t_3, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 236, __pyx_L4_error)
|
|
22100
22112
|
__pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_4, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_3);
|
|
22101
22113
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
22102
22114
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
@@ -22182,7 +22194,7 @@ static PyObject *__pyx_f_11obliquetree_3src_4base_14TreeClassifier_predict(struc
|
|
|
22182
22194
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_4, __pyx_t_5};
|
|
22183
22195
|
__pyx_t_3 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 238, __pyx_L4_error)
|
|
22184
22196
|
__Pyx_GOTREF(__pyx_t_3);
|
|
22185
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_2, __pyx_t_3, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 238, __pyx_L4_error)
|
|
22197
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_2, __pyx_t_3, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 238, __pyx_L4_error)
|
|
22186
22198
|
__pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_9, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_3);
|
|
22187
22199
|
__Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
22188
22200
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
@@ -22350,7 +22362,7 @@ static PyObject *__pyx_f_11obliquetree_3src_4base_14TreeClassifier_predict(struc
|
|
|
22350
22362
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_9, __pyx_t_4};
|
|
22351
22363
|
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 250, __pyx_L4_error)
|
|
22352
22364
|
__Pyx_GOTREF(__pyx_t_5);
|
|
22353
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_3, __pyx_t_5, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 250, __pyx_L4_error)
|
|
22365
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_3, __pyx_t_5, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 250, __pyx_L4_error)
|
|
22354
22366
|
__pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_2, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_5);
|
|
22355
22367
|
__Pyx_XDECREF(__pyx_t_9); __pyx_t_9 = 0;
|
|
22356
22368
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
@@ -22598,7 +22610,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
22598
22610
|
default: goto __pyx_L5_argtuple_error;
|
|
22599
22611
|
}
|
|
22600
22612
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
22601
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "predict", 0) < 0) __PYX_ERR(0, 216, __pyx_L3_error)
|
|
22613
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "predict", 0) < (0)) __PYX_ERR(0, 216, __pyx_L3_error)
|
|
22602
22614
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
22603
22615
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("predict", 1, 1, 1, i); __PYX_ERR(0, 216, __pyx_L3_error) }
|
|
22604
22616
|
}
|
|
@@ -24175,7 +24187,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
24175
24187
|
default: goto __pyx_L5_argtuple_error;
|
|
24176
24188
|
}
|
|
24177
24189
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
24178
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < 0) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
24190
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
24179
24191
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
24180
24192
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 3, __pyx_L3_error) }
|
|
24181
24193
|
}
|
|
@@ -25631,24 +25643,24 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
25631
25643
|
__pyx_vtable_11obliquetree_3src_4base_TreeClassifier.predict = (PyObject *(*)(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier *, __Pyx_memviewslice, int __pyx_skip_dispatch))__pyx_f_11obliquetree_3src_4base_14TreeClassifier_predict;
|
|
25632
25644
|
#if CYTHON_USE_TYPE_SPECS
|
|
25633
25645
|
__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier = (PyTypeObject *) __Pyx_PyType_FromModuleAndSpec(__pyx_m, &__pyx_type_11obliquetree_3src_4base_TreeClassifier_spec, NULL); if (unlikely(!__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier)) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25634
|
-
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type_11obliquetree_3src_4base_TreeClassifier_spec, __pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) < 0) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25646
|
+
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type_11obliquetree_3src_4base_TreeClassifier_spec, __pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) < (0)) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25635
25647
|
#else
|
|
25636
25648
|
__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier = &__pyx_type_11obliquetree_3src_4base_TreeClassifier;
|
|
25637
25649
|
#endif
|
|
25638
25650
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
25639
25651
|
#endif
|
|
25640
25652
|
#if !CYTHON_USE_TYPE_SPECS
|
|
25641
|
-
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) < 0) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25653
|
+
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) < (0)) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25642
25654
|
#endif
|
|
25643
25655
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
25644
25656
|
if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier->tp_dictoffset && __pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier->tp_getattro == PyObject_GenericGetAttr)) {
|
|
25645
25657
|
__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier->tp_getattro = PyObject_GenericGetAttr;
|
|
25646
25658
|
}
|
|
25647
25659
|
#endif
|
|
25648
|
-
if (__Pyx_SetVtable(__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier, __pyx_vtabptr_11obliquetree_3src_4base_TreeClassifier) < 0) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25649
|
-
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) < 0) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25650
|
-
if (PyObject_SetAttr(__pyx_m, __pyx_mstate_global->__pyx_n_u_TreeClassifier, (PyObject *) __pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) < 0) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25651
|
-
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) < 0) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25660
|
+
if (__Pyx_SetVtable(__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier, __pyx_vtabptr_11obliquetree_3src_4base_TreeClassifier) < (0)) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25661
|
+
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) < (0)) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25662
|
+
if (PyObject_SetAttr(__pyx_m, __pyx_mstate_global->__pyx_n_u_TreeClassifier, (PyObject *) __pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) < (0)) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25663
|
+
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) < (0)) __PYX_ERR(0, 36, __pyx_L1_error)
|
|
25652
25664
|
__pyx_vtabptr_array = &__pyx_vtable_array;
|
|
25653
25665
|
__pyx_vtable_array.get_memview = (PyObject *(*)(struct __pyx_array_obj *))__pyx_array_get_memview;
|
|
25654
25666
|
#if CYTHON_USE_TYPE_SPECS
|
|
@@ -25665,35 +25677,35 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
25665
25677
|
#else
|
|
25666
25678
|
#warning "The buffer protocol is not supported in the Limited C-API < 3.11."
|
|
25667
25679
|
#endif
|
|
25668
|
-
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_array_spec, __pyx_mstate->__pyx_array_type) < 0) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
25680
|
+
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_array_spec, __pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
25669
25681
|
#else
|
|
25670
25682
|
__pyx_mstate->__pyx_array_type = &__pyx_type___pyx_array;
|
|
25671
25683
|
#endif
|
|
25672
25684
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
25673
25685
|
#endif
|
|
25674
25686
|
#if !CYTHON_USE_TYPE_SPECS
|
|
25675
|
-
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_array_type) < 0) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
25687
|
+
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
25676
25688
|
#endif
|
|
25677
|
-
if (__Pyx_SetVtable(__pyx_mstate->__pyx_array_type, __pyx_vtabptr_array) < 0) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
25678
|
-
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_array_type) < 0) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
25679
|
-
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_array_type) < 0) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
25689
|
+
if (__Pyx_SetVtable(__pyx_mstate->__pyx_array_type, __pyx_vtabptr_array) < (0)) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
25690
|
+
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
25691
|
+
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
25680
25692
|
#if CYTHON_USE_TYPE_SPECS
|
|
25681
25693
|
__pyx_mstate->__pyx_MemviewEnum_type = (PyTypeObject *) __Pyx_PyType_FromModuleAndSpec(__pyx_m, &__pyx_type___pyx_MemviewEnum_spec, NULL); if (unlikely(!__pyx_mstate->__pyx_MemviewEnum_type)) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
25682
|
-
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_MemviewEnum_spec, __pyx_mstate->__pyx_MemviewEnum_type) < 0) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
25694
|
+
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_MemviewEnum_spec, __pyx_mstate->__pyx_MemviewEnum_type) < (0)) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
25683
25695
|
#else
|
|
25684
25696
|
__pyx_mstate->__pyx_MemviewEnum_type = &__pyx_type___pyx_MemviewEnum;
|
|
25685
25697
|
#endif
|
|
25686
25698
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
25687
25699
|
#endif
|
|
25688
25700
|
#if !CYTHON_USE_TYPE_SPECS
|
|
25689
|
-
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_MemviewEnum_type) < 0) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
25701
|
+
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_MemviewEnum_type) < (0)) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
25690
25702
|
#endif
|
|
25691
25703
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
25692
25704
|
if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_mstate->__pyx_MemviewEnum_type->tp_dictoffset && __pyx_mstate->__pyx_MemviewEnum_type->tp_getattro == PyObject_GenericGetAttr)) {
|
|
25693
25705
|
__pyx_mstate->__pyx_MemviewEnum_type->tp_getattro = PyObject_GenericGetAttr;
|
|
25694
25706
|
}
|
|
25695
25707
|
#endif
|
|
25696
|
-
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_MemviewEnum_type) < 0) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
25708
|
+
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_MemviewEnum_type) < (0)) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
25697
25709
|
__pyx_vtabptr_memoryview = &__pyx_vtable_memoryview;
|
|
25698
25710
|
__pyx_vtable_memoryview.get_item_pointer = (char *(*)(struct __pyx_memoryview_obj *, PyObject *))__pyx_memoryview_get_item_pointer;
|
|
25699
25711
|
__pyx_vtable_memoryview.is_slice = (PyObject *(*)(struct __pyx_memoryview_obj *, PyObject *))__pyx_memoryview_is_slice;
|
|
@@ -25717,23 +25729,23 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
25717
25729
|
#else
|
|
25718
25730
|
#warning "The buffer protocol is not supported in the Limited C-API < 3.11."
|
|
25719
25731
|
#endif
|
|
25720
|
-
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_memoryview_spec, __pyx_mstate->__pyx_memoryview_type) < 0) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
25732
|
+
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_memoryview_spec, __pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
25721
25733
|
#else
|
|
25722
25734
|
__pyx_mstate->__pyx_memoryview_type = &__pyx_type___pyx_memoryview;
|
|
25723
25735
|
#endif
|
|
25724
25736
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
25725
25737
|
#endif
|
|
25726
25738
|
#if !CYTHON_USE_TYPE_SPECS
|
|
25727
|
-
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_memoryview_type) < 0) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
25739
|
+
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
25728
25740
|
#endif
|
|
25729
25741
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
25730
25742
|
if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_mstate->__pyx_memoryview_type->tp_dictoffset && __pyx_mstate->__pyx_memoryview_type->tp_getattro == PyObject_GenericGetAttr)) {
|
|
25731
25743
|
__pyx_mstate->__pyx_memoryview_type->tp_getattro = PyObject_GenericGetAttr;
|
|
25732
25744
|
}
|
|
25733
25745
|
#endif
|
|
25734
|
-
if (__Pyx_SetVtable(__pyx_mstate->__pyx_memoryview_type, __pyx_vtabptr_memoryview) < 0) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
25735
|
-
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_memoryview_type) < 0) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
25736
|
-
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_memoryview_type) < 0) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
25746
|
+
if (__Pyx_SetVtable(__pyx_mstate->__pyx_memoryview_type, __pyx_vtabptr_memoryview) < (0)) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
25747
|
+
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
25748
|
+
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
25737
25749
|
__pyx_vtabptr__memoryviewslice = &__pyx_vtable__memoryviewslice;
|
|
25738
25750
|
__pyx_vtable__memoryviewslice.__pyx_base = *__pyx_vtabptr_memoryview;
|
|
25739
25751
|
__pyx_vtable__memoryviewslice.__pyx_base.convert_item_to_object = (PyObject *(*)(struct __pyx_memoryview_obj *, char *))__pyx_memoryviewslice_convert_item_to_object;
|
|
@@ -25745,7 +25757,7 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
25745
25757
|
__pyx_mstate->__pyx_memoryviewslice_type = (PyTypeObject *) __Pyx_PyType_FromModuleAndSpec(__pyx_m, &__pyx_type___pyx_memoryviewslice_spec, __pyx_t_1);
|
|
25746
25758
|
__Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25747
25759
|
if (unlikely(!__pyx_mstate->__pyx_memoryviewslice_type)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25748
|
-
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_memoryviewslice_spec, __pyx_mstate->__pyx_memoryviewslice_type) < 0) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25760
|
+
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_memoryviewslice_spec, __pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25749
25761
|
#else
|
|
25750
25762
|
__pyx_mstate->__pyx_memoryviewslice_type = &__pyx_type___pyx_memoryviewslice;
|
|
25751
25763
|
#endif
|
|
@@ -25753,16 +25765,16 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
25753
25765
|
__pyx_mstate_global->__pyx_memoryviewslice_type->tp_base = __pyx_mstate_global->__pyx_memoryview_type;
|
|
25754
25766
|
#endif
|
|
25755
25767
|
#if !CYTHON_USE_TYPE_SPECS
|
|
25756
|
-
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_memoryviewslice_type) < 0) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25768
|
+
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25757
25769
|
#endif
|
|
25758
25770
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
25759
25771
|
if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_mstate->__pyx_memoryviewslice_type->tp_dictoffset && __pyx_mstate->__pyx_memoryviewslice_type->tp_getattro == PyObject_GenericGetAttr)) {
|
|
25760
25772
|
__pyx_mstate->__pyx_memoryviewslice_type->tp_getattro = PyObject_GenericGetAttr;
|
|
25761
25773
|
}
|
|
25762
25774
|
#endif
|
|
25763
|
-
if (__Pyx_SetVtable(__pyx_mstate->__pyx_memoryviewslice_type, __pyx_vtabptr__memoryviewslice) < 0) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25764
|
-
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_memoryviewslice_type) < 0) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25765
|
-
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_memoryviewslice_type) < 0) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25775
|
+
if (__Pyx_SetVtable(__pyx_mstate->__pyx_memoryviewslice_type, __pyx_vtabptr__memoryviewslice) < (0)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25776
|
+
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25777
|
+
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
25766
25778
|
__Pyx_RefNannyFinishContext();
|
|
25767
25779
|
return 0;
|
|
25768
25780
|
__pyx_L1_error:;
|
|
@@ -25782,153 +25794,153 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
25782
25794
|
/*--- Type import code ---*/
|
|
25783
25795
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(4, 9, __pyx_L1_error)
|
|
25784
25796
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25785
|
-
__pyx_mstate->__pyx_ptype_7cpython_4type_type =
|
|
25797
|
+
__pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_6(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
25786
25798
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25787
|
-
sizeof(PyTypeObject),
|
|
25799
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyTypeObject),
|
|
25788
25800
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25789
25801
|
0, 0,
|
|
25790
25802
|
#else
|
|
25791
|
-
sizeof(PyHeapTypeObject),
|
|
25803
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyHeapTypeObject),
|
|
25792
25804
|
#endif
|
|
25793
|
-
|
|
25805
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(4, 9, __pyx_L1_error)
|
|
25794
25806
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25795
25807
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 228, __pyx_L1_error)
|
|
25796
25808
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25797
|
-
__pyx_mstate->__pyx_ptype_5numpy_dtype =
|
|
25809
|
+
__pyx_mstate->__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "dtype",
|
|
25798
25810
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25799
|
-
sizeof(PyArray_Descr),
|
|
25811
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArray_Descr),
|
|
25800
25812
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25801
|
-
sizeof(PyArray_Descr),
|
|
25813
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArray_Descr),
|
|
25802
25814
|
#else
|
|
25803
|
-
sizeof(PyArray_Descr),
|
|
25815
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArray_Descr),
|
|
25804
25816
|
#endif
|
|
25805
|
-
|
|
25806
|
-
__pyx_mstate->__pyx_ptype_5numpy_flatiter =
|
|
25817
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 228, __pyx_L1_error)
|
|
25818
|
+
__pyx_mstate->__pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "flatiter",
|
|
25807
25819
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25808
|
-
sizeof(PyArrayIterObject),
|
|
25820
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayIterObject),
|
|
25809
25821
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25810
|
-
sizeof(PyArrayIterObject),
|
|
25822
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayIterObject),
|
|
25811
25823
|
#else
|
|
25812
|
-
sizeof(PyArrayIterObject),
|
|
25824
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayIterObject),
|
|
25813
25825
|
#endif
|
|
25814
|
-
|
|
25815
|
-
__pyx_mstate->__pyx_ptype_5numpy_broadcast =
|
|
25826
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 273, __pyx_L1_error)
|
|
25827
|
+
__pyx_mstate->__pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "broadcast",
|
|
25816
25828
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25817
|
-
sizeof(PyArrayMultiIterObject),
|
|
25829
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayMultiIterObject),
|
|
25818
25830
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25819
|
-
sizeof(PyArrayMultiIterObject),
|
|
25831
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayMultiIterObject),
|
|
25820
25832
|
#else
|
|
25821
|
-
sizeof(PyArrayMultiIterObject),
|
|
25833
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayMultiIterObject),
|
|
25822
25834
|
#endif
|
|
25823
|
-
|
|
25824
|
-
__pyx_mstate->__pyx_ptype_5numpy_ndarray =
|
|
25835
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 277, __pyx_L1_error)
|
|
25836
|
+
__pyx_mstate->__pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "ndarray",
|
|
25825
25837
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25826
|
-
sizeof(PyArrayObject),
|
|
25838
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayObject),
|
|
25827
25839
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25828
|
-
sizeof(PyArrayObject),
|
|
25840
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayObject),
|
|
25829
25841
|
#else
|
|
25830
|
-
sizeof(PyArrayObject),
|
|
25842
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayObject),
|
|
25831
25843
|
#endif
|
|
25832
|
-
|
|
25833
|
-
__pyx_mstate->__pyx_ptype_5numpy_generic =
|
|
25844
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 316, __pyx_L1_error)
|
|
25845
|
+
__pyx_mstate->__pyx_ptype_5numpy_generic = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "generic",
|
|
25834
25846
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25835
|
-
sizeof(PyObject),
|
|
25847
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25836
25848
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25837
|
-
sizeof(PyObject),
|
|
25849
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25838
25850
|
#else
|
|
25839
|
-
sizeof(PyObject),
|
|
25851
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25840
25852
|
#endif
|
|
25841
|
-
|
|
25842
|
-
__pyx_mstate->__pyx_ptype_5numpy_number =
|
|
25853
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_generic) __PYX_ERR(2, 825, __pyx_L1_error)
|
|
25854
|
+
__pyx_mstate->__pyx_ptype_5numpy_number = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "number",
|
|
25843
25855
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25844
|
-
sizeof(PyObject),
|
|
25856
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25845
25857
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25846
|
-
sizeof(PyObject),
|
|
25858
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25847
25859
|
#else
|
|
25848
|
-
sizeof(PyObject),
|
|
25860
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25849
25861
|
#endif
|
|
25850
|
-
|
|
25851
|
-
__pyx_mstate->__pyx_ptype_5numpy_integer =
|
|
25862
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_number) __PYX_ERR(2, 827, __pyx_L1_error)
|
|
25863
|
+
__pyx_mstate->__pyx_ptype_5numpy_integer = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "integer",
|
|
25852
25864
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25853
|
-
sizeof(PyObject),
|
|
25865
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25854
25866
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25855
|
-
sizeof(PyObject),
|
|
25867
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25856
25868
|
#else
|
|
25857
|
-
sizeof(PyObject),
|
|
25869
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25858
25870
|
#endif
|
|
25859
|
-
|
|
25860
|
-
__pyx_mstate->__pyx_ptype_5numpy_signedinteger =
|
|
25871
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_integer) __PYX_ERR(2, 829, __pyx_L1_error)
|
|
25872
|
+
__pyx_mstate->__pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "signedinteger",
|
|
25861
25873
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25862
|
-
sizeof(PyObject),
|
|
25874
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25863
25875
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25864
|
-
sizeof(PyObject),
|
|
25876
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25865
25877
|
#else
|
|
25866
|
-
sizeof(PyObject),
|
|
25878
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25867
25879
|
#endif
|
|
25868
|
-
|
|
25869
|
-
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger =
|
|
25880
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 831, __pyx_L1_error)
|
|
25881
|
+
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "unsignedinteger",
|
|
25870
25882
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25871
|
-
sizeof(PyObject),
|
|
25883
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25872
25884
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25873
|
-
sizeof(PyObject),
|
|
25885
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25874
25886
|
#else
|
|
25875
|
-
sizeof(PyObject),
|
|
25887
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25876
25888
|
#endif
|
|
25877
|
-
|
|
25878
|
-
__pyx_mstate->__pyx_ptype_5numpy_inexact =
|
|
25889
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 833, __pyx_L1_error)
|
|
25890
|
+
__pyx_mstate->__pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "inexact",
|
|
25879
25891
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25880
|
-
sizeof(PyObject),
|
|
25892
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25881
25893
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25882
|
-
sizeof(PyObject),
|
|
25894
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25883
25895
|
#else
|
|
25884
|
-
sizeof(PyObject),
|
|
25896
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25885
25897
|
#endif
|
|
25886
|
-
|
|
25887
|
-
__pyx_mstate->__pyx_ptype_5numpy_floating =
|
|
25898
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 835, __pyx_L1_error)
|
|
25899
|
+
__pyx_mstate->__pyx_ptype_5numpy_floating = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "floating",
|
|
25888
25900
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25889
|
-
sizeof(PyObject),
|
|
25901
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25890
25902
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25891
|
-
sizeof(PyObject),
|
|
25903
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25892
25904
|
#else
|
|
25893
|
-
sizeof(PyObject),
|
|
25905
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25894
25906
|
#endif
|
|
25895
|
-
|
|
25896
|
-
__pyx_mstate->__pyx_ptype_5numpy_complexfloating =
|
|
25907
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_floating) __PYX_ERR(2, 837, __pyx_L1_error)
|
|
25908
|
+
__pyx_mstate->__pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "complexfloating",
|
|
25897
25909
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25898
|
-
sizeof(PyObject),
|
|
25910
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25899
25911
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25900
|
-
sizeof(PyObject),
|
|
25912
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25901
25913
|
#else
|
|
25902
|
-
sizeof(PyObject),
|
|
25914
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25903
25915
|
#endif
|
|
25904
|
-
|
|
25905
|
-
__pyx_mstate->__pyx_ptype_5numpy_flexible =
|
|
25916
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 839, __pyx_L1_error)
|
|
25917
|
+
__pyx_mstate->__pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "flexible",
|
|
25906
25918
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25907
|
-
sizeof(PyObject),
|
|
25919
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25908
25920
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25909
|
-
sizeof(PyObject),
|
|
25921
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25910
25922
|
#else
|
|
25911
|
-
sizeof(PyObject),
|
|
25923
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25912
25924
|
#endif
|
|
25913
|
-
|
|
25914
|
-
__pyx_mstate->__pyx_ptype_5numpy_character =
|
|
25925
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 841, __pyx_L1_error)
|
|
25926
|
+
__pyx_mstate->__pyx_ptype_5numpy_character = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "character",
|
|
25915
25927
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25916
|
-
sizeof(PyObject),
|
|
25928
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25917
25929
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25918
|
-
sizeof(PyObject),
|
|
25930
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25919
25931
|
#else
|
|
25920
|
-
sizeof(PyObject),
|
|
25932
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
25921
25933
|
#endif
|
|
25922
|
-
|
|
25923
|
-
__pyx_mstate->__pyx_ptype_5numpy_ufunc =
|
|
25934
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_character) __PYX_ERR(2, 843, __pyx_L1_error)
|
|
25935
|
+
__pyx_mstate->__pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "ufunc",
|
|
25924
25936
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25925
|
-
sizeof(PyUFuncObject),
|
|
25937
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyUFuncObject),
|
|
25926
25938
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25927
|
-
sizeof(PyUFuncObject),
|
|
25939
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyUFuncObject),
|
|
25928
25940
|
#else
|
|
25929
|
-
sizeof(PyUFuncObject),
|
|
25941
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyUFuncObject),
|
|
25930
25942
|
#endif
|
|
25931
|
-
|
|
25943
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 907, __pyx_L1_error)
|
|
25932
25944
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25933
25945
|
__Pyx_RefNannyFinishContext();
|
|
25934
25946
|
return 0;
|
|
@@ -25958,18 +25970,18 @@ static int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
25958
25970
|
/*--- Function import code ---*/
|
|
25959
25971
|
__pyx_t_1 = PyImport_ImportModule("obliquetree.src.utils"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25960
25972
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25961
|
-
if (
|
|
25962
|
-
if (
|
|
25963
|
-
if (
|
|
25973
|
+
if (__Pyx_ImportFunction_3_1_6(__pyx_t_1, "export_tree", (void (**)(void))&__pyx_f_11obliquetree_3src_5utils_export_tree, "PyObject *(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier *, int __pyx_skip_dispatch)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25974
|
+
if (__Pyx_ImportFunction_3_1_6(__pyx_t_1, "deserialize_tree", (void (**)(void))&__pyx_f_11obliquetree_3src_5utils_deserialize_tree, "struct __pyx_t_11obliquetree_3src_4tree_TreeNode *(PyObject *, int, int)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25975
|
+
if (__Pyx_ImportFunction_3_1_6(__pyx_t_1, "analyze_X", (void (**)(void))&__pyx_f_11obliquetree_3src_5utils_analyze_X, "void (__Pyx_memviewslice, int *, int *, int *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25964
25976
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25965
25977
|
__pyx_t_1 = PyImport_ImportModule("obliquetree.src.tree"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25966
25978
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25967
|
-
if (
|
|
25968
|
-
if (
|
|
25979
|
+
if (__Pyx_ImportFunction_3_1_6(__pyx_t_1, "predict", (void (**)(void))&__pyx_f_11obliquetree_3src_4tree_predict, "void (struct __pyx_t_11obliquetree_3src_4tree_TreeNode const *, __Pyx_memviewslice, __Pyx_memviewslice, int const *, int const , int const )") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25980
|
+
if (__Pyx_ImportFunction_3_1_6(__pyx_t_1, "build_tree_recursive", (void (**)(void))&__pyx_f_11obliquetree_3src_4tree_build_tree_recursive, "struct __pyx_t_11obliquetree_3src_4tree_TreeNode *(int const , int const , __Pyx_memviewslice, __Pyx_memviewslice, unsigned char const , unsigned char const , int const , int const , double const , struct __pyx_t_11obliquetree_3src_5utils_SortItem *, int *, int *, int const , int const , double const , int const , double const , PyObject *, int const , int const *, struct __pyx_t_11obliquetree_3src_4tree_CategoryStat *, __Pyx_memviewslice, int const *, int const , int *, struct __pyx_t_11obliquetree_3src_5utils_SortItem *, int const *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25969
25981
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25970
25982
|
__pyx_t_1 = PyImport_ImportModule("obliquetree.src.ccp"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25971
25983
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25972
|
-
if (
|
|
25984
|
+
if (__Pyx_ImportFunction_3_1_6(__pyx_t_1, "prune_tree", (void (**)(void))&__pyx_f_11obliquetree_3src_3ccp_prune_tree, "void (struct __pyx_t_11obliquetree_3src_4tree_TreeNode *, double const )") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
25973
25985
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25974
25986
|
__Pyx_RefNannyFinishContext();
|
|
25975
25987
|
return 0;
|
|
@@ -26214,7 +26226,7 @@ if (!__Pyx_RefNanny) {
|
|
|
26214
26226
|
#endif
|
|
26215
26227
|
|
|
26216
26228
|
__Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
26217
|
-
if (__Pyx_check_binary_version(__PYX_LIMITED_VERSION_HEX, __Pyx_get_runtime_version(), CYTHON_COMPILING_IN_LIMITED_API) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26229
|
+
if (__Pyx_check_binary_version(__PYX_LIMITED_VERSION_HEX, __Pyx_get_runtime_version(), CYTHON_COMPILING_IN_LIMITED_API) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26218
26230
|
#ifdef __Pxy_PyFrame_Initialize_Offsets
|
|
26219
26231
|
__Pxy_PyFrame_Initialize_Offsets();
|
|
26220
26232
|
#endif
|
|
@@ -26222,30 +26234,30 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26222
26234
|
__pyx_mstate->__pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_mstate->__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26223
26235
|
__pyx_mstate->__pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_mstate->__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26224
26236
|
/*--- Initialize various global constants etc. ---*/
|
|
26225
|
-
if (__Pyx_InitConstants(__pyx_mstate) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26237
|
+
if (__Pyx_InitConstants(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26226
26238
|
stringtab_initialized = 1;
|
|
26227
|
-
if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26239
|
+
if (__Pyx_InitGlobals() < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26228
26240
|
#if 0 || defined(__Pyx_CyFunction_USED) || defined(__Pyx_FusedFunction_USED) || defined(__Pyx_Coroutine_USED) || defined(__Pyx_Generator_USED) || defined(__Pyx_AsyncGen_USED)
|
|
26229
|
-
if (__pyx_CommonTypesMetaclass_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26241
|
+
if (__pyx_CommonTypesMetaclass_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26230
26242
|
#endif
|
|
26231
26243
|
#ifdef __Pyx_CyFunction_USED
|
|
26232
|
-
if (__pyx_CyFunction_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26244
|
+
if (__pyx_CyFunction_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26233
26245
|
#endif
|
|
26234
26246
|
#ifdef __Pyx_FusedFunction_USED
|
|
26235
|
-
if (__pyx_FusedFunction_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26247
|
+
if (__pyx_FusedFunction_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26236
26248
|
#endif
|
|
26237
26249
|
#ifdef __Pyx_Coroutine_USED
|
|
26238
|
-
if (__pyx_Coroutine_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26250
|
+
if (__pyx_Coroutine_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26239
26251
|
#endif
|
|
26240
26252
|
#ifdef __Pyx_Generator_USED
|
|
26241
|
-
if (__pyx_Generator_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26253
|
+
if (__pyx_Generator_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26242
26254
|
#endif
|
|
26243
26255
|
#ifdef __Pyx_AsyncGen_USED
|
|
26244
|
-
if (__pyx_AsyncGen_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26256
|
+
if (__pyx_AsyncGen_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26245
26257
|
#endif
|
|
26246
26258
|
/*--- Library function declarations ---*/
|
|
26247
26259
|
if (__pyx_module_is_main_obliquetree__src__base) {
|
|
26248
|
-
if (PyObject_SetAttr(__pyx_m, __pyx_mstate_global->__pyx_n_u_name_2, __pyx_mstate_global->__pyx_n_u_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26260
|
+
if (PyObject_SetAttr(__pyx_m, __pyx_mstate_global->__pyx_n_u_name_2, __pyx_mstate_global->__pyx_n_u_main) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26249
26261
|
}
|
|
26250
26262
|
{
|
|
26251
26263
|
PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
@@ -26254,10 +26266,10 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26254
26266
|
}
|
|
26255
26267
|
}
|
|
26256
26268
|
/*--- Builtin init code ---*/
|
|
26257
|
-
if (__Pyx_InitCachedBuiltins(__pyx_mstate) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26269
|
+
if (__Pyx_InitCachedBuiltins(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26258
26270
|
/*--- Constants init code ---*/
|
|
26259
|
-
if (__Pyx_InitCachedConstants(__pyx_mstate) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26260
|
-
if (__Pyx_CreateCodeObjects(__pyx_mstate) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26271
|
+
if (__Pyx_InitCachedConstants(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26272
|
+
if (__Pyx_CreateCodeObjects(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26261
26273
|
/*--- Global type/function init code ---*/
|
|
26262
26274
|
(void)__Pyx_modinit_global_init_code(__pyx_mstate);
|
|
26263
26275
|
(void)__Pyx_modinit_variable_export_code(__pyx_mstate);
|
|
@@ -26408,7 +26420,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26408
26420
|
*/
|
|
26409
26421
|
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_count); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 240, __pyx_L10_error)
|
|
26410
26422
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26411
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_array_type, __pyx_mstate_global->__pyx_n_u_count, __pyx_t_5) < 0) __PYX_ERR(1, 240, __pyx_L10_error)
|
|
26423
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_array_type, __pyx_mstate_global->__pyx_n_u_count, __pyx_t_5) < (0)) __PYX_ERR(1, 240, __pyx_L10_error)
|
|
26412
26424
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26413
26425
|
|
|
26414
26426
|
/* "View.MemoryView":241
|
|
@@ -26420,7 +26432,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26420
26432
|
*/
|
|
26421
26433
|
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_index); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 241, __pyx_L10_error)
|
|
26422
26434
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26423
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_array_type, __pyx_mstate_global->__pyx_n_u_index, __pyx_t_5) < 0) __PYX_ERR(1, 241, __pyx_L10_error)
|
|
26435
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_array_type, __pyx_mstate_global->__pyx_n_u_index, __pyx_t_5) < (0)) __PYX_ERR(1, 241, __pyx_L10_error)
|
|
26424
26436
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26425
26437
|
|
|
26426
26438
|
/* "View.MemoryView":239
|
|
@@ -26630,7 +26642,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26630
26642
|
*/
|
|
26631
26643
|
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_count); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 983, __pyx_L18_error)
|
|
26632
26644
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26633
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_memoryviewslice_type, __pyx_mstate_global->__pyx_n_u_count, __pyx_t_5) < 0) __PYX_ERR(1, 983, __pyx_L18_error)
|
|
26645
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_memoryviewslice_type, __pyx_mstate_global->__pyx_n_u_count, __pyx_t_5) < (0)) __PYX_ERR(1, 983, __pyx_L18_error)
|
|
26634
26646
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26635
26647
|
|
|
26636
26648
|
/* "View.MemoryView":984
|
|
@@ -26642,7 +26654,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26642
26654
|
*/
|
|
26643
26655
|
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_index); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 984, __pyx_L18_error)
|
|
26644
26656
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26645
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_memoryviewslice_type, __pyx_mstate_global->__pyx_n_u_index, __pyx_t_5) < 0) __PYX_ERR(1, 984, __pyx_L18_error)
|
|
26657
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_memoryviewslice_type, __pyx_mstate_global->__pyx_n_u_index, __pyx_t_5) < (0)) __PYX_ERR(1, 984, __pyx_L18_error)
|
|
26646
26658
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26647
26659
|
|
|
26648
26660
|
/* "View.MemoryView":982
|
|
@@ -26797,7 +26809,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26797
26809
|
*/
|
|
26798
26810
|
__pyx_t_5 = PyCFunction_NewEx(&__pyx_mdef_15View_dot_MemoryView_1__pyx_unpickle_Enum, NULL, __pyx_mstate_global->__pyx_n_u_View_MemoryView); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26799
26811
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26800
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle_Enum, __pyx_t_5) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26812
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle_Enum, __pyx_t_5) < (0)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26801
26813
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26802
26814
|
|
|
26803
26815
|
/* "obliquetree/src/base.pyx":2
|
|
@@ -26808,7 +26820,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26808
26820
|
*/
|
|
26809
26821
|
__pyx_t_5 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 2, __pyx_L1_error)
|
|
26810
26822
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26811
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_5) < 0) __PYX_ERR(0, 2, __pyx_L1_error)
|
|
26823
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_5) < (0)) __PYX_ERR(0, 2, __pyx_L1_error)
|
|
26812
26824
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26813
26825
|
|
|
26814
26826
|
/* "obliquetree/src/base.pyx":76
|
|
@@ -26820,7 +26832,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26820
26832
|
*/
|
|
26821
26833
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_11obliquetree_3src_4base_14TreeClassifier_7__getstate__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_TreeClassifier___getstate, NULL, __pyx_mstate_global->__pyx_n_u_obliquetree_src_base, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 76, __pyx_L1_error)
|
|
26822
26834
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26823
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier, __pyx_mstate_global->__pyx_n_u_getstate, __pyx_t_5) < 0) __PYX_ERR(0, 76, __pyx_L1_error)
|
|
26835
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier, __pyx_mstate_global->__pyx_n_u_getstate, __pyx_t_5) < (0)) __PYX_ERR(0, 76, __pyx_L1_error)
|
|
26824
26836
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26825
26837
|
|
|
26826
26838
|
/* "obliquetree/src/base.pyx":79
|
|
@@ -26832,7 +26844,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26832
26844
|
*/
|
|
26833
26845
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_11obliquetree_3src_4base_14TreeClassifier_9__setstate__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_TreeClassifier___setstate, NULL, __pyx_mstate_global->__pyx_n_u_obliquetree_src_base, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[1])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 79, __pyx_L1_error)
|
|
26834
26846
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26835
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier, __pyx_mstate_global->__pyx_n_u_setstate, __pyx_t_5) < 0) __PYX_ERR(0, 79, __pyx_L1_error)
|
|
26847
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier, __pyx_mstate_global->__pyx_n_u_setstate, __pyx_t_5) < (0)) __PYX_ERR(0, 79, __pyx_L1_error)
|
|
26836
26848
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26837
26849
|
|
|
26838
26850
|
/* "obliquetree/src/base.pyx":106
|
|
@@ -26844,7 +26856,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26844
26856
|
*/
|
|
26845
26857
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_11obliquetree_3src_4base_14TreeClassifier_11fit, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_TreeClassifier_fit, NULL, __pyx_mstate_global->__pyx_n_u_obliquetree_src_base, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[2])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 106, __pyx_L1_error)
|
|
26846
26858
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26847
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier, __pyx_mstate_global->__pyx_n_u_fit, __pyx_t_5) < 0) __PYX_ERR(0, 106, __pyx_L1_error)
|
|
26859
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier, __pyx_mstate_global->__pyx_n_u_fit, __pyx_t_5) < (0)) __PYX_ERR(0, 106, __pyx_L1_error)
|
|
26848
26860
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26849
26861
|
|
|
26850
26862
|
/* "obliquetree/src/base.pyx":216
|
|
@@ -26856,7 +26868,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26856
26868
|
*/
|
|
26857
26869
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_11obliquetree_3src_4base_14TreeClassifier_13predict, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_TreeClassifier_predict, NULL, __pyx_mstate_global->__pyx_n_u_obliquetree_src_base, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[3])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 216, __pyx_L1_error)
|
|
26858
26870
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26859
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier, __pyx_mstate_global->__pyx_n_u_predict, __pyx_t_5) < 0) __PYX_ERR(0, 216, __pyx_L1_error)
|
|
26871
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier, __pyx_mstate_global->__pyx_n_u_predict, __pyx_t_5) < (0)) __PYX_ERR(0, 216, __pyx_L1_error)
|
|
26860
26872
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26861
26873
|
|
|
26862
26874
|
/* "(tree fragment)":1
|
|
@@ -26866,7 +26878,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26866
26878
|
*/
|
|
26867
26879
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_11obliquetree_3src_4base_14TreeClassifier_15__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_TreeClassifier___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_obliquetree_src_base, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[4])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26868
26880
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26869
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_5) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26881
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_5) < (0)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26870
26882
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26871
26883
|
|
|
26872
26884
|
/* "(tree fragment)":3
|
|
@@ -26877,7 +26889,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26877
26889
|
*/
|
|
26878
26890
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_11obliquetree_3src_4base_14TreeClassifier_17__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_TreeClassifier___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_obliquetree_src_base, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[5])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
26879
26891
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26880
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_5) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
26892
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_5) < (0)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
26881
26893
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26882
26894
|
|
|
26883
26895
|
/* "obliquetree/src/base.pyx":1
|
|
@@ -26887,7 +26899,7 @@ __Pyx_RefNannySetupContext("PyInit_base", 0);
|
|
|
26887
26899
|
*/
|
|
26888
26900
|
__pyx_t_5 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26889
26901
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26890
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_5) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26902
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_5) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26891
26903
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
26892
26904
|
|
|
26893
26905
|
/*--- Wrapped vars code ---*/
|
|
@@ -27524,7 +27536,7 @@ __Pyx_PyTuple_FromArray(PyObject *const *src, Py_ssize_t n)
|
|
|
27524
27536
|
res = PyTuple_New(n);
|
|
27525
27537
|
if (unlikely(res == NULL)) return NULL;
|
|
27526
27538
|
for (i = 0; i < n; i++) {
|
|
27527
|
-
if (unlikely(__Pyx_PyTuple_SET_ITEM(res, i, src[i]) < 0)) {
|
|
27539
|
+
if (unlikely(__Pyx_PyTuple_SET_ITEM(res, i, src[i]) < (0))) {
|
|
27528
27540
|
Py_DECREF(res);
|
|
27529
27541
|
return NULL;
|
|
27530
27542
|
}
|
|
@@ -30940,6 +30952,7 @@ static PyObject *__Pyx_GetTypeDict(PyTypeObject *tp) {
|
|
|
30940
30952
|
changed = 1;
|
|
30941
30953
|
}
|
|
30942
30954
|
#endif // CYTHON_METH_FASTCALL
|
|
30955
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
30943
30956
|
else if (strcmp(memb->name, "__module__") == 0) {
|
|
30944
30957
|
PyObject *descr;
|
|
30945
30958
|
assert(memb->type == T_OBJECT);
|
|
@@ -30954,11 +30967,13 @@ static PyObject *__Pyx_GetTypeDict(PyTypeObject *tp) {
|
|
|
30954
30967
|
}
|
|
30955
30968
|
changed = 1;
|
|
30956
30969
|
}
|
|
30970
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
30957
30971
|
}
|
|
30958
30972
|
memb++;
|
|
30959
30973
|
}
|
|
30960
30974
|
}
|
|
30961
30975
|
#endif // !CYTHON_COMPILING_IN_LIMITED_API
|
|
30976
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
30962
30977
|
slot = spec->slots;
|
|
30963
30978
|
while (slot && slot->slot && slot->slot != Py_tp_getset)
|
|
30964
30979
|
slot++;
|
|
@@ -30990,6 +31005,7 @@ static PyObject *__Pyx_GetTypeDict(PyTypeObject *tp) {
|
|
|
30990
31005
|
++getset;
|
|
30991
31006
|
}
|
|
30992
31007
|
}
|
|
31008
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
30993
31009
|
if (changed)
|
|
30994
31010
|
PyType_Modified(type);
|
|
30995
31011
|
#endif // PY_VERSION_HEX > 0x030900B1
|
|
@@ -31094,6 +31110,13 @@ try_unpack:
|
|
|
31094
31110
|
|
|
31095
31111
|
/* PyObjectCallMethod0 */
|
|
31096
31112
|
static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
|
|
31113
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
31114
|
+
PyObject *args[1] = {obj};
|
|
31115
|
+
(void) __Pyx_PyObject_GetMethod;
|
|
31116
|
+
(void) __Pyx_PyObject_CallOneArg;
|
|
31117
|
+
(void) __Pyx_PyObject_CallNoArg;
|
|
31118
|
+
return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
|
|
31119
|
+
#else
|
|
31097
31120
|
PyObject *method = NULL, *result = NULL;
|
|
31098
31121
|
int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
|
|
31099
31122
|
if (likely(is_method)) {
|
|
@@ -31106,6 +31129,7 @@ try_unpack:
|
|
|
31106
31129
|
Py_DECREF(method);
|
|
31107
31130
|
bad:
|
|
31108
31131
|
return result;
|
|
31132
|
+
#endif
|
|
31109
31133
|
}
|
|
31110
31134
|
|
|
31111
31135
|
/* ValidateBasesTuple */
|
|
@@ -31535,15 +31559,15 @@ __PYX_GOOD:
|
|
|
31535
31559
|
}
|
|
31536
31560
|
|
|
31537
31561
|
/* TypeImport */
|
|
31538
|
-
#ifndef
|
|
31539
|
-
#define
|
|
31540
|
-
static PyTypeObject *
|
|
31541
|
-
size_t size, size_t alignment, enum
|
|
31562
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_6
|
|
31563
|
+
#define __PYX_HAVE_RT_ImportType_3_1_6
|
|
31564
|
+
static PyTypeObject *__Pyx_ImportType_3_1_6(PyObject *module, const char *module_name, const char *class_name,
|
|
31565
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_6 check_size)
|
|
31542
31566
|
{
|
|
31543
31567
|
PyObject *result = 0;
|
|
31544
31568
|
Py_ssize_t basicsize;
|
|
31545
31569
|
Py_ssize_t itemsize;
|
|
31546
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
31570
|
+
#if defined(Py_LIMITED_API) || (defined(CYTHON_COMPILING_IN_LIMITED_API) && CYTHON_COMPILING_IN_LIMITED_API)
|
|
31547
31571
|
PyObject *py_basicsize;
|
|
31548
31572
|
PyObject *py_itemsize;
|
|
31549
31573
|
#endif
|
|
@@ -31556,7 +31580,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
31556
31580
|
module_name, class_name);
|
|
31557
31581
|
goto bad;
|
|
31558
31582
|
}
|
|
31559
|
-
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
31583
|
+
#if !( defined(Py_LIMITED_API) || (defined(CYTHON_COMPILING_IN_LIMITED_API) && CYTHON_COMPILING_IN_LIMITED_API) )
|
|
31560
31584
|
basicsize = ((PyTypeObject *)result)->tp_basicsize;
|
|
31561
31585
|
itemsize = ((PyTypeObject *)result)->tp_itemsize;
|
|
31562
31586
|
#else
|
|
@@ -31594,7 +31618,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
31594
31618
|
module_name, class_name, size, basicsize+itemsize);
|
|
31595
31619
|
goto bad;
|
|
31596
31620
|
}
|
|
31597
|
-
if (check_size ==
|
|
31621
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_6 &&
|
|
31598
31622
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
31599
31623
|
PyErr_Format(PyExc_ValueError,
|
|
31600
31624
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -31602,7 +31626,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
31602
31626
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
31603
31627
|
goto bad;
|
|
31604
31628
|
}
|
|
31605
|
-
else if (check_size ==
|
|
31629
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_6 && (size_t)basicsize > size) {
|
|
31606
31630
|
if (PyErr_WarnFormat(NULL, 0,
|
|
31607
31631
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
31608
31632
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -31743,7 +31767,7 @@ bad:
|
|
|
31743
31767
|
}
|
|
31744
31768
|
|
|
31745
31769
|
/* CommonTypesMetaclass */
|
|
31746
|
-
PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
31770
|
+
static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
|
31747
31771
|
return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
|
|
31748
31772
|
}
|
|
31749
31773
|
static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
|
|
@@ -31772,6 +31796,7 @@ static int __pyx_CommonTypesMetaclass_init(PyObject *module) {
|
|
|
31772
31796
|
return -1;
|
|
31773
31797
|
}
|
|
31774
31798
|
mstate->__pyx_CommonTypesMetaclassType = __Pyx_FetchCommonTypeFromSpec(NULL, module, &__pyx_CommonTypesMetaclass_spec, bases);
|
|
31799
|
+
Py_DECREF(bases);
|
|
31775
31800
|
if (unlikely(mstate->__pyx_CommonTypesMetaclassType == NULL)) {
|
|
31776
31801
|
return -1;
|
|
31777
31802
|
}
|
|
@@ -35596,9 +35621,9 @@ __Pyx_PyType_GetFullyQualifiedName(PyTypeObject* tp)
|
|
|
35596
35621
|
}
|
|
35597
35622
|
|
|
35598
35623
|
/* FunctionImport */
|
|
35599
|
-
#ifndef
|
|
35600
|
-
#define
|
|
35601
|
-
static int
|
|
35624
|
+
#ifndef __PYX_HAVE_RT_ImportFunction_3_1_6
|
|
35625
|
+
#define __PYX_HAVE_RT_ImportFunction_3_1_6
|
|
35626
|
+
static int __Pyx_ImportFunction_3_1_6(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
|
|
35602
35627
|
PyObject *d = 0;
|
|
35603
35628
|
PyObject *cobj = 0;
|
|
35604
35629
|
union {
|
|
@@ -35700,6 +35725,10 @@ bad:
|
|
|
35700
35725
|
PyCode_NewWithPosOnlyArgs
|
|
35701
35726
|
#endif
|
|
35702
35727
|
(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, name, fline, lnos, __pyx_mstate_global->__pyx_empty_bytes);
|
|
35728
|
+
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030c00A1
|
|
35729
|
+
if (likely(result))
|
|
35730
|
+
result->_co_firsttraceable = 0;
|
|
35731
|
+
#endif
|
|
35703
35732
|
return result;
|
|
35704
35733
|
}
|
|
35705
35734
|
#elif PY_VERSION_HEX >= 0x030800B2 && !CYTHON_COMPILING_IN_PYPY
|
|
@@ -36027,6 +36056,17 @@ static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) {
|
|
|
36027
36056
|
static CYTHON_INLINE PyObject * __Pyx_PyLong_FromSize_t(size_t ival) {
|
|
36028
36057
|
return PyLong_FromSize_t(ival);
|
|
36029
36058
|
}
|
|
36059
|
+
#if CYTHON_USE_PYLONG_INTERNALS
|
|
36060
|
+
static CYTHON_INLINE int __Pyx_PyLong_CompactAsLong(PyObject *x, long *return_value) {
|
|
36061
|
+
if (unlikely(!__Pyx_PyLong_IsCompact(x)))
|
|
36062
|
+
return 0;
|
|
36063
|
+
Py_ssize_t value = __Pyx_PyLong_CompactValue(x);
|
|
36064
|
+
if ((sizeof(long) < sizeof(Py_ssize_t)) && unlikely(value != (long) value))
|
|
36065
|
+
return 0;
|
|
36066
|
+
*return_value = (long) value;
|
|
36067
|
+
return 1;
|
|
36068
|
+
}
|
|
36069
|
+
#endif
|
|
36030
36070
|
|
|
36031
36071
|
|
|
36032
36072
|
/* MultiPhaseInitModuleState */
|