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