edsger 0.1.1__cp311-cp311-macosx_11_0_arm64.whl → 0.1.3__cp311-cp311-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- edsger/_version.py +1 -1
- edsger/commons.c +151 -147
- edsger/commons.cpython-311-darwin.so +0 -0
- edsger/dijkstra.c +7197 -2762
- edsger/dijkstra.cpython-311-darwin.so +0 -0
- edsger/dijkstra.pyx +525 -0
- edsger/path.py +145 -37
- edsger/path_tracking.c +151 -147
- edsger/path_tracking.cpython-311-darwin.so +0 -0
- edsger/path_tracking.pyx +2 -2
- edsger/pq_4ary_dec_0b.c +203 -199
- edsger/pq_4ary_dec_0b.cpython-311-darwin.so +0 -0
- edsger/pq_4ary_dec_0b.pxd +7 -7
- edsger/pq_4ary_dec_0b.pyx +14 -16
- edsger/prefetch_compat.h +21 -0
- edsger/spiess_florian.c +157 -176
- edsger/spiess_florian.cpython-311-darwin.so +0 -0
- edsger/star.c +151 -147
- edsger/star.cpython-311-darwin.so +0 -0
- edsger/star.pyx +3 -3
- {edsger-0.1.1.dist-info → edsger-0.1.3.dist-info}/METADATA +18 -11
- edsger-0.1.3.dist-info/RECORD +33 -0
- edsger-0.1.1.dist-info/RECORD +0 -32
- {edsger-0.1.1.dist-info → edsger-0.1.3.dist-info}/WHEEL +0 -0
- {edsger-0.1.1.dist-info → edsger-0.1.3.dist-info}/licenses/AUTHORS.rst +0 -0
- {edsger-0.1.1.dist-info → edsger-0.1.3.dist-info}/licenses/LICENSE +0 -0
- {edsger-0.1.1.dist-info → edsger-0.1.3.dist-info}/top_level.txt +0 -0
edsger/star.c
CHANGED
@@ -11,7 +11,11 @@
|
|
11
11
|
],
|
12
12
|
"depends": [],
|
13
13
|
"extra_compile_args": [
|
14
|
-
"-Ofast"
|
14
|
+
"-Ofast",
|
15
|
+
"-flto"
|
16
|
+
],
|
17
|
+
"extra_link_args": [
|
18
|
+
"-flto"
|
15
19
|
],
|
16
20
|
"name": "edsger.star",
|
17
21
|
"sources": [
|
@@ -1380,7 +1384,7 @@ static const char *__pyx_filename;
|
|
1380
1384
|
static const char* const __pyx_f[] = {
|
1381
1385
|
"src/edsger/star.pyx",
|
1382
1386
|
"<stringsource>",
|
1383
|
-
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1387
|
+
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd",
|
1384
1388
|
"cpython/type.pxd",
|
1385
1389
|
};
|
1386
1390
|
/* #### Code section: utility_code_proto_before_types ### */
|
@@ -1603,7 +1607,7 @@ typedef struct {
|
|
1603
1607
|
|
1604
1608
|
/* #### Code section: numeric_typedefs ### */
|
1605
1609
|
|
1606
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1610
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":743
|
1607
1611
|
* # in Cython to enable them only on the right systems.
|
1608
1612
|
*
|
1609
1613
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
@@ -1612,7 +1616,7 @@ typedef struct {
|
|
1612
1616
|
*/
|
1613
1617
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
1614
1618
|
|
1615
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1619
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":744
|
1616
1620
|
*
|
1617
1621
|
* ctypedef npy_int8 int8_t
|
1618
1622
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
@@ -1621,7 +1625,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1621
1625
|
*/
|
1622
1626
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
1623
1627
|
|
1624
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1628
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
|
1625
1629
|
* ctypedef npy_int8 int8_t
|
1626
1630
|
* ctypedef npy_int16 int16_t
|
1627
1631
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
@@ -1630,7 +1634,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1630
1634
|
*/
|
1631
1635
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
1632
1636
|
|
1633
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1637
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
|
1634
1638
|
* ctypedef npy_int16 int16_t
|
1635
1639
|
* ctypedef npy_int32 int32_t
|
1636
1640
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
@@ -1639,7 +1643,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1639
1643
|
*/
|
1640
1644
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
1641
1645
|
|
1642
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1646
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":748
|
1643
1647
|
* ctypedef npy_int64 int64_t
|
1644
1648
|
*
|
1645
1649
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
@@ -1648,7 +1652,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1648
1652
|
*/
|
1649
1653
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
1650
1654
|
|
1651
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1655
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":749
|
1652
1656
|
*
|
1653
1657
|
* ctypedef npy_uint8 uint8_t
|
1654
1658
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
@@ -1657,7 +1661,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1657
1661
|
*/
|
1658
1662
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
1659
1663
|
|
1660
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1664
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":750
|
1661
1665
|
* ctypedef npy_uint8 uint8_t
|
1662
1666
|
* ctypedef npy_uint16 uint16_t
|
1663
1667
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
@@ -1666,7 +1670,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1666
1670
|
*/
|
1667
1671
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
1668
1672
|
|
1669
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1673
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":751
|
1670
1674
|
* ctypedef npy_uint16 uint16_t
|
1671
1675
|
* ctypedef npy_uint32 uint32_t
|
1672
1676
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
@@ -1675,7 +1679,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1675
1679
|
*/
|
1676
1680
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
1677
1681
|
|
1678
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1682
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":753
|
1679
1683
|
* ctypedef npy_uint64 uint64_t
|
1680
1684
|
*
|
1681
1685
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
@@ -1684,7 +1688,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1684
1688
|
*/
|
1685
1689
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
1686
1690
|
|
1687
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1691
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":754
|
1688
1692
|
*
|
1689
1693
|
* ctypedef npy_float32 float32_t
|
1690
1694
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
@@ -1693,7 +1697,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1693
1697
|
*/
|
1694
1698
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
1695
1699
|
|
1696
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1700
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
|
1697
1701
|
* ctypedef double complex complex128_t
|
1698
1702
|
*
|
1699
1703
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
@@ -1702,7 +1706,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1702
1706
|
*/
|
1703
1707
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
1704
1708
|
|
1705
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1709
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":762
|
1706
1710
|
*
|
1707
1711
|
* ctypedef npy_longlong longlong_t
|
1708
1712
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
@@ -1711,7 +1715,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1711
1715
|
*/
|
1712
1716
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
1713
1717
|
|
1714
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1718
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
|
1715
1719
|
* ctypedef npy_ulonglong ulonglong_t
|
1716
1720
|
*
|
1717
1721
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
@@ -1720,7 +1724,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1720
1724
|
*/
|
1721
1725
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
1722
1726
|
|
1723
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1727
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":765
|
1724
1728
|
*
|
1725
1729
|
* ctypedef npy_intp intp_t
|
1726
1730
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
@@ -1729,7 +1733,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1729
1733
|
*/
|
1730
1734
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
1731
1735
|
|
1732
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1736
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
|
1733
1737
|
* ctypedef npy_uintp uintp_t
|
1734
1738
|
*
|
1735
1739
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
@@ -1738,7 +1742,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1738
1742
|
*/
|
1739
1743
|
typedef npy_double __pyx_t_5numpy_float_t;
|
1740
1744
|
|
1741
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1745
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
|
1742
1746
|
*
|
1743
1747
|
* ctypedef npy_double float_t
|
1744
1748
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
@@ -1747,7 +1751,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
1747
1751
|
*/
|
1748
1752
|
typedef npy_double __pyx_t_5numpy_double_t;
|
1749
1753
|
|
1750
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1754
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":769
|
1751
1755
|
* ctypedef npy_double float_t
|
1752
1756
|
* ctypedef npy_double double_t
|
1753
1757
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
@@ -17181,7 +17185,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
17181
17185
|
return __pyx_r;
|
17182
17186
|
}
|
17183
17187
|
|
17184
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17188
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":242
|
17185
17189
|
* cdef int type_num
|
17186
17190
|
*
|
17187
17191
|
* @property # <<<<<<<<<<<<<<
|
@@ -17192,7 +17196,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
17192
17196
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
17193
17197
|
npy_intp __pyx_r;
|
17194
17198
|
|
17195
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17199
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":244
|
17196
17200
|
* @property
|
17197
17201
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
17198
17202
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
@@ -17202,7 +17206,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17202
17206
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
17203
17207
|
goto __pyx_L0;
|
17204
17208
|
|
17205
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17209
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":242
|
17206
17210
|
* cdef int type_num
|
17207
17211
|
*
|
17208
17212
|
* @property # <<<<<<<<<<<<<<
|
@@ -17215,7 +17219,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17215
17219
|
return __pyx_r;
|
17216
17220
|
}
|
17217
17221
|
|
17218
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17222
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":246
|
17219
17223
|
* return PyDataType_ELSIZE(self)
|
17220
17224
|
*
|
17221
17225
|
* @property # <<<<<<<<<<<<<<
|
@@ -17226,7 +17230,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17226
17230
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
17227
17231
|
npy_intp __pyx_r;
|
17228
17232
|
|
17229
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17233
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
|
17230
17234
|
* @property
|
17231
17235
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
17232
17236
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
@@ -17236,7 +17240,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
17236
17240
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
17237
17241
|
goto __pyx_L0;
|
17238
17242
|
|
17239
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17243
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":246
|
17240
17244
|
* return PyDataType_ELSIZE(self)
|
17241
17245
|
*
|
17242
17246
|
* @property # <<<<<<<<<<<<<<
|
@@ -17249,7 +17253,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
17249
17253
|
return __pyx_r;
|
17250
17254
|
}
|
17251
17255
|
|
17252
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17256
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":252
|
17253
17257
|
* # Use fields/names with care as they may be NULL. You must check
|
17254
17258
|
* # for this using PyDataType_HASFIELDS.
|
17255
17259
|
* @property # <<<<<<<<<<<<<<
|
@@ -17263,7 +17267,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17263
17267
|
PyObject *__pyx_t_1;
|
17264
17268
|
__Pyx_RefNannySetupContext("fields", 0);
|
17265
17269
|
|
17266
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17270
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
|
17267
17271
|
* @property
|
17268
17272
|
* cdef inline object fields(self):
|
17269
17273
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
@@ -17276,7 +17280,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17276
17280
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
17277
17281
|
goto __pyx_L0;
|
17278
17282
|
|
17279
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17283
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":252
|
17280
17284
|
* # Use fields/names with care as they may be NULL. You must check
|
17281
17285
|
* # for this using PyDataType_HASFIELDS.
|
17282
17286
|
* @property # <<<<<<<<<<<<<<
|
@@ -17291,7 +17295,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17291
17295
|
return __pyx_r;
|
17292
17296
|
}
|
17293
17297
|
|
17294
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17298
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":256
|
17295
17299
|
* return <object>PyDataType_FIELDS(self)
|
17296
17300
|
*
|
17297
17301
|
* @property # <<<<<<<<<<<<<<
|
@@ -17305,7 +17309,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17305
17309
|
PyObject *__pyx_t_1;
|
17306
17310
|
__Pyx_RefNannySetupContext("names", 0);
|
17307
17311
|
|
17308
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17312
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":258
|
17309
17313
|
* @property
|
17310
17314
|
* cdef inline tuple names(self):
|
17311
17315
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
@@ -17318,7 +17322,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17318
17322
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
17319
17323
|
goto __pyx_L0;
|
17320
17324
|
|
17321
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17325
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":256
|
17322
17326
|
* return <object>PyDataType_FIELDS(self)
|
17323
17327
|
*
|
17324
17328
|
* @property # <<<<<<<<<<<<<<
|
@@ -17333,7 +17337,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17333
17337
|
return __pyx_r;
|
17334
17338
|
}
|
17335
17339
|
|
17336
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17340
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
17337
17341
|
* # valid (the pointer can be NULL). Most users should access
|
17338
17342
|
* # this field via the inline helper method PyDataType_SHAPE.
|
17339
17343
|
* @property # <<<<<<<<<<<<<<
|
@@ -17344,7 +17348,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17344
17348
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
17345
17349
|
PyArray_ArrayDescr *__pyx_r;
|
17346
17350
|
|
17347
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17351
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":265
|
17348
17352
|
* @property
|
17349
17353
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
17350
17354
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
@@ -17354,7 +17358,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17354
17358
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
17355
17359
|
goto __pyx_L0;
|
17356
17360
|
|
17357
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17361
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
17358
17362
|
* # valid (the pointer can be NULL). Most users should access
|
17359
17363
|
* # this field via the inline helper method PyDataType_SHAPE.
|
17360
17364
|
* @property # <<<<<<<<<<<<<<
|
@@ -17367,7 +17371,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17367
17371
|
return __pyx_r;
|
17368
17372
|
}
|
17369
17373
|
|
17370
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17374
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":267
|
17371
17375
|
* return PyDataType_SUBARRAY(self)
|
17372
17376
|
*
|
17373
17377
|
* @property # <<<<<<<<<<<<<<
|
@@ -17378,7 +17382,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17378
17382
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
17379
17383
|
npy_uint64 __pyx_r;
|
17380
17384
|
|
17381
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17385
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":270
|
17382
17386
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
17383
17387
|
* """The data types flags."""
|
17384
17388
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
@@ -17388,7 +17392,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17388
17392
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
17389
17393
|
goto __pyx_L0;
|
17390
17394
|
|
17391
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17395
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":267
|
17392
17396
|
* return PyDataType_SUBARRAY(self)
|
17393
17397
|
*
|
17394
17398
|
* @property # <<<<<<<<<<<<<<
|
@@ -17401,7 +17405,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17401
17405
|
return __pyx_r;
|
17402
17406
|
}
|
17403
17407
|
|
17404
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17408
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":279
|
17405
17409
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
17406
17410
|
*
|
17407
17411
|
* @property # <<<<<<<<<<<<<<
|
@@ -17412,7 +17416,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17412
17416
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
17413
17417
|
int __pyx_r;
|
17414
17418
|
|
17415
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17419
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":282
|
17416
17420
|
* cdef inline int numiter(self) noexcept nogil:
|
17417
17421
|
* """The number of arrays that need to be broadcast to the same shape."""
|
17418
17422
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
@@ -17422,7 +17426,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17422
17426
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
17423
17427
|
goto __pyx_L0;
|
17424
17428
|
|
17425
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17429
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":279
|
17426
17430
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
17427
17431
|
*
|
17428
17432
|
* @property # <<<<<<<<<<<<<<
|
@@ -17435,7 +17439,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17435
17439
|
return __pyx_r;
|
17436
17440
|
}
|
17437
17441
|
|
17438
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17442
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
17439
17443
|
* return PyArray_MultiIter_NUMITER(self)
|
17440
17444
|
*
|
17441
17445
|
* @property # <<<<<<<<<<<<<<
|
@@ -17446,7 +17450,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17446
17450
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
17447
17451
|
npy_intp __pyx_r;
|
17448
17452
|
|
17449
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17453
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":287
|
17450
17454
|
* cdef inline npy_intp size(self) noexcept nogil:
|
17451
17455
|
* """The total broadcasted size."""
|
17452
17456
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -17456,7 +17460,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17456
17460
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
17457
17461
|
goto __pyx_L0;
|
17458
17462
|
|
17459
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17463
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
17460
17464
|
* return PyArray_MultiIter_NUMITER(self)
|
17461
17465
|
*
|
17462
17466
|
* @property # <<<<<<<<<<<<<<
|
@@ -17469,7 +17473,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17469
17473
|
return __pyx_r;
|
17470
17474
|
}
|
17471
17475
|
|
17472
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17476
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":289
|
17473
17477
|
* return PyArray_MultiIter_SIZE(self)
|
17474
17478
|
*
|
17475
17479
|
* @property # <<<<<<<<<<<<<<
|
@@ -17480,7 +17484,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17480
17484
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
17481
17485
|
npy_intp __pyx_r;
|
17482
17486
|
|
17483
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17487
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":292
|
17484
17488
|
* cdef inline npy_intp index(self) noexcept nogil:
|
17485
17489
|
* """The current (1-d) index into the broadcasted result."""
|
17486
17490
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
@@ -17490,7 +17494,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17490
17494
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
17491
17495
|
goto __pyx_L0;
|
17492
17496
|
|
17493
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17497
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":289
|
17494
17498
|
* return PyArray_MultiIter_SIZE(self)
|
17495
17499
|
*
|
17496
17500
|
* @property # <<<<<<<<<<<<<<
|
@@ -17503,7 +17507,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17503
17507
|
return __pyx_r;
|
17504
17508
|
}
|
17505
17509
|
|
17506
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17510
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":294
|
17507
17511
|
* return PyArray_MultiIter_INDEX(self)
|
17508
17512
|
*
|
17509
17513
|
* @property # <<<<<<<<<<<<<<
|
@@ -17514,7 +17518,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17514
17518
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
17515
17519
|
int __pyx_r;
|
17516
17520
|
|
17517
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17521
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":297
|
17518
17522
|
* cdef inline int nd(self) noexcept nogil:
|
17519
17523
|
* """The number of dimensions in the broadcasted result."""
|
17520
17524
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -17524,7 +17528,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17524
17528
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
17525
17529
|
goto __pyx_L0;
|
17526
17530
|
|
17527
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17531
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":294
|
17528
17532
|
* return PyArray_MultiIter_INDEX(self)
|
17529
17533
|
*
|
17530
17534
|
* @property # <<<<<<<<<<<<<<
|
@@ -17537,7 +17541,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17537
17541
|
return __pyx_r;
|
17538
17542
|
}
|
17539
17543
|
|
17540
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17544
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":299
|
17541
17545
|
* return PyArray_MultiIter_NDIM(self)
|
17542
17546
|
*
|
17543
17547
|
* @property # <<<<<<<<<<<<<<
|
@@ -17548,7 +17552,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17548
17552
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
17549
17553
|
npy_intp *__pyx_r;
|
17550
17554
|
|
17551
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17555
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":302
|
17552
17556
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
17553
17557
|
* """The shape of the broadcasted result."""
|
17554
17558
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -17558,7 +17562,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17558
17562
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
17559
17563
|
goto __pyx_L0;
|
17560
17564
|
|
17561
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17565
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":299
|
17562
17566
|
* return PyArray_MultiIter_NDIM(self)
|
17563
17567
|
*
|
17564
17568
|
* @property # <<<<<<<<<<<<<<
|
@@ -17571,7 +17575,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17571
17575
|
return __pyx_r;
|
17572
17576
|
}
|
17573
17577
|
|
17574
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17578
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":304
|
17575
17579
|
* return PyArray_MultiIter_DIMS(self)
|
17576
17580
|
*
|
17577
17581
|
* @property # <<<<<<<<<<<<<<
|
@@ -17582,7 +17586,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17582
17586
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
17583
17587
|
void **__pyx_r;
|
17584
17588
|
|
17585
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17589
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":308
|
17586
17590
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
17587
17591
|
* On return, the iterators are adjusted for broadcasting."""
|
17588
17592
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
@@ -17592,7 +17596,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17592
17596
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
17593
17597
|
goto __pyx_L0;
|
17594
17598
|
|
17595
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17599
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":304
|
17596
17600
|
* return PyArray_MultiIter_DIMS(self)
|
17597
17601
|
*
|
17598
17602
|
* @property # <<<<<<<<<<<<<<
|
@@ -17605,7 +17609,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17605
17609
|
return __pyx_r;
|
17606
17610
|
}
|
17607
17611
|
|
17608
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17612
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":322
|
17609
17613
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
17610
17614
|
*
|
17611
17615
|
* @property # <<<<<<<<<<<<<<
|
@@ -17616,7 +17620,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17616
17620
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
17617
17621
|
PyObject *__pyx_r;
|
17618
17622
|
|
17619
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17623
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":326
|
17620
17624
|
* """Returns a borrowed reference to the object owning the data/memory.
|
17621
17625
|
* """
|
17622
17626
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
@@ -17626,7 +17630,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
17626
17630
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
17627
17631
|
goto __pyx_L0;
|
17628
17632
|
|
17629
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17633
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":322
|
17630
17634
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
17631
17635
|
*
|
17632
17636
|
* @property # <<<<<<<<<<<<<<
|
@@ -17639,7 +17643,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
17639
17643
|
return __pyx_r;
|
17640
17644
|
}
|
17641
17645
|
|
17642
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17646
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":328
|
17643
17647
|
* return PyArray_BASE(self)
|
17644
17648
|
*
|
17645
17649
|
* @property # <<<<<<<<<<<<<<
|
@@ -17653,7 +17657,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17653
17657
|
PyArray_Descr *__pyx_t_1;
|
17654
17658
|
__Pyx_RefNannySetupContext("descr", 0);
|
17655
17659
|
|
17656
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17660
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":332
|
17657
17661
|
* """Returns an owned reference to the dtype of the array.
|
17658
17662
|
* """
|
17659
17663
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
@@ -17666,7 +17670,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17666
17670
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
17667
17671
|
goto __pyx_L0;
|
17668
17672
|
|
17669
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17673
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":328
|
17670
17674
|
* return PyArray_BASE(self)
|
17671
17675
|
*
|
17672
17676
|
* @property # <<<<<<<<<<<<<<
|
@@ -17681,7 +17685,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17681
17685
|
return __pyx_r;
|
17682
17686
|
}
|
17683
17687
|
|
17684
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17688
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":334
|
17685
17689
|
* return <dtype>PyArray_DESCR(self)
|
17686
17690
|
*
|
17687
17691
|
* @property # <<<<<<<<<<<<<<
|
@@ -17692,7 +17696,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17692
17696
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
17693
17697
|
int __pyx_r;
|
17694
17698
|
|
17695
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17699
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":338
|
17696
17700
|
* """Returns the number of dimensions in the array.
|
17697
17701
|
* """
|
17698
17702
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -17702,7 +17706,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17702
17706
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
17703
17707
|
goto __pyx_L0;
|
17704
17708
|
|
17705
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17709
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":334
|
17706
17710
|
* return <dtype>PyArray_DESCR(self)
|
17707
17711
|
*
|
17708
17712
|
* @property # <<<<<<<<<<<<<<
|
@@ -17715,7 +17719,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17715
17719
|
return __pyx_r;
|
17716
17720
|
}
|
17717
17721
|
|
17718
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17722
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":340
|
17719
17723
|
* return PyArray_NDIM(self)
|
17720
17724
|
*
|
17721
17725
|
* @property # <<<<<<<<<<<<<<
|
@@ -17726,7 +17730,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17726
17730
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
17727
17731
|
npy_intp *__pyx_r;
|
17728
17732
|
|
17729
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17733
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":346
|
17730
17734
|
* Can return NULL for 0-dimensional arrays.
|
17731
17735
|
* """
|
17732
17736
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -17736,7 +17740,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17736
17740
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
17737
17741
|
goto __pyx_L0;
|
17738
17742
|
|
17739
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17743
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":340
|
17740
17744
|
* return PyArray_NDIM(self)
|
17741
17745
|
*
|
17742
17746
|
* @property # <<<<<<<<<<<<<<
|
@@ -17749,7 +17753,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17749
17753
|
return __pyx_r;
|
17750
17754
|
}
|
17751
17755
|
|
17752
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17756
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":348
|
17753
17757
|
* return PyArray_DIMS(self)
|
17754
17758
|
*
|
17755
17759
|
* @property # <<<<<<<<<<<<<<
|
@@ -17760,7 +17764,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17760
17764
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
17761
17765
|
npy_intp *__pyx_r;
|
17762
17766
|
|
17763
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17767
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":353
|
17764
17768
|
* The number of elements matches the number of dimensions of the array (ndim).
|
17765
17769
|
* """
|
17766
17770
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
@@ -17770,7 +17774,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17770
17774
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
17771
17775
|
goto __pyx_L0;
|
17772
17776
|
|
17773
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17777
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":348
|
17774
17778
|
* return PyArray_DIMS(self)
|
17775
17779
|
*
|
17776
17780
|
* @property # <<<<<<<<<<<<<<
|
@@ -17783,7 +17787,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17783
17787
|
return __pyx_r;
|
17784
17788
|
}
|
17785
17789
|
|
17786
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17790
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":355
|
17787
17791
|
* return PyArray_STRIDES(self)
|
17788
17792
|
*
|
17789
17793
|
* @property # <<<<<<<<<<<<<<
|
@@ -17794,7 +17798,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17794
17798
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
17795
17799
|
npy_intp __pyx_r;
|
17796
17800
|
|
17797
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17801
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":359
|
17798
17802
|
* """Returns the total size (in number of elements) of the array.
|
17799
17803
|
* """
|
17800
17804
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -17804,7 +17808,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17804
17808
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
17805
17809
|
goto __pyx_L0;
|
17806
17810
|
|
17807
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17811
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":355
|
17808
17812
|
* return PyArray_STRIDES(self)
|
17809
17813
|
*
|
17810
17814
|
* @property # <<<<<<<<<<<<<<
|
@@ -17817,7 +17821,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17817
17821
|
return __pyx_r;
|
17818
17822
|
}
|
17819
17823
|
|
17820
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17824
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":361
|
17821
17825
|
* return PyArray_SIZE(self)
|
17822
17826
|
*
|
17823
17827
|
* @property # <<<<<<<<<<<<<<
|
@@ -17828,7 +17832,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17828
17832
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
17829
17833
|
char *__pyx_r;
|
17830
17834
|
|
17831
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17835
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":368
|
17832
17836
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
17833
17837
|
* """
|
17834
17838
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
@@ -17838,7 +17842,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
17838
17842
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
17839
17843
|
goto __pyx_L0;
|
17840
17844
|
|
17841
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17845
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":361
|
17842
17846
|
* return PyArray_SIZE(self)
|
17843
17847
|
*
|
17844
17848
|
* @property # <<<<<<<<<<<<<<
|
@@ -17851,7 +17855,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
17851
17855
|
return __pyx_r;
|
17852
17856
|
}
|
17853
17857
|
|
17854
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17858
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
17855
17859
|
* ctypedef long double complex clongdouble_t
|
17856
17860
|
*
|
17857
17861
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -17868,7 +17872,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
17868
17872
|
int __pyx_clineno = 0;
|
17869
17873
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
17870
17874
|
|
17871
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17875
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
|
17872
17876
|
*
|
17873
17877
|
* cdef inline object PyArray_MultiIterNew1(a):
|
17874
17878
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
@@ -17882,7 +17886,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
17882
17886
|
__pyx_t_1 = 0;
|
17883
17887
|
goto __pyx_L0;
|
17884
17888
|
|
17885
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17889
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
17886
17890
|
* ctypedef long double complex clongdouble_t
|
17887
17891
|
*
|
17888
17892
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -17901,7 +17905,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
17901
17905
|
return __pyx_r;
|
17902
17906
|
}
|
17903
17907
|
|
17904
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17908
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
17905
17909
|
* return PyArray_MultiIterNew(1, <void*>a)
|
17906
17910
|
*
|
17907
17911
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -17918,7 +17922,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
17918
17922
|
int __pyx_clineno = 0;
|
17919
17923
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
17920
17924
|
|
17921
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17925
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
|
17922
17926
|
*
|
17923
17927
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
17924
17928
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
@@ -17932,7 +17936,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
17932
17936
|
__pyx_t_1 = 0;
|
17933
17937
|
goto __pyx_L0;
|
17934
17938
|
|
17935
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17939
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
17936
17940
|
* return PyArray_MultiIterNew(1, <void*>a)
|
17937
17941
|
*
|
17938
17942
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -17951,7 +17955,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
17951
17955
|
return __pyx_r;
|
17952
17956
|
}
|
17953
17957
|
|
17954
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17958
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
17955
17959
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
17956
17960
|
*
|
17957
17961
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -17968,7 +17972,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
17968
17972
|
int __pyx_clineno = 0;
|
17969
17973
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
17970
17974
|
|
17971
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17975
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
|
17972
17976
|
*
|
17973
17977
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
17974
17978
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
@@ -17982,7 +17986,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
17982
17986
|
__pyx_t_1 = 0;
|
17983
17987
|
goto __pyx_L0;
|
17984
17988
|
|
17985
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17989
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
17986
17990
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
17987
17991
|
*
|
17988
17992
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -18001,7 +18005,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
18001
18005
|
return __pyx_r;
|
18002
18006
|
}
|
18003
18007
|
|
18004
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18008
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
18005
18009
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
18006
18010
|
*
|
18007
18011
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -18018,7 +18022,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
18018
18022
|
int __pyx_clineno = 0;
|
18019
18023
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
18020
18024
|
|
18021
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18025
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
|
18022
18026
|
*
|
18023
18027
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
18024
18028
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
@@ -18032,7 +18036,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
18032
18036
|
__pyx_t_1 = 0;
|
18033
18037
|
goto __pyx_L0;
|
18034
18038
|
|
18035
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18039
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
18036
18040
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
18037
18041
|
*
|
18038
18042
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -18051,7 +18055,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
18051
18055
|
return __pyx_r;
|
18052
18056
|
}
|
18053
18057
|
|
18054
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18058
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
18055
18059
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
18056
18060
|
*
|
18057
18061
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -18068,7 +18072,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18068
18072
|
int __pyx_clineno = 0;
|
18069
18073
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
18070
18074
|
|
18071
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18075
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
|
18072
18076
|
*
|
18073
18077
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
18074
18078
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
@@ -18082,7 +18086,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18082
18086
|
__pyx_t_1 = 0;
|
18083
18087
|
goto __pyx_L0;
|
18084
18088
|
|
18085
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18089
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
18086
18090
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
18087
18091
|
*
|
18088
18092
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -18101,7 +18105,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18101
18105
|
return __pyx_r;
|
18102
18106
|
}
|
18103
18107
|
|
18104
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18108
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
18105
18109
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
18106
18110
|
*
|
18107
18111
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -18116,7 +18120,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18116
18120
|
PyObject *__pyx_t_2;
|
18117
18121
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
18118
18122
|
|
18119
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18123
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
18120
18124
|
*
|
18121
18125
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18122
18126
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -18126,7 +18130,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18126
18130
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
18127
18131
|
if (__pyx_t_1) {
|
18128
18132
|
|
18129
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18133
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
|
18130
18134
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18131
18135
|
* if PyDataType_HASSUBARRAY(d):
|
18132
18136
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
@@ -18139,7 +18143,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18139
18143
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
18140
18144
|
goto __pyx_L0;
|
18141
18145
|
|
18142
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18146
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
18143
18147
|
*
|
18144
18148
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18145
18149
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -18148,7 +18152,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18148
18152
|
*/
|
18149
18153
|
}
|
18150
18154
|
|
18151
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18155
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
|
18152
18156
|
* return <tuple>d.subarray.shape
|
18153
18157
|
* else:
|
18154
18158
|
* return () # <<<<<<<<<<<<<<
|
@@ -18162,7 +18166,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18162
18166
|
goto __pyx_L0;
|
18163
18167
|
}
|
18164
18168
|
|
18165
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18169
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
18166
18170
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
18167
18171
|
*
|
18168
18172
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -18177,7 +18181,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18177
18181
|
return __pyx_r;
|
18178
18182
|
}
|
18179
18183
|
|
18180
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18184
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
18181
18185
|
* int _import_umath() except -1
|
18182
18186
|
*
|
18183
18187
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -18191,7 +18195,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18191
18195
|
const char *__pyx_filename = NULL;
|
18192
18196
|
int __pyx_clineno = 0;
|
18193
18197
|
|
18194
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18198
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
18195
18199
|
*
|
18196
18200
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
18197
18201
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
@@ -18200,7 +18204,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18200
18204
|
*/
|
18201
18205
|
Py_INCREF(__pyx_v_base);
|
18202
18206
|
|
18203
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18207
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
|
18204
18208
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
18205
18209
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
18206
18210
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
@@ -18209,7 +18213,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18209
18213
|
*/
|
18210
18214
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L1_error)
|
18211
18215
|
|
18212
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18216
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
18213
18217
|
* int _import_umath() except -1
|
18214
18218
|
*
|
18215
18219
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -18224,7 +18228,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18224
18228
|
__pyx_L0:;
|
18225
18229
|
}
|
18226
18230
|
|
18227
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18231
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
18228
18232
|
* PyArray_SetBaseObject(arr, base)
|
18229
18233
|
*
|
18230
18234
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -18239,7 +18243,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18239
18243
|
int __pyx_t_1;
|
18240
18244
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
18241
18245
|
|
18242
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18246
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":999
|
18243
18247
|
*
|
18244
18248
|
* cdef inline object get_array_base(ndarray arr):
|
18245
18249
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
@@ -18248,7 +18252,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18248
18252
|
*/
|
18249
18253
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
18250
18254
|
|
18251
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18255
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1000
|
18252
18256
|
* cdef inline object get_array_base(ndarray arr):
|
18253
18257
|
* base = PyArray_BASE(arr)
|
18254
18258
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -18258,7 +18262,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18258
18262
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
18259
18263
|
if (__pyx_t_1) {
|
18260
18264
|
|
18261
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18265
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
|
18262
18266
|
* base = PyArray_BASE(arr)
|
18263
18267
|
* if base is NULL:
|
18264
18268
|
* return None # <<<<<<<<<<<<<<
|
@@ -18269,7 +18273,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18269
18273
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
18270
18274
|
goto __pyx_L0;
|
18271
18275
|
|
18272
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18276
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1000
|
18273
18277
|
* cdef inline object get_array_base(ndarray arr):
|
18274
18278
|
* base = PyArray_BASE(arr)
|
18275
18279
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -18278,7 +18282,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18278
18282
|
*/
|
18279
18283
|
}
|
18280
18284
|
|
18281
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18285
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1002
|
18282
18286
|
* if base is NULL:
|
18283
18287
|
* return None
|
18284
18288
|
* return <object>base # <<<<<<<<<<<<<<
|
@@ -18290,7 +18294,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18290
18294
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
18291
18295
|
goto __pyx_L0;
|
18292
18296
|
|
18293
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18297
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
18294
18298
|
* PyArray_SetBaseObject(arr, base)
|
18295
18299
|
*
|
18296
18300
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -18305,7 +18309,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18305
18309
|
return __pyx_r;
|
18306
18310
|
}
|
18307
18311
|
|
18308
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18312
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1006
|
18309
18313
|
* # Versions of the import_* functions which are more suitable for
|
18310
18314
|
* # Cython code.
|
18311
18315
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -18332,7 +18336,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18332
18336
|
int __pyx_clineno = 0;
|
18333
18337
|
__Pyx_RefNannySetupContext("import_array", 0);
|
18334
18338
|
|
18335
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18339
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
18336
18340
|
* # Cython code.
|
18337
18341
|
* cdef inline int import_array() except -1:
|
18338
18342
|
* try: # <<<<<<<<<<<<<<
|
@@ -18348,7 +18352,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18348
18352
|
__Pyx_XGOTREF(__pyx_t_3);
|
18349
18353
|
/*try:*/ {
|
18350
18354
|
|
18351
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18355
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1008
|
18352
18356
|
* cdef inline int import_array() except -1:
|
18353
18357
|
* try:
|
18354
18358
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
@@ -18357,7 +18361,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18357
18361
|
*/
|
18358
18362
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1008, __pyx_L3_error)
|
18359
18363
|
|
18360
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18364
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
18361
18365
|
* # Cython code.
|
18362
18366
|
* cdef inline int import_array() except -1:
|
18363
18367
|
* try: # <<<<<<<<<<<<<<
|
@@ -18371,7 +18375,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18371
18375
|
goto __pyx_L8_try_end;
|
18372
18376
|
__pyx_L3_error:;
|
18373
18377
|
|
18374
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18378
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1009
|
18375
18379
|
* try:
|
18376
18380
|
* __pyx_import_array()
|
18377
18381
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18386,7 +18390,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18386
18390
|
__Pyx_XGOTREF(__pyx_t_6);
|
18387
18391
|
__Pyx_XGOTREF(__pyx_t_7);
|
18388
18392
|
|
18389
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18393
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1010
|
18390
18394
|
* __pyx_import_array()
|
18391
18395
|
* except Exception:
|
18392
18396
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
@@ -18411,7 +18415,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18411
18415
|
}
|
18412
18416
|
goto __pyx_L5_except_error;
|
18413
18417
|
|
18414
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18418
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
18415
18419
|
* # Cython code.
|
18416
18420
|
* cdef inline int import_array() except -1:
|
18417
18421
|
* try: # <<<<<<<<<<<<<<
|
@@ -18427,7 +18431,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18427
18431
|
__pyx_L8_try_end:;
|
18428
18432
|
}
|
18429
18433
|
|
18430
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18434
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1006
|
18431
18435
|
* # Versions of the import_* functions which are more suitable for
|
18432
18436
|
* # Cython code.
|
18433
18437
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -18452,7 +18456,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18452
18456
|
return __pyx_r;
|
18453
18457
|
}
|
18454
18458
|
|
18455
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18459
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1012
|
18456
18460
|
* raise ImportError("numpy._core.multiarray failed to import")
|
18457
18461
|
*
|
18458
18462
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -18479,7 +18483,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18479
18483
|
int __pyx_clineno = 0;
|
18480
18484
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
18481
18485
|
|
18482
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18486
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
18483
18487
|
*
|
18484
18488
|
* cdef inline int import_umath() except -1:
|
18485
18489
|
* try: # <<<<<<<<<<<<<<
|
@@ -18495,7 +18499,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18495
18499
|
__Pyx_XGOTREF(__pyx_t_3);
|
18496
18500
|
/*try:*/ {
|
18497
18501
|
|
18498
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18502
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1014
|
18499
18503
|
* cdef inline int import_umath() except -1:
|
18500
18504
|
* try:
|
18501
18505
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -18504,7 +18508,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18504
18508
|
*/
|
18505
18509
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1014, __pyx_L3_error)
|
18506
18510
|
|
18507
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18511
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
18508
18512
|
*
|
18509
18513
|
* cdef inline int import_umath() except -1:
|
18510
18514
|
* try: # <<<<<<<<<<<<<<
|
@@ -18518,7 +18522,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18518
18522
|
goto __pyx_L8_try_end;
|
18519
18523
|
__pyx_L3_error:;
|
18520
18524
|
|
18521
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18525
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1015
|
18522
18526
|
* try:
|
18523
18527
|
* _import_umath()
|
18524
18528
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18533,7 +18537,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18533
18537
|
__Pyx_XGOTREF(__pyx_t_6);
|
18534
18538
|
__Pyx_XGOTREF(__pyx_t_7);
|
18535
18539
|
|
18536
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18540
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
|
18537
18541
|
* _import_umath()
|
18538
18542
|
* except Exception:
|
18539
18543
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -18558,7 +18562,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18558
18562
|
}
|
18559
18563
|
goto __pyx_L5_except_error;
|
18560
18564
|
|
18561
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18565
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
18562
18566
|
*
|
18563
18567
|
* cdef inline int import_umath() except -1:
|
18564
18568
|
* try: # <<<<<<<<<<<<<<
|
@@ -18574,7 +18578,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18574
18578
|
__pyx_L8_try_end:;
|
18575
18579
|
}
|
18576
18580
|
|
18577
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18581
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1012
|
18578
18582
|
* raise ImportError("numpy._core.multiarray failed to import")
|
18579
18583
|
*
|
18580
18584
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -18599,7 +18603,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18599
18603
|
return __pyx_r;
|
18600
18604
|
}
|
18601
18605
|
|
18602
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18606
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1018
|
18603
18607
|
* raise ImportError("numpy._core.umath failed to import")
|
18604
18608
|
*
|
18605
18609
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -18626,7 +18630,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18626
18630
|
int __pyx_clineno = 0;
|
18627
18631
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
18628
18632
|
|
18629
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18633
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
18630
18634
|
*
|
18631
18635
|
* cdef inline int import_ufunc() except -1:
|
18632
18636
|
* try: # <<<<<<<<<<<<<<
|
@@ -18642,7 +18646,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18642
18646
|
__Pyx_XGOTREF(__pyx_t_3);
|
18643
18647
|
/*try:*/ {
|
18644
18648
|
|
18645
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18649
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1020
|
18646
18650
|
* cdef inline int import_ufunc() except -1:
|
18647
18651
|
* try:
|
18648
18652
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -18651,7 +18655,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18651
18655
|
*/
|
18652
18656
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1020, __pyx_L3_error)
|
18653
18657
|
|
18654
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18658
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
18655
18659
|
*
|
18656
18660
|
* cdef inline int import_ufunc() except -1:
|
18657
18661
|
* try: # <<<<<<<<<<<<<<
|
@@ -18665,7 +18669,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18665
18669
|
goto __pyx_L8_try_end;
|
18666
18670
|
__pyx_L3_error:;
|
18667
18671
|
|
18668
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18672
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1021
|
18669
18673
|
* try:
|
18670
18674
|
* _import_umath()
|
18671
18675
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18680,7 +18684,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18680
18684
|
__Pyx_XGOTREF(__pyx_t_6);
|
18681
18685
|
__Pyx_XGOTREF(__pyx_t_7);
|
18682
18686
|
|
18683
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18687
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1022
|
18684
18688
|
* _import_umath()
|
18685
18689
|
* except Exception:
|
18686
18690
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -18705,7 +18709,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18705
18709
|
}
|
18706
18710
|
goto __pyx_L5_except_error;
|
18707
18711
|
|
18708
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18712
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
18709
18713
|
*
|
18710
18714
|
* cdef inline int import_ufunc() except -1:
|
18711
18715
|
* try: # <<<<<<<<<<<<<<
|
@@ -18721,7 +18725,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18721
18725
|
__pyx_L8_try_end:;
|
18722
18726
|
}
|
18723
18727
|
|
18724
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18728
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1018
|
18725
18729
|
* raise ImportError("numpy._core.umath failed to import")
|
18726
18730
|
*
|
18727
18731
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -18746,7 +18750,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18746
18750
|
return __pyx_r;
|
18747
18751
|
}
|
18748
18752
|
|
18749
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18753
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1025
|
18750
18754
|
*
|
18751
18755
|
*
|
18752
18756
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18757,7 +18761,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18757
18761
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
18758
18762
|
int __pyx_r;
|
18759
18763
|
|
18760
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18764
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1037
|
18761
18765
|
* bool
|
18762
18766
|
* """
|
18763
18767
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
@@ -18767,7 +18771,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18767
18771
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
18768
18772
|
goto __pyx_L0;
|
18769
18773
|
|
18770
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18774
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1025
|
18771
18775
|
*
|
18772
18776
|
*
|
18773
18777
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18780,7 +18784,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18780
18784
|
return __pyx_r;
|
18781
18785
|
}
|
18782
18786
|
|
18783
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18787
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1040
|
18784
18788
|
*
|
18785
18789
|
*
|
18786
18790
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18791,7 +18795,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18791
18795
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
18792
18796
|
int __pyx_r;
|
18793
18797
|
|
18794
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18798
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
|
18795
18799
|
* bool
|
18796
18800
|
* """
|
18797
18801
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
@@ -18801,7 +18805,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18801
18805
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
18802
18806
|
goto __pyx_L0;
|
18803
18807
|
|
18804
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18808
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1040
|
18805
18809
|
*
|
18806
18810
|
*
|
18807
18811
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18814,7 +18818,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18814
18818
|
return __pyx_r;
|
18815
18819
|
}
|
18816
18820
|
|
18817
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18821
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1055
|
18818
18822
|
*
|
18819
18823
|
*
|
18820
18824
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18825,7 +18829,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18825
18829
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
18826
18830
|
npy_datetime __pyx_r;
|
18827
18831
|
|
18828
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18832
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1062
|
18829
18833
|
* also needed. That can be found using `get_datetime64_unit`.
|
18830
18834
|
* """
|
18831
18835
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -18835,7 +18839,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
18835
18839
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
18836
18840
|
goto __pyx_L0;
|
18837
18841
|
|
18838
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18842
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1055
|
18839
18843
|
*
|
18840
18844
|
*
|
18841
18845
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18848,7 +18852,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
18848
18852
|
return __pyx_r;
|
18849
18853
|
}
|
18850
18854
|
|
18851
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18855
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1065
|
18852
18856
|
*
|
18853
18857
|
*
|
18854
18858
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18859,7 +18863,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
18859
18863
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
18860
18864
|
npy_timedelta __pyx_r;
|
18861
18865
|
|
18862
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18866
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1069
|
18863
18867
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
18864
18868
|
* """
|
18865
18869
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -18869,7 +18873,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
18869
18873
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
18870
18874
|
goto __pyx_L0;
|
18871
18875
|
|
18872
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18876
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1065
|
18873
18877
|
*
|
18874
18878
|
*
|
18875
18879
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18882,7 +18886,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
18882
18886
|
return __pyx_r;
|
18883
18887
|
}
|
18884
18888
|
|
18885
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18889
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1072
|
18886
18890
|
*
|
18887
18891
|
*
|
18888
18892
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18893,7 +18897,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
18893
18897
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
18894
18898
|
NPY_DATETIMEUNIT __pyx_r;
|
18895
18899
|
|
18896
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18900
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1076
|
18897
18901
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
18898
18902
|
* """
|
18899
18903
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
@@ -18903,7 +18907,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
18903
18907
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
18904
18908
|
goto __pyx_L0;
|
18905
18909
|
|
18906
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18910
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-4c2_3p1w/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1072
|
18907
18911
|
*
|
18908
18912
|
*
|
18909
18913
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|