edsger 0.1.3__cp39-cp39-macosx_11_0_arm64.whl → 0.1.5__cp39-cp39-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- edsger/_version.py +1 -1
- edsger/bellman_ford.c +34925 -0
- edsger/bellman_ford.cpython-39-darwin.so +0 -0
- edsger/bellman_ford.pyx +544 -0
- edsger/commons.c +248 -245
- edsger/commons.cpython-39-darwin.so +0 -0
- edsger/dijkstra.c +279 -264
- edsger/dijkstra.cpython-39-darwin.so +0 -0
- edsger/path.py +622 -23
- edsger/path_tracking.c +261 -246
- edsger/path_tracking.cpython-39-darwin.so +0 -0
- edsger/pq_4ary_dec_0b.c +269 -254
- edsger/pq_4ary_dec_0b.cpython-39-darwin.so +0 -0
- edsger/spiess_florian.c +278 -263
- edsger/spiess_florian.cpython-39-darwin.so +0 -0
- edsger/star.c +261 -246
- edsger/star.cpython-39-darwin.so +0 -0
- edsger/utils.py +68 -4
- {edsger-0.1.3.dist-info → edsger-0.1.5.dist-info}/METADATA +69 -5
- edsger-0.1.5.dist-info/RECORD +36 -0
- edsger-0.1.3.dist-info/RECORD +0 -33
- {edsger-0.1.3.dist-info → edsger-0.1.5.dist-info}/WHEEL +0 -0
- {edsger-0.1.3.dist-info → edsger-0.1.5.dist-info}/licenses/AUTHORS.rst +0 -0
- {edsger-0.1.3.dist-info → edsger-0.1.5.dist-info}/licenses/LICENSE +0 -0
- {edsger-0.1.3.dist-info → edsger-0.1.5.dist-info}/top_level.txt +0 -0
edsger/dijkstra.c
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
/* Generated by Cython 3.1.
|
1
|
+
/* Generated by Cython 3.1.3 */
|
2
2
|
|
3
3
|
/* BEGIN: Cython Metadata
|
4
4
|
{
|
@@ -45,8 +45,8 @@ END: Cython Metadata */
|
|
45
45
|
#elif PY_VERSION_HEX < 0x03080000
|
46
46
|
#error Cython requires Python 3.8+.
|
47
47
|
#else
|
48
|
-
#define __PYX_ABI_VERSION "
|
49
|
-
#define CYTHON_HEX_VERSION
|
48
|
+
#define __PYX_ABI_VERSION "3_1_3"
|
49
|
+
#define CYTHON_HEX_VERSION 0x030103F0
|
50
50
|
#define CYTHON_FUTURE_DIVISION 1
|
51
51
|
/* CModulePreamble */
|
52
52
|
#include <stddef.h>
|
@@ -409,6 +409,9 @@ END: Cython Metadata */
|
|
409
409
|
enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
|
410
410
|
#endif
|
411
411
|
#endif
|
412
|
+
#ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
|
413
|
+
#define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
|
414
|
+
#endif
|
412
415
|
#ifndef __has_attribute
|
413
416
|
#define __has_attribute(x) 0
|
414
417
|
#endif
|
@@ -1390,7 +1393,7 @@ static const char *__pyx_filename;
|
|
1390
1393
|
static const char* const __pyx_f[] = {
|
1391
1394
|
"src/edsger/dijkstra.pyx",
|
1392
1395
|
"<stringsource>",
|
1393
|
-
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1396
|
+
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd",
|
1394
1397
|
"cpython/type.pxd",
|
1395
1398
|
};
|
1396
1399
|
/* #### Code section: utility_code_proto_before_types ### */
|
@@ -1613,7 +1616,7 @@ typedef struct {
|
|
1613
1616
|
|
1614
1617
|
/* #### Code section: numeric_typedefs ### */
|
1615
1618
|
|
1616
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1619
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":770
|
1617
1620
|
* # in Cython to enable them only on the right systems.
|
1618
1621
|
*
|
1619
1622
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
@@ -1622,7 +1625,7 @@ typedef struct {
|
|
1622
1625
|
*/
|
1623
1626
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
1624
1627
|
|
1625
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1628
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":771
|
1626
1629
|
*
|
1627
1630
|
* ctypedef npy_int8 int8_t
|
1628
1631
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
@@ -1631,7 +1634,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1631
1634
|
*/
|
1632
1635
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
1633
1636
|
|
1634
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1637
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":772
|
1635
1638
|
* ctypedef npy_int8 int8_t
|
1636
1639
|
* ctypedef npy_int16 int16_t
|
1637
1640
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
@@ -1640,7 +1643,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1640
1643
|
*/
|
1641
1644
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
1642
1645
|
|
1643
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1646
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":773
|
1644
1647
|
* ctypedef npy_int16 int16_t
|
1645
1648
|
* ctypedef npy_int32 int32_t
|
1646
1649
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
@@ -1649,7 +1652,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1649
1652
|
*/
|
1650
1653
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
1651
1654
|
|
1652
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1655
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":777
|
1653
1656
|
* #ctypedef npy_int128 int128_t
|
1654
1657
|
*
|
1655
1658
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
@@ -1658,7 +1661,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1658
1661
|
*/
|
1659
1662
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
1660
1663
|
|
1661
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1664
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":778
|
1662
1665
|
*
|
1663
1666
|
* ctypedef npy_uint8 uint8_t
|
1664
1667
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
@@ -1667,7 +1670,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1667
1670
|
*/
|
1668
1671
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
1669
1672
|
|
1670
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1673
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":779
|
1671
1674
|
* ctypedef npy_uint8 uint8_t
|
1672
1675
|
* ctypedef npy_uint16 uint16_t
|
1673
1676
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
@@ -1676,7 +1679,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1676
1679
|
*/
|
1677
1680
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
1678
1681
|
|
1679
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1682
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":780
|
1680
1683
|
* ctypedef npy_uint16 uint16_t
|
1681
1684
|
* ctypedef npy_uint32 uint32_t
|
1682
1685
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
@@ -1685,7 +1688,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1685
1688
|
*/
|
1686
1689
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
1687
1690
|
|
1688
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1691
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":784
|
1689
1692
|
* #ctypedef npy_uint128 uint128_t
|
1690
1693
|
*
|
1691
1694
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
@@ -1694,7 +1697,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1694
1697
|
*/
|
1695
1698
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
1696
1699
|
|
1697
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1700
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":785
|
1698
1701
|
*
|
1699
1702
|
* ctypedef npy_float32 float32_t
|
1700
1703
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
@@ -1703,7 +1706,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1703
1706
|
*/
|
1704
1707
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
1705
1708
|
|
1706
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1709
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":792
|
1707
1710
|
* ctypedef double complex complex128_t
|
1708
1711
|
*
|
1709
1712
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
@@ -1712,7 +1715,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1712
1715
|
*/
|
1713
1716
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
1714
1717
|
|
1715
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1718
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":793
|
1716
1719
|
*
|
1717
1720
|
* ctypedef npy_longlong longlong_t
|
1718
1721
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
@@ -1721,7 +1724,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1721
1724
|
*/
|
1722
1725
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
1723
1726
|
|
1724
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1727
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":795
|
1725
1728
|
* ctypedef npy_ulonglong ulonglong_t
|
1726
1729
|
*
|
1727
1730
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
@@ -1730,7 +1733,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1730
1733
|
*/
|
1731
1734
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
1732
1735
|
|
1733
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1736
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":796
|
1734
1737
|
*
|
1735
1738
|
* ctypedef npy_intp intp_t
|
1736
1739
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
@@ -1739,7 +1742,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1739
1742
|
*/
|
1740
1743
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
1741
1744
|
|
1742
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1745
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":798
|
1743
1746
|
* ctypedef npy_uintp uintp_t
|
1744
1747
|
*
|
1745
1748
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
@@ -1748,7 +1751,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1748
1751
|
*/
|
1749
1752
|
typedef npy_double __pyx_t_5numpy_float_t;
|
1750
1753
|
|
1751
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1754
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":799
|
1752
1755
|
*
|
1753
1756
|
* ctypedef npy_double float_t
|
1754
1757
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
@@ -1757,7 +1760,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
1757
1760
|
*/
|
1758
1761
|
typedef npy_double __pyx_t_5numpy_double_t;
|
1759
1762
|
|
1760
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1763
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":800
|
1761
1764
|
* ctypedef npy_double float_t
|
1762
1765
|
* ctypedef npy_double double_t
|
1763
1766
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
@@ -1819,7 +1822,7 @@ struct __pyx_MemviewEnum_obj;
|
|
1819
1822
|
struct __pyx_memoryview_obj;
|
1820
1823
|
struct __pyx_memoryviewslice_obj;
|
1821
1824
|
|
1822
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1825
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1096
|
1823
1826
|
*
|
1824
1827
|
* # Iterator API added in v1.6
|
1825
1828
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil # <<<<<<<<<<<<<<
|
@@ -1828,7 +1831,7 @@ struct __pyx_memoryviewslice_obj;
|
|
1828
1831
|
*/
|
1829
1832
|
typedef int (*__pyx_t_5numpy_NpyIter_IterNextFunc)(NpyIter *);
|
1830
1833
|
|
1831
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1834
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1097
|
1832
1835
|
* # Iterator API added in v1.6
|
1833
1836
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil
|
1834
1837
|
* ctypedef void (*NpyIter_GetMultiIndexFunc)(NpyIter* it, npy_intp* outcoords) noexcept nogil # <<<<<<<<<<<<<<
|
@@ -2717,22 +2720,22 @@ static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k);
|
|
2717
2720
|
static int __Pyx_setup_reduce(PyObject* type_obj);
|
2718
2721
|
|
2719
2722
|
/* TypeImport.proto */
|
2720
|
-
#ifndef
|
2721
|
-
#define
|
2723
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_3
|
2724
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_3
|
2722
2725
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
2723
2726
|
#include <stdalign.h>
|
2724
2727
|
#endif
|
2725
2728
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
2726
|
-
#define
|
2729
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) alignof(s)
|
2727
2730
|
#else
|
2728
|
-
#define
|
2731
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) sizeof(void*)
|
2729
2732
|
#endif
|
2730
|
-
enum
|
2731
|
-
|
2732
|
-
|
2733
|
-
|
2733
|
+
enum __Pyx_ImportType_CheckSize_3_1_3 {
|
2734
|
+
__Pyx_ImportType_CheckSize_Error_3_1_3 = 0,
|
2735
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3 = 1,
|
2736
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3 = 2
|
2734
2737
|
};
|
2735
|
-
static PyTypeObject *
|
2738
|
+
static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_3 check_size);
|
2736
2739
|
#endif
|
2737
2740
|
|
2738
2741
|
/* FetchSharedCythonModule.proto */
|
@@ -3150,10 +3153,10 @@ static unsigned long __Pyx_get_runtime_version(void);
|
|
3150
3153
|
static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer);
|
3151
3154
|
|
3152
3155
|
/* VoidPtrImport.proto */
|
3153
|
-
static int
|
3156
|
+
static int __Pyx_ImportVoidPtr_3_1_3(PyObject *module, const char *name, void **p, const char *sig);
|
3154
3157
|
|
3155
3158
|
/* FunctionImport.proto */
|
3156
|
-
static int
|
3159
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
|
3157
3160
|
|
3158
3161
|
/* MultiPhaseInitModuleState.proto */
|
3159
3162
|
#if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE
|
@@ -17355,7 +17358,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
17355
17358
|
return __pyx_r;
|
17356
17359
|
}
|
17357
17360
|
|
17358
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17361
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":285
|
17359
17362
|
* cdef int type_num
|
17360
17363
|
*
|
17361
17364
|
* @property # <<<<<<<<<<<<<<
|
@@ -17366,7 +17369,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
17366
17369
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
17367
17370
|
npy_intp __pyx_r;
|
17368
17371
|
|
17369
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17372
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":287
|
17370
17373
|
* @property
|
17371
17374
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
17372
17375
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
@@ -17376,7 +17379,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17376
17379
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
17377
17380
|
goto __pyx_L0;
|
17378
17381
|
|
17379
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17382
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":285
|
17380
17383
|
* cdef int type_num
|
17381
17384
|
*
|
17382
17385
|
* @property # <<<<<<<<<<<<<<
|
@@ -17389,7 +17392,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17389
17392
|
return __pyx_r;
|
17390
17393
|
}
|
17391
17394
|
|
17392
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17395
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":289
|
17393
17396
|
* return PyDataType_ELSIZE(self)
|
17394
17397
|
*
|
17395
17398
|
* @property # <<<<<<<<<<<<<<
|
@@ -17400,7 +17403,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17400
17403
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
17401
17404
|
npy_intp __pyx_r;
|
17402
17405
|
|
17403
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17406
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":291
|
17404
17407
|
* @property
|
17405
17408
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
17406
17409
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
@@ -17410,7 +17413,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
17410
17413
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
17411
17414
|
goto __pyx_L0;
|
17412
17415
|
|
17413
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17416
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":289
|
17414
17417
|
* return PyDataType_ELSIZE(self)
|
17415
17418
|
*
|
17416
17419
|
* @property # <<<<<<<<<<<<<<
|
@@ -17423,7 +17426,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
17423
17426
|
return __pyx_r;
|
17424
17427
|
}
|
17425
17428
|
|
17426
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17429
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":295
|
17427
17430
|
* # Use fields/names with care as they may be NULL. You must check
|
17428
17431
|
* # for this using PyDataType_HASFIELDS.
|
17429
17432
|
* @property # <<<<<<<<<<<<<<
|
@@ -17437,7 +17440,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17437
17440
|
PyObject *__pyx_t_1;
|
17438
17441
|
__Pyx_RefNannySetupContext("fields", 0);
|
17439
17442
|
|
17440
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17443
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":297
|
17441
17444
|
* @property
|
17442
17445
|
* cdef inline object fields(self):
|
17443
17446
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
@@ -17450,7 +17453,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17450
17453
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
17451
17454
|
goto __pyx_L0;
|
17452
17455
|
|
17453
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17456
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":295
|
17454
17457
|
* # Use fields/names with care as they may be NULL. You must check
|
17455
17458
|
* # for this using PyDataType_HASFIELDS.
|
17456
17459
|
* @property # <<<<<<<<<<<<<<
|
@@ -17465,7 +17468,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17465
17468
|
return __pyx_r;
|
17466
17469
|
}
|
17467
17470
|
|
17468
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17471
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":299
|
17469
17472
|
* return <object>PyDataType_FIELDS(self)
|
17470
17473
|
*
|
17471
17474
|
* @property # <<<<<<<<<<<<<<
|
@@ -17479,7 +17482,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17479
17482
|
PyObject *__pyx_t_1;
|
17480
17483
|
__Pyx_RefNannySetupContext("names", 0);
|
17481
17484
|
|
17482
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17485
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":301
|
17483
17486
|
* @property
|
17484
17487
|
* cdef inline tuple names(self):
|
17485
17488
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
@@ -17492,7 +17495,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17492
17495
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
17493
17496
|
goto __pyx_L0;
|
17494
17497
|
|
17495
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17498
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":299
|
17496
17499
|
* return <object>PyDataType_FIELDS(self)
|
17497
17500
|
*
|
17498
17501
|
* @property # <<<<<<<<<<<<<<
|
@@ -17507,7 +17510,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17507
17510
|
return __pyx_r;
|
17508
17511
|
}
|
17509
17512
|
|
17510
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17513
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":306
|
17511
17514
|
* # valid (the pointer can be NULL). Most users should access
|
17512
17515
|
* # this field via the inline helper method PyDataType_SHAPE.
|
17513
17516
|
* @property # <<<<<<<<<<<<<<
|
@@ -17518,7 +17521,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17518
17521
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
17519
17522
|
PyArray_ArrayDescr *__pyx_r;
|
17520
17523
|
|
17521
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17524
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":308
|
17522
17525
|
* @property
|
17523
17526
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
17524
17527
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
@@ -17528,7 +17531,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17528
17531
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
17529
17532
|
goto __pyx_L0;
|
17530
17533
|
|
17531
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17534
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":306
|
17532
17535
|
* # valid (the pointer can be NULL). Most users should access
|
17533
17536
|
* # this field via the inline helper method PyDataType_SHAPE.
|
17534
17537
|
* @property # <<<<<<<<<<<<<<
|
@@ -17541,7 +17544,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17541
17544
|
return __pyx_r;
|
17542
17545
|
}
|
17543
17546
|
|
17544
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17547
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":310
|
17545
17548
|
* return PyDataType_SUBARRAY(self)
|
17546
17549
|
*
|
17547
17550
|
* @property # <<<<<<<<<<<<<<
|
@@ -17552,7 +17555,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17552
17555
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
17553
17556
|
npy_uint64 __pyx_r;
|
17554
17557
|
|
17555
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17558
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":313
|
17556
17559
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
17557
17560
|
* """The data types flags."""
|
17558
17561
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
@@ -17562,7 +17565,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17562
17565
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
17563
17566
|
goto __pyx_L0;
|
17564
17567
|
|
17565
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17568
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":310
|
17566
17569
|
* return PyDataType_SUBARRAY(self)
|
17567
17570
|
*
|
17568
17571
|
* @property # <<<<<<<<<<<<<<
|
@@ -17575,7 +17578,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17575
17578
|
return __pyx_r;
|
17576
17579
|
}
|
17577
17580
|
|
17578
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17581
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":322
|
17579
17582
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
17580
17583
|
*
|
17581
17584
|
* @property # <<<<<<<<<<<<<<
|
@@ -17586,7 +17589,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17586
17589
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
17587
17590
|
int __pyx_r;
|
17588
17591
|
|
17589
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17592
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":325
|
17590
17593
|
* cdef inline int numiter(self) noexcept nogil:
|
17591
17594
|
* """The number of arrays that need to be broadcast to the same shape."""
|
17592
17595
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
@@ -17596,7 +17599,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17596
17599
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
17597
17600
|
goto __pyx_L0;
|
17598
17601
|
|
17599
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17602
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":322
|
17600
17603
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
17601
17604
|
*
|
17602
17605
|
* @property # <<<<<<<<<<<<<<
|
@@ -17609,7 +17612,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17609
17612
|
return __pyx_r;
|
17610
17613
|
}
|
17611
17614
|
|
17612
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17615
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":327
|
17613
17616
|
* return PyArray_MultiIter_NUMITER(self)
|
17614
17617
|
*
|
17615
17618
|
* @property # <<<<<<<<<<<<<<
|
@@ -17620,7 +17623,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17620
17623
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
17621
17624
|
npy_intp __pyx_r;
|
17622
17625
|
|
17623
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17626
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":330
|
17624
17627
|
* cdef inline npy_intp size(self) noexcept nogil:
|
17625
17628
|
* """The total broadcasted size."""
|
17626
17629
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -17630,7 +17633,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17630
17633
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
17631
17634
|
goto __pyx_L0;
|
17632
17635
|
|
17633
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17636
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":327
|
17634
17637
|
* return PyArray_MultiIter_NUMITER(self)
|
17635
17638
|
*
|
17636
17639
|
* @property # <<<<<<<<<<<<<<
|
@@ -17643,7 +17646,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17643
17646
|
return __pyx_r;
|
17644
17647
|
}
|
17645
17648
|
|
17646
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17649
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":332
|
17647
17650
|
* return PyArray_MultiIter_SIZE(self)
|
17648
17651
|
*
|
17649
17652
|
* @property # <<<<<<<<<<<<<<
|
@@ -17654,7 +17657,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17654
17657
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
17655
17658
|
npy_intp __pyx_r;
|
17656
17659
|
|
17657
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17660
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":335
|
17658
17661
|
* cdef inline npy_intp index(self) noexcept nogil:
|
17659
17662
|
* """The current (1-d) index into the broadcasted result."""
|
17660
17663
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
@@ -17664,7 +17667,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17664
17667
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
17665
17668
|
goto __pyx_L0;
|
17666
17669
|
|
17667
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17670
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":332
|
17668
17671
|
* return PyArray_MultiIter_SIZE(self)
|
17669
17672
|
*
|
17670
17673
|
* @property # <<<<<<<<<<<<<<
|
@@ -17677,7 +17680,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17677
17680
|
return __pyx_r;
|
17678
17681
|
}
|
17679
17682
|
|
17680
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17683
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":337
|
17681
17684
|
* return PyArray_MultiIter_INDEX(self)
|
17682
17685
|
*
|
17683
17686
|
* @property # <<<<<<<<<<<<<<
|
@@ -17688,7 +17691,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17688
17691
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
17689
17692
|
int __pyx_r;
|
17690
17693
|
|
17691
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17694
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":340
|
17692
17695
|
* cdef inline int nd(self) noexcept nogil:
|
17693
17696
|
* """The number of dimensions in the broadcasted result."""
|
17694
17697
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -17698,7 +17701,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17698
17701
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
17699
17702
|
goto __pyx_L0;
|
17700
17703
|
|
17701
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17704
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":337
|
17702
17705
|
* return PyArray_MultiIter_INDEX(self)
|
17703
17706
|
*
|
17704
17707
|
* @property # <<<<<<<<<<<<<<
|
@@ -17711,7 +17714,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17711
17714
|
return __pyx_r;
|
17712
17715
|
}
|
17713
17716
|
|
17714
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17717
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":342
|
17715
17718
|
* return PyArray_MultiIter_NDIM(self)
|
17716
17719
|
*
|
17717
17720
|
* @property # <<<<<<<<<<<<<<
|
@@ -17722,7 +17725,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17722
17725
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
17723
17726
|
npy_intp *__pyx_r;
|
17724
17727
|
|
17725
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17728
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":345
|
17726
17729
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
17727
17730
|
* """The shape of the broadcasted result."""
|
17728
17731
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -17732,7 +17735,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17732
17735
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
17733
17736
|
goto __pyx_L0;
|
17734
17737
|
|
17735
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17738
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":342
|
17736
17739
|
* return PyArray_MultiIter_NDIM(self)
|
17737
17740
|
*
|
17738
17741
|
* @property # <<<<<<<<<<<<<<
|
@@ -17745,7 +17748,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17745
17748
|
return __pyx_r;
|
17746
17749
|
}
|
17747
17750
|
|
17748
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17751
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":347
|
17749
17752
|
* return PyArray_MultiIter_DIMS(self)
|
17750
17753
|
*
|
17751
17754
|
* @property # <<<<<<<<<<<<<<
|
@@ -17756,7 +17759,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17756
17759
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
17757
17760
|
void **__pyx_r;
|
17758
17761
|
|
17759
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17762
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":351
|
17760
17763
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
17761
17764
|
* On return, the iterators are adjusted for broadcasting."""
|
17762
17765
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
@@ -17766,7 +17769,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17766
17769
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
17767
17770
|
goto __pyx_L0;
|
17768
17771
|
|
17769
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17772
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":347
|
17770
17773
|
* return PyArray_MultiIter_DIMS(self)
|
17771
17774
|
*
|
17772
17775
|
* @property # <<<<<<<<<<<<<<
|
@@ -17779,7 +17782,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17779
17782
|
return __pyx_r;
|
17780
17783
|
}
|
17781
17784
|
|
17782
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17785
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":365
|
17783
17786
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
17784
17787
|
*
|
17785
17788
|
* @property # <<<<<<<<<<<<<<
|
@@ -17790,7 +17793,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17790
17793
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
17791
17794
|
PyObject *__pyx_r;
|
17792
17795
|
|
17793
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17796
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":369
|
17794
17797
|
* """Returns a borrowed reference to the object owning the data/memory.
|
17795
17798
|
* """
|
17796
17799
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
@@ -17800,7 +17803,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
17800
17803
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
17801
17804
|
goto __pyx_L0;
|
17802
17805
|
|
17803
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17806
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":365
|
17804
17807
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
17805
17808
|
*
|
17806
17809
|
* @property # <<<<<<<<<<<<<<
|
@@ -17813,7 +17816,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
17813
17816
|
return __pyx_r;
|
17814
17817
|
}
|
17815
17818
|
|
17816
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17819
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":371
|
17817
17820
|
* return PyArray_BASE(self)
|
17818
17821
|
*
|
17819
17822
|
* @property # <<<<<<<<<<<<<<
|
@@ -17827,7 +17830,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17827
17830
|
PyArray_Descr *__pyx_t_1;
|
17828
17831
|
__Pyx_RefNannySetupContext("descr", 0);
|
17829
17832
|
|
17830
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17833
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":375
|
17831
17834
|
* """Returns an owned reference to the dtype of the array.
|
17832
17835
|
* """
|
17833
17836
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
@@ -17840,7 +17843,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17840
17843
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
17841
17844
|
goto __pyx_L0;
|
17842
17845
|
|
17843
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17846
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":371
|
17844
17847
|
* return PyArray_BASE(self)
|
17845
17848
|
*
|
17846
17849
|
* @property # <<<<<<<<<<<<<<
|
@@ -17855,7 +17858,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17855
17858
|
return __pyx_r;
|
17856
17859
|
}
|
17857
17860
|
|
17858
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17861
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":377
|
17859
17862
|
* return <dtype>PyArray_DESCR(self)
|
17860
17863
|
*
|
17861
17864
|
* @property # <<<<<<<<<<<<<<
|
@@ -17866,7 +17869,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17866
17869
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
17867
17870
|
int __pyx_r;
|
17868
17871
|
|
17869
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17872
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":381
|
17870
17873
|
* """Returns the number of dimensions in the array.
|
17871
17874
|
* """
|
17872
17875
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -17876,7 +17879,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17876
17879
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
17877
17880
|
goto __pyx_L0;
|
17878
17881
|
|
17879
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17882
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":377
|
17880
17883
|
* return <dtype>PyArray_DESCR(self)
|
17881
17884
|
*
|
17882
17885
|
* @property # <<<<<<<<<<<<<<
|
@@ -17889,7 +17892,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17889
17892
|
return __pyx_r;
|
17890
17893
|
}
|
17891
17894
|
|
17892
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17895
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":383
|
17893
17896
|
* return PyArray_NDIM(self)
|
17894
17897
|
*
|
17895
17898
|
* @property # <<<<<<<<<<<<<<
|
@@ -17900,7 +17903,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17900
17903
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
17901
17904
|
npy_intp *__pyx_r;
|
17902
17905
|
|
17903
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17906
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":389
|
17904
17907
|
* Can return NULL for 0-dimensional arrays.
|
17905
17908
|
* """
|
17906
17909
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -17910,7 +17913,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17910
17913
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
17911
17914
|
goto __pyx_L0;
|
17912
17915
|
|
17913
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17916
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":383
|
17914
17917
|
* return PyArray_NDIM(self)
|
17915
17918
|
*
|
17916
17919
|
* @property # <<<<<<<<<<<<<<
|
@@ -17923,7 +17926,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17923
17926
|
return __pyx_r;
|
17924
17927
|
}
|
17925
17928
|
|
17926
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17929
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":391
|
17927
17930
|
* return PyArray_DIMS(self)
|
17928
17931
|
*
|
17929
17932
|
* @property # <<<<<<<<<<<<<<
|
@@ -17934,7 +17937,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17934
17937
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
17935
17938
|
npy_intp *__pyx_r;
|
17936
17939
|
|
17937
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17940
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":396
|
17938
17941
|
* The number of elements matches the number of dimensions of the array (ndim).
|
17939
17942
|
* """
|
17940
17943
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
@@ -17944,7 +17947,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17944
17947
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
17945
17948
|
goto __pyx_L0;
|
17946
17949
|
|
17947
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17950
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":391
|
17948
17951
|
* return PyArray_DIMS(self)
|
17949
17952
|
*
|
17950
17953
|
* @property # <<<<<<<<<<<<<<
|
@@ -17957,7 +17960,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17957
17960
|
return __pyx_r;
|
17958
17961
|
}
|
17959
17962
|
|
17960
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17963
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":398
|
17961
17964
|
* return PyArray_STRIDES(self)
|
17962
17965
|
*
|
17963
17966
|
* @property # <<<<<<<<<<<<<<
|
@@ -17968,7 +17971,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17968
17971
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
17969
17972
|
npy_intp __pyx_r;
|
17970
17973
|
|
17971
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17974
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":402
|
17972
17975
|
* """Returns the total size (in number of elements) of the array.
|
17973
17976
|
* """
|
17974
17977
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -17978,7 +17981,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17978
17981
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
17979
17982
|
goto __pyx_L0;
|
17980
17983
|
|
17981
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17984
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":398
|
17982
17985
|
* return PyArray_STRIDES(self)
|
17983
17986
|
*
|
17984
17987
|
* @property # <<<<<<<<<<<<<<
|
@@ -17991,7 +17994,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17991
17994
|
return __pyx_r;
|
17992
17995
|
}
|
17993
17996
|
|
17994
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17997
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":404
|
17995
17998
|
* return PyArray_SIZE(self)
|
17996
17999
|
*
|
17997
18000
|
* @property # <<<<<<<<<<<<<<
|
@@ -18002,7 +18005,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
18002
18005
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
18003
18006
|
char *__pyx_r;
|
18004
18007
|
|
18005
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18008
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":411
|
18006
18009
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
18007
18010
|
* """
|
18008
18011
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
@@ -18012,7 +18015,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
18012
18015
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
18013
18016
|
goto __pyx_L0;
|
18014
18017
|
|
18015
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18018
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":404
|
18016
18019
|
* return PyArray_SIZE(self)
|
18017
18020
|
*
|
18018
18021
|
* @property # <<<<<<<<<<<<<<
|
@@ -18025,7 +18028,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
18025
18028
|
return __pyx_r;
|
18026
18029
|
}
|
18027
18030
|
|
18028
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18031
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":807
|
18029
18032
|
* ctypedef long double complex clongdouble_t
|
18030
18033
|
*
|
18031
18034
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -18042,7 +18045,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
18042
18045
|
int __pyx_clineno = 0;
|
18043
18046
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
18044
18047
|
|
18045
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18048
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":808
|
18046
18049
|
*
|
18047
18050
|
* cdef inline object PyArray_MultiIterNew1(a):
|
18048
18051
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
@@ -18056,7 +18059,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
18056
18059
|
__pyx_t_1 = 0;
|
18057
18060
|
goto __pyx_L0;
|
18058
18061
|
|
18059
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18062
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":807
|
18060
18063
|
* ctypedef long double complex clongdouble_t
|
18061
18064
|
*
|
18062
18065
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -18075,7 +18078,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
18075
18078
|
return __pyx_r;
|
18076
18079
|
}
|
18077
18080
|
|
18078
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18081
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":810
|
18079
18082
|
* return PyArray_MultiIterNew(1, <void*>a)
|
18080
18083
|
*
|
18081
18084
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -18092,7 +18095,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
18092
18095
|
int __pyx_clineno = 0;
|
18093
18096
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
18094
18097
|
|
18095
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18098
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":811
|
18096
18099
|
*
|
18097
18100
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
18098
18101
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
@@ -18106,7 +18109,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
18106
18109
|
__pyx_t_1 = 0;
|
18107
18110
|
goto __pyx_L0;
|
18108
18111
|
|
18109
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18112
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":810
|
18110
18113
|
* return PyArray_MultiIterNew(1, <void*>a)
|
18111
18114
|
*
|
18112
18115
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -18125,7 +18128,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
18125
18128
|
return __pyx_r;
|
18126
18129
|
}
|
18127
18130
|
|
18128
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18131
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":813
|
18129
18132
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
18130
18133
|
*
|
18131
18134
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -18142,7 +18145,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
18142
18145
|
int __pyx_clineno = 0;
|
18143
18146
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
18144
18147
|
|
18145
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18148
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":814
|
18146
18149
|
*
|
18147
18150
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
18148
18151
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
@@ -18156,7 +18159,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
18156
18159
|
__pyx_t_1 = 0;
|
18157
18160
|
goto __pyx_L0;
|
18158
18161
|
|
18159
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18162
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":813
|
18160
18163
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
18161
18164
|
*
|
18162
18165
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -18175,7 +18178,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
18175
18178
|
return __pyx_r;
|
18176
18179
|
}
|
18177
18180
|
|
18178
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18181
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":816
|
18179
18182
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
18180
18183
|
*
|
18181
18184
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -18192,7 +18195,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
18192
18195
|
int __pyx_clineno = 0;
|
18193
18196
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
18194
18197
|
|
18195
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18198
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":817
|
18196
18199
|
*
|
18197
18200
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
18198
18201
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
@@ -18206,7 +18209,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
18206
18209
|
__pyx_t_1 = 0;
|
18207
18210
|
goto __pyx_L0;
|
18208
18211
|
|
18209
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18212
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":816
|
18210
18213
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
18211
18214
|
*
|
18212
18215
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -18225,7 +18228,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
18225
18228
|
return __pyx_r;
|
18226
18229
|
}
|
18227
18230
|
|
18228
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18231
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":819
|
18229
18232
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
18230
18233
|
*
|
18231
18234
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -18242,7 +18245,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18242
18245
|
int __pyx_clineno = 0;
|
18243
18246
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
18244
18247
|
|
18245
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18248
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":820
|
18246
18249
|
*
|
18247
18250
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
18248
18251
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
@@ -18256,7 +18259,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18256
18259
|
__pyx_t_1 = 0;
|
18257
18260
|
goto __pyx_L0;
|
18258
18261
|
|
18259
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18262
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":819
|
18260
18263
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
18261
18264
|
*
|
18262
18265
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -18275,7 +18278,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18275
18278
|
return __pyx_r;
|
18276
18279
|
}
|
18277
18280
|
|
18278
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18281
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":822
|
18279
18282
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
18280
18283
|
*
|
18281
18284
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -18290,7 +18293,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18290
18293
|
PyObject *__pyx_t_2;
|
18291
18294
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
18292
18295
|
|
18293
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18296
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":823
|
18294
18297
|
*
|
18295
18298
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18296
18299
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -18300,7 +18303,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18300
18303
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
18301
18304
|
if (__pyx_t_1) {
|
18302
18305
|
|
18303
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18306
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":824
|
18304
18307
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18305
18308
|
* if PyDataType_HASSUBARRAY(d):
|
18306
18309
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
@@ -18313,7 +18316,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18313
18316
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
18314
18317
|
goto __pyx_L0;
|
18315
18318
|
|
18316
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18319
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":823
|
18317
18320
|
*
|
18318
18321
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18319
18322
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -18322,7 +18325,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18322
18325
|
*/
|
18323
18326
|
}
|
18324
18327
|
|
18325
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18328
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":826
|
18326
18329
|
* return <tuple>d.subarray.shape
|
18327
18330
|
* else:
|
18328
18331
|
* return () # <<<<<<<<<<<<<<
|
@@ -18336,7 +18339,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18336
18339
|
goto __pyx_L0;
|
18337
18340
|
}
|
18338
18341
|
|
18339
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18342
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":822
|
18340
18343
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
18341
18344
|
*
|
18342
18345
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -18351,7 +18354,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18351
18354
|
return __pyx_r;
|
18352
18355
|
}
|
18353
18356
|
|
18354
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18357
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1010
|
18355
18358
|
* int _import_umath() except -1
|
18356
18359
|
*
|
18357
18360
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -18365,7 +18368,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18365
18368
|
const char *__pyx_filename = NULL;
|
18366
18369
|
int __pyx_clineno = 0;
|
18367
18370
|
|
18368
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18371
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1011
|
18369
18372
|
*
|
18370
18373
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
18371
18374
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
@@ -18374,7 +18377,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18374
18377
|
*/
|
18375
18378
|
Py_INCREF(__pyx_v_base);
|
18376
18379
|
|
18377
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18380
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1012
|
18378
18381
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
18379
18382
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
18380
18383
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
@@ -18383,7 +18386,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18383
18386
|
*/
|
18384
18387
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 1012, __pyx_L1_error)
|
18385
18388
|
|
18386
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18389
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1010
|
18387
18390
|
* int _import_umath() except -1
|
18388
18391
|
*
|
18389
18392
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -18398,7 +18401,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18398
18401
|
__pyx_L0:;
|
18399
18402
|
}
|
18400
18403
|
|
18401
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18404
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1014
|
18402
18405
|
* PyArray_SetBaseObject(arr, base)
|
18403
18406
|
*
|
18404
18407
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -18413,7 +18416,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18413
18416
|
int __pyx_t_1;
|
18414
18417
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
18415
18418
|
|
18416
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18419
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1015
|
18417
18420
|
*
|
18418
18421
|
* cdef inline object get_array_base(ndarray arr):
|
18419
18422
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
@@ -18422,7 +18425,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18422
18425
|
*/
|
18423
18426
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
18424
18427
|
|
18425
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18428
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1016
|
18426
18429
|
* cdef inline object get_array_base(ndarray arr):
|
18427
18430
|
* base = PyArray_BASE(arr)
|
18428
18431
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -18432,7 +18435,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18432
18435
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
18433
18436
|
if (__pyx_t_1) {
|
18434
18437
|
|
18435
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18438
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1017
|
18436
18439
|
* base = PyArray_BASE(arr)
|
18437
18440
|
* if base is NULL:
|
18438
18441
|
* return None # <<<<<<<<<<<<<<
|
@@ -18443,7 +18446,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18443
18446
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
18444
18447
|
goto __pyx_L0;
|
18445
18448
|
|
18446
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18449
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1016
|
18447
18450
|
* cdef inline object get_array_base(ndarray arr):
|
18448
18451
|
* base = PyArray_BASE(arr)
|
18449
18452
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -18452,7 +18455,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18452
18455
|
*/
|
18453
18456
|
}
|
18454
18457
|
|
18455
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18458
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1018
|
18456
18459
|
* if base is NULL:
|
18457
18460
|
* return None
|
18458
18461
|
* return <object>base # <<<<<<<<<<<<<<
|
@@ -18464,7 +18467,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18464
18467
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
18465
18468
|
goto __pyx_L0;
|
18466
18469
|
|
18467
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18470
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1014
|
18468
18471
|
* PyArray_SetBaseObject(arr, base)
|
18469
18472
|
*
|
18470
18473
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -18479,7 +18482,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18479
18482
|
return __pyx_r;
|
18480
18483
|
}
|
18481
18484
|
|
18482
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18485
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1022
|
18483
18486
|
* # Versions of the import_* functions which are more suitable for
|
18484
18487
|
* # Cython code.
|
18485
18488
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -18506,7 +18509,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18506
18509
|
int __pyx_clineno = 0;
|
18507
18510
|
__Pyx_RefNannySetupContext("import_array", 0);
|
18508
18511
|
|
18509
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18512
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
18510
18513
|
* # Cython code.
|
18511
18514
|
* cdef inline int import_array() except -1:
|
18512
18515
|
* try: # <<<<<<<<<<<<<<
|
@@ -18522,7 +18525,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18522
18525
|
__Pyx_XGOTREF(__pyx_t_3);
|
18523
18526
|
/*try:*/ {
|
18524
18527
|
|
18525
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18528
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1024
|
18526
18529
|
* cdef inline int import_array() except -1:
|
18527
18530
|
* try:
|
18528
18531
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
@@ -18531,7 +18534,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18531
18534
|
*/
|
18532
18535
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1024, __pyx_L3_error)
|
18533
18536
|
|
18534
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18537
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
18535
18538
|
* # Cython code.
|
18536
18539
|
* cdef inline int import_array() except -1:
|
18537
18540
|
* try: # <<<<<<<<<<<<<<
|
@@ -18545,7 +18548,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18545
18548
|
goto __pyx_L8_try_end;
|
18546
18549
|
__pyx_L3_error:;
|
18547
18550
|
|
18548
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18551
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1025
|
18549
18552
|
* try:
|
18550
18553
|
* __pyx_import_array()
|
18551
18554
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18560,7 +18563,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18560
18563
|
__Pyx_XGOTREF(__pyx_t_6);
|
18561
18564
|
__Pyx_XGOTREF(__pyx_t_7);
|
18562
18565
|
|
18563
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18566
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1026
|
18564
18567
|
* __pyx_import_array()
|
18565
18568
|
* except Exception:
|
18566
18569
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
@@ -18585,7 +18588,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18585
18588
|
}
|
18586
18589
|
goto __pyx_L5_except_error;
|
18587
18590
|
|
18588
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18591
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
18589
18592
|
* # Cython code.
|
18590
18593
|
* cdef inline int import_array() except -1:
|
18591
18594
|
* try: # <<<<<<<<<<<<<<
|
@@ -18601,7 +18604,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18601
18604
|
__pyx_L8_try_end:;
|
18602
18605
|
}
|
18603
18606
|
|
18604
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18607
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1022
|
18605
18608
|
* # Versions of the import_* functions which are more suitable for
|
18606
18609
|
* # Cython code.
|
18607
18610
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -18626,7 +18629,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18626
18629
|
return __pyx_r;
|
18627
18630
|
}
|
18628
18631
|
|
18629
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18632
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1028
|
18630
18633
|
* raise ImportError("numpy._core.multiarray failed to import")
|
18631
18634
|
*
|
18632
18635
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -18653,7 +18656,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18653
18656
|
int __pyx_clineno = 0;
|
18654
18657
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
18655
18658
|
|
18656
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18659
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
18657
18660
|
*
|
18658
18661
|
* cdef inline int import_umath() except -1:
|
18659
18662
|
* try: # <<<<<<<<<<<<<<
|
@@ -18669,7 +18672,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18669
18672
|
__Pyx_XGOTREF(__pyx_t_3);
|
18670
18673
|
/*try:*/ {
|
18671
18674
|
|
18672
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18675
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1030
|
18673
18676
|
* cdef inline int import_umath() except -1:
|
18674
18677
|
* try:
|
18675
18678
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -18678,7 +18681,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18678
18681
|
*/
|
18679
18682
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1030, __pyx_L3_error)
|
18680
18683
|
|
18681
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18684
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
18682
18685
|
*
|
18683
18686
|
* cdef inline int import_umath() except -1:
|
18684
18687
|
* try: # <<<<<<<<<<<<<<
|
@@ -18692,7 +18695,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18692
18695
|
goto __pyx_L8_try_end;
|
18693
18696
|
__pyx_L3_error:;
|
18694
18697
|
|
18695
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18698
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1031
|
18696
18699
|
* try:
|
18697
18700
|
* _import_umath()
|
18698
18701
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18707,7 +18710,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18707
18710
|
__Pyx_XGOTREF(__pyx_t_6);
|
18708
18711
|
__Pyx_XGOTREF(__pyx_t_7);
|
18709
18712
|
|
18710
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18713
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1032
|
18711
18714
|
* _import_umath()
|
18712
18715
|
* except Exception:
|
18713
18716
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -18732,7 +18735,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18732
18735
|
}
|
18733
18736
|
goto __pyx_L5_except_error;
|
18734
18737
|
|
18735
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18738
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
18736
18739
|
*
|
18737
18740
|
* cdef inline int import_umath() except -1:
|
18738
18741
|
* try: # <<<<<<<<<<<<<<
|
@@ -18748,7 +18751,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18748
18751
|
__pyx_L8_try_end:;
|
18749
18752
|
}
|
18750
18753
|
|
18751
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18754
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1028
|
18752
18755
|
* raise ImportError("numpy._core.multiarray failed to import")
|
18753
18756
|
*
|
18754
18757
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -18773,7 +18776,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18773
18776
|
return __pyx_r;
|
18774
18777
|
}
|
18775
18778
|
|
18776
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18779
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1034
|
18777
18780
|
* raise ImportError("numpy._core.umath failed to import")
|
18778
18781
|
*
|
18779
18782
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -18800,7 +18803,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18800
18803
|
int __pyx_clineno = 0;
|
18801
18804
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
18802
18805
|
|
18803
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18806
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
18804
18807
|
*
|
18805
18808
|
* cdef inline int import_ufunc() except -1:
|
18806
18809
|
* try: # <<<<<<<<<<<<<<
|
@@ -18816,7 +18819,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18816
18819
|
__Pyx_XGOTREF(__pyx_t_3);
|
18817
18820
|
/*try:*/ {
|
18818
18821
|
|
18819
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18822
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1036
|
18820
18823
|
* cdef inline int import_ufunc() except -1:
|
18821
18824
|
* try:
|
18822
18825
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -18825,7 +18828,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18825
18828
|
*/
|
18826
18829
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1036, __pyx_L3_error)
|
18827
18830
|
|
18828
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18831
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
18829
18832
|
*
|
18830
18833
|
* cdef inline int import_ufunc() except -1:
|
18831
18834
|
* try: # <<<<<<<<<<<<<<
|
@@ -18839,7 +18842,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18839
18842
|
goto __pyx_L8_try_end;
|
18840
18843
|
__pyx_L3_error:;
|
18841
18844
|
|
18842
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18845
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1037
|
18843
18846
|
* try:
|
18844
18847
|
* _import_umath()
|
18845
18848
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18854,7 +18857,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18854
18857
|
__Pyx_XGOTREF(__pyx_t_6);
|
18855
18858
|
__Pyx_XGOTREF(__pyx_t_7);
|
18856
18859
|
|
18857
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18860
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1038
|
18858
18861
|
* _import_umath()
|
18859
18862
|
* except Exception:
|
18860
18863
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -18879,7 +18882,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18879
18882
|
}
|
18880
18883
|
goto __pyx_L5_except_error;
|
18881
18884
|
|
18882
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18885
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
18883
18886
|
*
|
18884
18887
|
* cdef inline int import_ufunc() except -1:
|
18885
18888
|
* try: # <<<<<<<<<<<<<<
|
@@ -18895,7 +18898,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18895
18898
|
__pyx_L8_try_end:;
|
18896
18899
|
}
|
18897
18900
|
|
18898
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18901
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1034
|
18899
18902
|
* raise ImportError("numpy._core.umath failed to import")
|
18900
18903
|
*
|
18901
18904
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -18920,7 +18923,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18920
18923
|
return __pyx_r;
|
18921
18924
|
}
|
18922
18925
|
|
18923
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18926
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1041
|
18924
18927
|
*
|
18925
18928
|
*
|
18926
18929
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18931,7 +18934,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18931
18934
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
18932
18935
|
int __pyx_r;
|
18933
18936
|
|
18934
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18937
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1053
|
18935
18938
|
* bool
|
18936
18939
|
* """
|
18937
18940
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
@@ -18941,7 +18944,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18941
18944
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
18942
18945
|
goto __pyx_L0;
|
18943
18946
|
|
18944
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18947
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1041
|
18945
18948
|
*
|
18946
18949
|
*
|
18947
18950
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18954,7 +18957,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18954
18957
|
return __pyx_r;
|
18955
18958
|
}
|
18956
18959
|
|
18957
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18960
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1056
|
18958
18961
|
*
|
18959
18962
|
*
|
18960
18963
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18965,7 +18968,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18965
18968
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
18966
18969
|
int __pyx_r;
|
18967
18970
|
|
18968
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18971
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1068
|
18969
18972
|
* bool
|
18970
18973
|
* """
|
18971
18974
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
@@ -18975,7 +18978,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18975
18978
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
18976
18979
|
goto __pyx_L0;
|
18977
18980
|
|
18978
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18981
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1056
|
18979
18982
|
*
|
18980
18983
|
*
|
18981
18984
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18988,7 +18991,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18988
18991
|
return __pyx_r;
|
18989
18992
|
}
|
18990
18993
|
|
18991
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18994
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1071
|
18992
18995
|
*
|
18993
18996
|
*
|
18994
18997
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18999,7 +19002,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18999
19002
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
19000
19003
|
npy_datetime __pyx_r;
|
19001
19004
|
|
19002
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
19005
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1078
|
19003
19006
|
* also needed. That can be found using `get_datetime64_unit`.
|
19004
19007
|
* """
|
19005
19008
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -19009,7 +19012,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
19009
19012
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
19010
19013
|
goto __pyx_L0;
|
19011
19014
|
|
19012
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
19015
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1071
|
19013
19016
|
*
|
19014
19017
|
*
|
19015
19018
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -19022,7 +19025,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
19022
19025
|
return __pyx_r;
|
19023
19026
|
}
|
19024
19027
|
|
19025
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
19028
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1081
|
19026
19029
|
*
|
19027
19030
|
*
|
19028
19031
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -19033,7 +19036,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
19033
19036
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
19034
19037
|
npy_timedelta __pyx_r;
|
19035
19038
|
|
19036
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
19039
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1085
|
19037
19040
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
19038
19041
|
* """
|
19039
19042
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -19043,7 +19046,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
19043
19046
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
19044
19047
|
goto __pyx_L0;
|
19045
19048
|
|
19046
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
19049
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1081
|
19047
19050
|
*
|
19048
19051
|
*
|
19049
19052
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -19056,7 +19059,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
19056
19059
|
return __pyx_r;
|
19057
19060
|
}
|
19058
19061
|
|
19059
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
19062
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1088
|
19060
19063
|
*
|
19061
19064
|
*
|
19062
19065
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -19067,7 +19070,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
19067
19070
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
19068
19071
|
NPY_DATETIMEUNIT __pyx_r;
|
19069
19072
|
|
19070
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
19073
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1092
|
19071
19074
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
19072
19075
|
* """
|
19073
19076
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
@@ -19077,7 +19080,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
19077
19080
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
19078
19081
|
goto __pyx_L0;
|
19079
19082
|
|
19080
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
19083
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-o7d3_vg_/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1088
|
19081
19084
|
*
|
19082
19085
|
*
|
19083
19086
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -29742,153 +29745,153 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
29742
29745
|
/*--- Type import code ---*/
|
29743
29746
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
29744
29747
|
__Pyx_GOTREF(__pyx_t_1);
|
29745
|
-
__pyx_mstate->__pyx_ptype_7cpython_4type_type =
|
29748
|
+
__pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_3(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
29746
29749
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29747
|
-
sizeof(PyTypeObject),
|
29750
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyTypeObject),
|
29748
29751
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29749
29752
|
0, 0,
|
29750
29753
|
#else
|
29751
|
-
sizeof(PyHeapTypeObject),
|
29754
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyHeapTypeObject),
|
29752
29755
|
#endif
|
29753
|
-
|
29756
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
29754
29757
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
29755
29758
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 271, __pyx_L1_error)
|
29756
29759
|
__Pyx_GOTREF(__pyx_t_1);
|
29757
|
-
__pyx_mstate->__pyx_ptype_5numpy_dtype =
|
29760
|
+
__pyx_mstate->__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "dtype",
|
29758
29761
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29759
|
-
sizeof(PyArray_Descr),
|
29762
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArray_Descr),
|
29760
29763
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29761
|
-
sizeof(PyArray_Descr),
|
29764
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArray_Descr),
|
29762
29765
|
#else
|
29763
|
-
sizeof(PyArray_Descr),
|
29766
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArray_Descr),
|
29764
29767
|
#endif
|
29765
|
-
|
29766
|
-
__pyx_mstate->__pyx_ptype_5numpy_flatiter =
|
29768
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 271, __pyx_L1_error)
|
29769
|
+
__pyx_mstate->__pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "flatiter",
|
29767
29770
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29768
|
-
sizeof(PyArrayIterObject),
|
29771
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArrayIterObject),
|
29769
29772
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29770
|
-
sizeof(PyArrayIterObject),
|
29773
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArrayIterObject),
|
29771
29774
|
#else
|
29772
|
-
sizeof(PyArrayIterObject),
|
29775
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArrayIterObject),
|
29773
29776
|
#endif
|
29774
|
-
|
29775
|
-
__pyx_mstate->__pyx_ptype_5numpy_broadcast =
|
29777
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 316, __pyx_L1_error)
|
29778
|
+
__pyx_mstate->__pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "broadcast",
|
29776
29779
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29777
|
-
sizeof(PyArrayMultiIterObject),
|
29780
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArrayMultiIterObject),
|
29778
29781
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29779
|
-
sizeof(PyArrayMultiIterObject),
|
29782
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArrayMultiIterObject),
|
29780
29783
|
#else
|
29781
|
-
sizeof(PyArrayMultiIterObject),
|
29784
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArrayMultiIterObject),
|
29782
29785
|
#endif
|
29783
|
-
|
29784
|
-
__pyx_mstate->__pyx_ptype_5numpy_ndarray =
|
29786
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 320, __pyx_L1_error)
|
29787
|
+
__pyx_mstate->__pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "ndarray",
|
29785
29788
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29786
|
-
sizeof(PyArrayObject),
|
29789
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArrayObject),
|
29787
29790
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29788
|
-
sizeof(PyArrayObject),
|
29791
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArrayObject),
|
29789
29792
|
#else
|
29790
|
-
sizeof(PyArrayObject),
|
29793
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyArrayObject),
|
29791
29794
|
#endif
|
29792
|
-
|
29793
|
-
__pyx_mstate->__pyx_ptype_5numpy_generic =
|
29795
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 359, __pyx_L1_error)
|
29796
|
+
__pyx_mstate->__pyx_ptype_5numpy_generic = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "generic",
|
29794
29797
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29795
|
-
sizeof(PyObject),
|
29798
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29796
29799
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29797
|
-
sizeof(PyObject),
|
29800
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29798
29801
|
#else
|
29799
|
-
sizeof(PyObject),
|
29802
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29800
29803
|
#endif
|
29801
|
-
|
29802
|
-
__pyx_mstate->__pyx_ptype_5numpy_number =
|
29804
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_generic) __PYX_ERR(2, 848, __pyx_L1_error)
|
29805
|
+
__pyx_mstate->__pyx_ptype_5numpy_number = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "number",
|
29803
29806
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29804
|
-
sizeof(PyObject),
|
29807
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29805
29808
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29806
|
-
sizeof(PyObject),
|
29809
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29807
29810
|
#else
|
29808
|
-
sizeof(PyObject),
|
29811
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29809
29812
|
#endif
|
29810
|
-
|
29811
|
-
__pyx_mstate->__pyx_ptype_5numpy_integer =
|
29813
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_number) __PYX_ERR(2, 850, __pyx_L1_error)
|
29814
|
+
__pyx_mstate->__pyx_ptype_5numpy_integer = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "integer",
|
29812
29815
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29813
|
-
sizeof(PyObject),
|
29816
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29814
29817
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29815
|
-
sizeof(PyObject),
|
29818
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29816
29819
|
#else
|
29817
|
-
sizeof(PyObject),
|
29820
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29818
29821
|
#endif
|
29819
|
-
|
29820
|
-
__pyx_mstate->__pyx_ptype_5numpy_signedinteger =
|
29822
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_integer) __PYX_ERR(2, 852, __pyx_L1_error)
|
29823
|
+
__pyx_mstate->__pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "signedinteger",
|
29821
29824
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29822
|
-
sizeof(PyObject),
|
29825
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29823
29826
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29824
|
-
sizeof(PyObject),
|
29827
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29825
29828
|
#else
|
29826
|
-
sizeof(PyObject),
|
29829
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29827
29830
|
#endif
|
29828
|
-
|
29829
|
-
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger =
|
29831
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 854, __pyx_L1_error)
|
29832
|
+
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "unsignedinteger",
|
29830
29833
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29831
|
-
sizeof(PyObject),
|
29834
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29832
29835
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29833
|
-
sizeof(PyObject),
|
29836
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29834
29837
|
#else
|
29835
|
-
sizeof(PyObject),
|
29838
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29836
29839
|
#endif
|
29837
|
-
|
29838
|
-
__pyx_mstate->__pyx_ptype_5numpy_inexact =
|
29840
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 856, __pyx_L1_error)
|
29841
|
+
__pyx_mstate->__pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "inexact",
|
29839
29842
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29840
|
-
sizeof(PyObject),
|
29843
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29841
29844
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29842
|
-
sizeof(PyObject),
|
29845
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29843
29846
|
#else
|
29844
|
-
sizeof(PyObject),
|
29847
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29845
29848
|
#endif
|
29846
|
-
|
29847
|
-
__pyx_mstate->__pyx_ptype_5numpy_floating =
|
29849
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 858, __pyx_L1_error)
|
29850
|
+
__pyx_mstate->__pyx_ptype_5numpy_floating = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "floating",
|
29848
29851
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29849
|
-
sizeof(PyObject),
|
29852
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29850
29853
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29851
|
-
sizeof(PyObject),
|
29854
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29852
29855
|
#else
|
29853
|
-
sizeof(PyObject),
|
29856
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29854
29857
|
#endif
|
29855
|
-
|
29856
|
-
__pyx_mstate->__pyx_ptype_5numpy_complexfloating =
|
29858
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_floating) __PYX_ERR(2, 860, __pyx_L1_error)
|
29859
|
+
__pyx_mstate->__pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "complexfloating",
|
29857
29860
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29858
|
-
sizeof(PyObject),
|
29861
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29859
29862
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29860
|
-
sizeof(PyObject),
|
29863
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29861
29864
|
#else
|
29862
|
-
sizeof(PyObject),
|
29865
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29863
29866
|
#endif
|
29864
|
-
|
29865
|
-
__pyx_mstate->__pyx_ptype_5numpy_flexible =
|
29867
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 862, __pyx_L1_error)
|
29868
|
+
__pyx_mstate->__pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "flexible",
|
29866
29869
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29867
|
-
sizeof(PyObject),
|
29870
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29868
29871
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29869
|
-
sizeof(PyObject),
|
29872
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29870
29873
|
#else
|
29871
|
-
sizeof(PyObject),
|
29874
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29872
29875
|
#endif
|
29873
|
-
|
29874
|
-
__pyx_mstate->__pyx_ptype_5numpy_character =
|
29876
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 864, __pyx_L1_error)
|
29877
|
+
__pyx_mstate->__pyx_ptype_5numpy_character = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "character",
|
29875
29878
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29876
|
-
sizeof(PyObject),
|
29879
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29877
29880
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29878
|
-
sizeof(PyObject),
|
29881
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29879
29882
|
#else
|
29880
|
-
sizeof(PyObject),
|
29883
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyObject),
|
29881
29884
|
#endif
|
29882
|
-
|
29883
|
-
__pyx_mstate->__pyx_ptype_5numpy_ufunc =
|
29885
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_character) __PYX_ERR(2, 866, __pyx_L1_error)
|
29886
|
+
__pyx_mstate->__pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_1_3(__pyx_t_1, "numpy", "ufunc",
|
29884
29887
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
29885
|
-
sizeof(PyUFuncObject),
|
29888
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyUFuncObject),
|
29886
29889
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
29887
|
-
sizeof(PyUFuncObject),
|
29890
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyUFuncObject),
|
29888
29891
|
#else
|
29889
|
-
sizeof(PyUFuncObject),
|
29892
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyUFuncObject),
|
29890
29893
|
#endif
|
29891
|
-
|
29894
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_3); if (!__pyx_mstate->__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 930, __pyx_L1_error)
|
29892
29895
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
29893
29896
|
__Pyx_RefNannyFinishContext();
|
29894
29897
|
return 0;
|
@@ -29909,10 +29912,10 @@ static int __Pyx_modinit_variable_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
29909
29912
|
/*--- Variable import code ---*/
|
29910
29913
|
__pyx_t_1 = PyImport_ImportModule("edsger.commons"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
29911
29914
|
__Pyx_GOTREF(__pyx_t_1);
|
29912
|
-
if (
|
29913
|
-
if (
|
29914
|
-
if (
|
29915
|
-
if (
|
29915
|
+
if (__Pyx_ImportVoidPtr_3_1_3(__pyx_t_1, "DTYPE_INF", (void **)&__pyx_vp_6edsger_7commons_DTYPE_INF, "__pyx_t_6edsger_7commons_DTYPE_t") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
29916
|
+
if (__Pyx_ImportVoidPtr_3_1_3(__pyx_t_1, "INF_FREQ", (void **)&__pyx_vp_6edsger_7commons_INF_FREQ, "__pyx_t_6edsger_7commons_DTYPE_t") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
29917
|
+
if (__Pyx_ImportVoidPtr_3_1_3(__pyx_t_1, "MIN_FREQ", (void **)&__pyx_vp_6edsger_7commons_MIN_FREQ, "__pyx_t_6edsger_7commons_DTYPE_t") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
29918
|
+
if (__Pyx_ImportVoidPtr_3_1_3(__pyx_t_1, "A_VERY_SMALL_TIME_INTERVAL", (void **)&__pyx_vp_6edsger_7commons_A_VERY_SMALL_TIME_INTERVAL, "__pyx_t_6edsger_7commons_DTYPE_t") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
29916
29919
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
29917
29920
|
__Pyx_RefNannyFinishContext();
|
29918
29921
|
return 0;
|
@@ -29933,12 +29936,12 @@ static int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
29933
29936
|
/*--- Function import code ---*/
|
29934
29937
|
__pyx_t_1 = PyImport_ImportModule("edsger.pq_4ary_dec_0b"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
29935
29938
|
__Pyx_GOTREF(__pyx_t_1);
|
29936
|
-
if (
|
29937
|
-
if (
|
29938
|
-
if (
|
29939
|
-
if (
|
29940
|
-
if (
|
29941
|
-
if (
|
29939
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "init_pqueue", (void (**)(void))&__pyx_f_6edsger_14pq_4ary_dec_0b_init_pqueue, "void (struct __pyx_t_6edsger_14pq_4ary_dec_0b_PriorityQueue *, size_t, size_t)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
29940
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "free_pqueue", (void (**)(void))&__pyx_f_6edsger_14pq_4ary_dec_0b_free_pqueue, "void (struct __pyx_t_6edsger_14pq_4ary_dec_0b_PriorityQueue *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
29941
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "insert", (void (**)(void))&__pyx_f_6edsger_14pq_4ary_dec_0b_insert, "void (struct __pyx_t_6edsger_14pq_4ary_dec_0b_PriorityQueue *, size_t, __pyx_t_6edsger_7commons_DTYPE_t)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
29942
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "extract_min", (void (**)(void))&__pyx_f_6edsger_14pq_4ary_dec_0b_extract_min, "size_t (struct __pyx_t_6edsger_14pq_4ary_dec_0b_PriorityQueue *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
29943
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "decrease_key", (void (**)(void))&__pyx_f_6edsger_14pq_4ary_dec_0b_decrease_key, "void (struct __pyx_t_6edsger_14pq_4ary_dec_0b_PriorityQueue *, size_t, __pyx_t_6edsger_7commons_DTYPE_t)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
29944
|
+
if (__Pyx_ImportFunction_3_1_3(__pyx_t_1, "copy_keys_to_numpy", (void (**)(void))&__pyx_f_6edsger_14pq_4ary_dec_0b_copy_keys_to_numpy, "PyArrayObject *(struct __pyx_t_6edsger_14pq_4ary_dec_0b_PriorityQueue *, size_t)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
29942
29945
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
29943
29946
|
__Pyx_RefNannyFinishContext();
|
29944
29947
|
return 0;
|
@@ -34412,6 +34415,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
34412
34415
|
changed = 1;
|
34413
34416
|
}
|
34414
34417
|
#endif // CYTHON_METH_FASTCALL
|
34418
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
34415
34419
|
else if (strcmp(memb->name, "__module__") == 0) {
|
34416
34420
|
PyObject *descr;
|
34417
34421
|
assert(memb->type == T_OBJECT);
|
@@ -34426,11 +34430,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
34426
34430
|
}
|
34427
34431
|
changed = 1;
|
34428
34432
|
}
|
34433
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
34429
34434
|
}
|
34430
34435
|
memb++;
|
34431
34436
|
}
|
34432
34437
|
}
|
34433
34438
|
#endif // !CYTHON_COMPILING_IN_LIMITED_API
|
34439
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
34434
34440
|
slot = spec->slots;
|
34435
34441
|
while (slot && slot->slot && slot->slot != Py_tp_getset)
|
34436
34442
|
slot++;
|
@@ -34462,6 +34468,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
34462
34468
|
++getset;
|
34463
34469
|
}
|
34464
34470
|
}
|
34471
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
34465
34472
|
if (changed)
|
34466
34473
|
PyType_Modified(type);
|
34467
34474
|
#endif // PY_VERSION_HEX > 0x030900B1
|
@@ -34566,6 +34573,13 @@ try_unpack:
|
|
34566
34573
|
|
34567
34574
|
/* PyObjectCallMethod0 */
|
34568
34575
|
static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
|
34576
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
34577
|
+
PyObject *args[1] = {obj};
|
34578
|
+
(void) __Pyx_PyObject_GetMethod;
|
34579
|
+
(void) __Pyx_PyObject_CallOneArg;
|
34580
|
+
(void) __Pyx_PyObject_CallNoArg;
|
34581
|
+
return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
|
34582
|
+
#else
|
34569
34583
|
PyObject *method = NULL, *result = NULL;
|
34570
34584
|
int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
|
34571
34585
|
if (likely(is_method)) {
|
@@ -34578,6 +34592,7 @@ static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name
|
|
34578
34592
|
Py_DECREF(method);
|
34579
34593
|
bad:
|
34580
34594
|
return result;
|
34595
|
+
#endif
|
34581
34596
|
}
|
34582
34597
|
|
34583
34598
|
/* ValidateBasesTuple */
|
@@ -35007,10 +35022,10 @@ __PYX_GOOD:
|
|
35007
35022
|
}
|
35008
35023
|
|
35009
35024
|
/* TypeImport */
|
35010
|
-
#ifndef
|
35011
|
-
#define
|
35012
|
-
static PyTypeObject *
|
35013
|
-
size_t size, size_t alignment, enum
|
35025
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_3
|
35026
|
+
#define __PYX_HAVE_RT_ImportType_3_1_3
|
35027
|
+
static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module_name, const char *class_name,
|
35028
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_3 check_size)
|
35014
35029
|
{
|
35015
35030
|
PyObject *result = 0;
|
35016
35031
|
Py_ssize_t basicsize;
|
@@ -35066,7 +35081,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
35066
35081
|
module_name, class_name, size, basicsize+itemsize);
|
35067
35082
|
goto bad;
|
35068
35083
|
}
|
35069
|
-
if (check_size ==
|
35084
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_3 &&
|
35070
35085
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
35071
35086
|
PyErr_Format(PyExc_ValueError,
|
35072
35087
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
@@ -35074,7 +35089,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
35074
35089
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
35075
35090
|
goto bad;
|
35076
35091
|
}
|
35077
|
-
else if (check_size ==
|
35092
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_3 && (size_t)basicsize > size) {
|
35078
35093
|
if (PyErr_WarnFormat(NULL, 0,
|
35079
35094
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
35080
35095
|
"Expected %zd from C header, got %zd from PyObject",
|
@@ -35215,7 +35230,7 @@ bad:
|
|
35215
35230
|
}
|
35216
35231
|
|
35217
35232
|
/* CommonTypesMetaclass */
|
35218
|
-
PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
35233
|
+
static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
35219
35234
|
return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
|
35220
35235
|
}
|
35221
35236
|
static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
|
@@ -39502,9 +39517,9 @@ __Pyx_PyType_GetFullyQualifiedName(PyTypeObject* tp)
|
|
39502
39517
|
}
|
39503
39518
|
|
39504
39519
|
/* VoidPtrImport */
|
39505
|
-
#ifndef
|
39506
|
-
#define
|
39507
|
-
static int
|
39520
|
+
#ifndef __PYX_HAVE_RT_ImportVoidPtr_3_1_3
|
39521
|
+
#define __PYX_HAVE_RT_ImportVoidPtr_3_1_3
|
39522
|
+
static int __Pyx_ImportVoidPtr_3_1_3(PyObject *module, const char *name, void **p, const char *sig) {
|
39508
39523
|
PyObject *d = 0;
|
39509
39524
|
PyObject *cobj = 0;
|
39510
39525
|
d = PyObject_GetAttrString(module, "__pyx_capi__");
|
@@ -39542,9 +39557,9 @@ bad:
|
|
39542
39557
|
#endif
|
39543
39558
|
|
39544
39559
|
/* FunctionImport */
|
39545
|
-
#ifndef
|
39546
|
-
#define
|
39547
|
-
static int
|
39560
|
+
#ifndef __PYX_HAVE_RT_ImportFunction_3_1_3
|
39561
|
+
#define __PYX_HAVE_RT_ImportFunction_3_1_3
|
39562
|
+
static int __Pyx_ImportFunction_3_1_3(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
|
39548
39563
|
PyObject *d = 0;
|
39549
39564
|
PyObject *cobj = 0;
|
39550
39565
|
union {
|