edsger 0.1.1__cp39-cp39-macosx_11_0_arm64.whl → 0.1.3__cp39-cp39-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- edsger/_version.py +1 -1
- edsger/commons.c +153 -149
- edsger/commons.cpython-39-darwin.so +0 -0
- edsger/dijkstra.c +7199 -2764
- edsger/dijkstra.cpython-39-darwin.so +0 -0
- edsger/dijkstra.pyx +525 -0
- edsger/path.py +145 -37
- edsger/path_tracking.c +153 -149
- edsger/path_tracking.cpython-39-darwin.so +0 -0
- edsger/path_tracking.pyx +2 -2
- edsger/pq_4ary_dec_0b.c +205 -201
- edsger/pq_4ary_dec_0b.cpython-39-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 +159 -178
- edsger/spiess_florian.cpython-39-darwin.so +0 -0
- edsger/star.c +153 -149
- edsger/star.cpython-39-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/commons.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.commons",
|
17
21
|
"sources": [
|
@@ -1377,7 +1381,7 @@ static const char *__pyx_filename;
|
|
1377
1381
|
|
1378
1382
|
static const char* const __pyx_f[] = {
|
1379
1383
|
"src/edsger/commons.pyx",
|
1380
|
-
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1384
|
+
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd",
|
1381
1385
|
"cpython/type.pxd",
|
1382
1386
|
};
|
1383
1387
|
/* #### Code section: utility_code_proto_before_types ### */
|
@@ -1539,7 +1543,7 @@ static const char* const __pyx_f[] = {
|
|
1539
1543
|
|
1540
1544
|
/* #### Code section: numeric_typedefs ### */
|
1541
1545
|
|
1542
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1546
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":770
|
1543
1547
|
* # in Cython to enable them only on the right systems.
|
1544
1548
|
*
|
1545
1549
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
@@ -1548,7 +1552,7 @@ static const char* const __pyx_f[] = {
|
|
1548
1552
|
*/
|
1549
1553
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
1550
1554
|
|
1551
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1555
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":771
|
1552
1556
|
*
|
1553
1557
|
* ctypedef npy_int8 int8_t
|
1554
1558
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
@@ -1557,7 +1561,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1557
1561
|
*/
|
1558
1562
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
1559
1563
|
|
1560
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1564
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":772
|
1561
1565
|
* ctypedef npy_int8 int8_t
|
1562
1566
|
* ctypedef npy_int16 int16_t
|
1563
1567
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
@@ -1566,7 +1570,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1566
1570
|
*/
|
1567
1571
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
1568
1572
|
|
1569
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1573
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":773
|
1570
1574
|
* ctypedef npy_int16 int16_t
|
1571
1575
|
* ctypedef npy_int32 int32_t
|
1572
1576
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
@@ -1575,7 +1579,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1575
1579
|
*/
|
1576
1580
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
1577
1581
|
|
1578
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1582
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":777
|
1579
1583
|
* #ctypedef npy_int128 int128_t
|
1580
1584
|
*
|
1581
1585
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
@@ -1584,7 +1588,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1584
1588
|
*/
|
1585
1589
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
1586
1590
|
|
1587
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1591
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":778
|
1588
1592
|
*
|
1589
1593
|
* ctypedef npy_uint8 uint8_t
|
1590
1594
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
@@ -1593,7 +1597,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1593
1597
|
*/
|
1594
1598
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
1595
1599
|
|
1596
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1600
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":779
|
1597
1601
|
* ctypedef npy_uint8 uint8_t
|
1598
1602
|
* ctypedef npy_uint16 uint16_t
|
1599
1603
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
@@ -1602,7 +1606,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1602
1606
|
*/
|
1603
1607
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
1604
1608
|
|
1605
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1609
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":780
|
1606
1610
|
* ctypedef npy_uint16 uint16_t
|
1607
1611
|
* ctypedef npy_uint32 uint32_t
|
1608
1612
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
@@ -1611,7 +1615,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1611
1615
|
*/
|
1612
1616
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
1613
1617
|
|
1614
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1618
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":784
|
1615
1619
|
* #ctypedef npy_uint128 uint128_t
|
1616
1620
|
*
|
1617
1621
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
@@ -1620,7 +1624,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1620
1624
|
*/
|
1621
1625
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
1622
1626
|
|
1623
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1627
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":785
|
1624
1628
|
*
|
1625
1629
|
* ctypedef npy_float32 float32_t
|
1626
1630
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
@@ -1629,7 +1633,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1629
1633
|
*/
|
1630
1634
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
1631
1635
|
|
1632
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1636
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":792
|
1633
1637
|
* ctypedef double complex complex128_t
|
1634
1638
|
*
|
1635
1639
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
@@ -1638,7 +1642,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1638
1642
|
*/
|
1639
1643
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
1640
1644
|
|
1641
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1645
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":793
|
1642
1646
|
*
|
1643
1647
|
* ctypedef npy_longlong longlong_t
|
1644
1648
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
@@ -1647,7 +1651,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1647
1651
|
*/
|
1648
1652
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
1649
1653
|
|
1650
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1654
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":795
|
1651
1655
|
* ctypedef npy_ulonglong ulonglong_t
|
1652
1656
|
*
|
1653
1657
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
@@ -1656,7 +1660,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1656
1660
|
*/
|
1657
1661
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
1658
1662
|
|
1659
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1663
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":796
|
1660
1664
|
*
|
1661
1665
|
* ctypedef npy_intp intp_t
|
1662
1666
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
@@ -1665,7 +1669,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1665
1669
|
*/
|
1666
1670
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
1667
1671
|
|
1668
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1672
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":798
|
1669
1673
|
* ctypedef npy_uintp uintp_t
|
1670
1674
|
*
|
1671
1675
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
@@ -1674,7 +1678,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1674
1678
|
*/
|
1675
1679
|
typedef npy_double __pyx_t_5numpy_float_t;
|
1676
1680
|
|
1677
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1681
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":799
|
1678
1682
|
*
|
1679
1683
|
* ctypedef npy_double float_t
|
1680
1684
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
@@ -1683,7 +1687,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
1683
1687
|
*/
|
1684
1688
|
typedef npy_double __pyx_t_5numpy_double_t;
|
1685
1689
|
|
1686
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1690
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":800
|
1687
1691
|
* ctypedef npy_double float_t
|
1688
1692
|
* ctypedef npy_double double_t
|
1689
1693
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
@@ -1741,7 +1745,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
1741
1745
|
|
1742
1746
|
/*--- Type declarations ---*/
|
1743
1747
|
|
1744
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1748
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1096
|
1745
1749
|
*
|
1746
1750
|
* # Iterator API added in v1.6
|
1747
1751
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil # <<<<<<<<<<<<<<
|
@@ -1750,7 +1754,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
1750
1754
|
*/
|
1751
1755
|
typedef int (*__pyx_t_5numpy_NpyIter_IterNextFunc)(NpyIter *);
|
1752
1756
|
|
1753
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1757
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1097
|
1754
1758
|
* # Iterator API added in v1.6
|
1755
1759
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil
|
1756
1760
|
* ctypedef void (*NpyIter_GetMultiIndexFunc)(NpyIter* it, npy_intp* outcoords) noexcept nogil # <<<<<<<<<<<<<<
|
@@ -2647,7 +2651,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
2647
2651
|
#endif
|
2648
2652
|
/* #### Code section: module_code ### */
|
2649
2653
|
|
2650
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2654
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":285
|
2651
2655
|
* cdef int type_num
|
2652
2656
|
*
|
2653
2657
|
* @property # <<<<<<<<<<<<<<
|
@@ -2658,7 +2662,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
2658
2662
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
2659
2663
|
npy_intp __pyx_r;
|
2660
2664
|
|
2661
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2665
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":287
|
2662
2666
|
* @property
|
2663
2667
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
2664
2668
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
@@ -2668,7 +2672,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
2668
2672
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
2669
2673
|
goto __pyx_L0;
|
2670
2674
|
|
2671
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2675
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":285
|
2672
2676
|
* cdef int type_num
|
2673
2677
|
*
|
2674
2678
|
* @property # <<<<<<<<<<<<<<
|
@@ -2681,7 +2685,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
2681
2685
|
return __pyx_r;
|
2682
2686
|
}
|
2683
2687
|
|
2684
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2688
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":289
|
2685
2689
|
* return PyDataType_ELSIZE(self)
|
2686
2690
|
*
|
2687
2691
|
* @property # <<<<<<<<<<<<<<
|
@@ -2692,7 +2696,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
2692
2696
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
2693
2697
|
npy_intp __pyx_r;
|
2694
2698
|
|
2695
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2699
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":291
|
2696
2700
|
* @property
|
2697
2701
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
2698
2702
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
@@ -2702,7 +2706,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
2702
2706
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
2703
2707
|
goto __pyx_L0;
|
2704
2708
|
|
2705
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2709
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":289
|
2706
2710
|
* return PyDataType_ELSIZE(self)
|
2707
2711
|
*
|
2708
2712
|
* @property # <<<<<<<<<<<<<<
|
@@ -2715,7 +2719,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
2715
2719
|
return __pyx_r;
|
2716
2720
|
}
|
2717
2721
|
|
2718
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2722
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":295
|
2719
2723
|
* # Use fields/names with care as they may be NULL. You must check
|
2720
2724
|
* # for this using PyDataType_HASFIELDS.
|
2721
2725
|
* @property # <<<<<<<<<<<<<<
|
@@ -2729,7 +2733,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
2729
2733
|
PyObject *__pyx_t_1;
|
2730
2734
|
__Pyx_RefNannySetupContext("fields", 0);
|
2731
2735
|
|
2732
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2736
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":297
|
2733
2737
|
* @property
|
2734
2738
|
* cdef inline object fields(self):
|
2735
2739
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
@@ -2742,7 +2746,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
2742
2746
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
2743
2747
|
goto __pyx_L0;
|
2744
2748
|
|
2745
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2749
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":295
|
2746
2750
|
* # Use fields/names with care as they may be NULL. You must check
|
2747
2751
|
* # for this using PyDataType_HASFIELDS.
|
2748
2752
|
* @property # <<<<<<<<<<<<<<
|
@@ -2757,7 +2761,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
2757
2761
|
return __pyx_r;
|
2758
2762
|
}
|
2759
2763
|
|
2760
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2764
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":299
|
2761
2765
|
* return <object>PyDataType_FIELDS(self)
|
2762
2766
|
*
|
2763
2767
|
* @property # <<<<<<<<<<<<<<
|
@@ -2771,7 +2775,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2771
2775
|
PyObject *__pyx_t_1;
|
2772
2776
|
__Pyx_RefNannySetupContext("names", 0);
|
2773
2777
|
|
2774
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2778
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":301
|
2775
2779
|
* @property
|
2776
2780
|
* cdef inline tuple names(self):
|
2777
2781
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
@@ -2784,7 +2788,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2784
2788
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
2785
2789
|
goto __pyx_L0;
|
2786
2790
|
|
2787
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2791
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":299
|
2788
2792
|
* return <object>PyDataType_FIELDS(self)
|
2789
2793
|
*
|
2790
2794
|
* @property # <<<<<<<<<<<<<<
|
@@ -2799,7 +2803,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2799
2803
|
return __pyx_r;
|
2800
2804
|
}
|
2801
2805
|
|
2802
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2806
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":306
|
2803
2807
|
* # valid (the pointer can be NULL). Most users should access
|
2804
2808
|
* # this field via the inline helper method PyDataType_SHAPE.
|
2805
2809
|
* @property # <<<<<<<<<<<<<<
|
@@ -2810,7 +2814,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2810
2814
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
2811
2815
|
PyArray_ArrayDescr *__pyx_r;
|
2812
2816
|
|
2813
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2817
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":308
|
2814
2818
|
* @property
|
2815
2819
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
2816
2820
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
@@ -2820,7 +2824,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
2820
2824
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
2821
2825
|
goto __pyx_L0;
|
2822
2826
|
|
2823
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2827
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":306
|
2824
2828
|
* # valid (the pointer can be NULL). Most users should access
|
2825
2829
|
* # this field via the inline helper method PyDataType_SHAPE.
|
2826
2830
|
* @property # <<<<<<<<<<<<<<
|
@@ -2833,7 +2837,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
2833
2837
|
return __pyx_r;
|
2834
2838
|
}
|
2835
2839
|
|
2836
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2840
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":310
|
2837
2841
|
* return PyDataType_SUBARRAY(self)
|
2838
2842
|
*
|
2839
2843
|
* @property # <<<<<<<<<<<<<<
|
@@ -2844,7 +2848,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
2844
2848
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
2845
2849
|
npy_uint64 __pyx_r;
|
2846
2850
|
|
2847
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2851
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":313
|
2848
2852
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
2849
2853
|
* """The data types flags."""
|
2850
2854
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
@@ -2854,7 +2858,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
2854
2858
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
2855
2859
|
goto __pyx_L0;
|
2856
2860
|
|
2857
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2861
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":310
|
2858
2862
|
* return PyDataType_SUBARRAY(self)
|
2859
2863
|
*
|
2860
2864
|
* @property # <<<<<<<<<<<<<<
|
@@ -2867,7 +2871,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
2867
2871
|
return __pyx_r;
|
2868
2872
|
}
|
2869
2873
|
|
2870
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2874
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":322
|
2871
2875
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
2872
2876
|
*
|
2873
2877
|
* @property # <<<<<<<<<<<<<<
|
@@ -2878,7 +2882,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
2878
2882
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
2879
2883
|
int __pyx_r;
|
2880
2884
|
|
2881
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2885
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":325
|
2882
2886
|
* cdef inline int numiter(self) noexcept nogil:
|
2883
2887
|
* """The number of arrays that need to be broadcast to the same shape."""
|
2884
2888
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
@@ -2888,7 +2892,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
2888
2892
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
2889
2893
|
goto __pyx_L0;
|
2890
2894
|
|
2891
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2895
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":322
|
2892
2896
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
2893
2897
|
*
|
2894
2898
|
* @property # <<<<<<<<<<<<<<
|
@@ -2901,7 +2905,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
2901
2905
|
return __pyx_r;
|
2902
2906
|
}
|
2903
2907
|
|
2904
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2908
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":327
|
2905
2909
|
* return PyArray_MultiIter_NUMITER(self)
|
2906
2910
|
*
|
2907
2911
|
* @property # <<<<<<<<<<<<<<
|
@@ -2912,7 +2916,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
2912
2916
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
2913
2917
|
npy_intp __pyx_r;
|
2914
2918
|
|
2915
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2919
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":330
|
2916
2920
|
* cdef inline npy_intp size(self) noexcept nogil:
|
2917
2921
|
* """The total broadcasted size."""
|
2918
2922
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -2922,7 +2926,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
2922
2926
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
2923
2927
|
goto __pyx_L0;
|
2924
2928
|
|
2925
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2929
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":327
|
2926
2930
|
* return PyArray_MultiIter_NUMITER(self)
|
2927
2931
|
*
|
2928
2932
|
* @property # <<<<<<<<<<<<<<
|
@@ -2935,7 +2939,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
2935
2939
|
return __pyx_r;
|
2936
2940
|
}
|
2937
2941
|
|
2938
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2942
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":332
|
2939
2943
|
* return PyArray_MultiIter_SIZE(self)
|
2940
2944
|
*
|
2941
2945
|
* @property # <<<<<<<<<<<<<<
|
@@ -2946,7 +2950,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
2946
2950
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
2947
2951
|
npy_intp __pyx_r;
|
2948
2952
|
|
2949
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2953
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":335
|
2950
2954
|
* cdef inline npy_intp index(self) noexcept nogil:
|
2951
2955
|
* """The current (1-d) index into the broadcasted result."""
|
2952
2956
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
@@ -2956,7 +2960,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
2956
2960
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
2957
2961
|
goto __pyx_L0;
|
2958
2962
|
|
2959
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2963
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":332
|
2960
2964
|
* return PyArray_MultiIter_SIZE(self)
|
2961
2965
|
*
|
2962
2966
|
* @property # <<<<<<<<<<<<<<
|
@@ -2969,7 +2973,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
2969
2973
|
return __pyx_r;
|
2970
2974
|
}
|
2971
2975
|
|
2972
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2976
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":337
|
2973
2977
|
* return PyArray_MultiIter_INDEX(self)
|
2974
2978
|
*
|
2975
2979
|
* @property # <<<<<<<<<<<<<<
|
@@ -2980,7 +2984,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
2980
2984
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
2981
2985
|
int __pyx_r;
|
2982
2986
|
|
2983
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2987
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":340
|
2984
2988
|
* cdef inline int nd(self) noexcept nogil:
|
2985
2989
|
* """The number of dimensions in the broadcasted result."""
|
2986
2990
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -2990,7 +2994,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
2990
2994
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
2991
2995
|
goto __pyx_L0;
|
2992
2996
|
|
2993
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2997
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":337
|
2994
2998
|
* return PyArray_MultiIter_INDEX(self)
|
2995
2999
|
*
|
2996
3000
|
* @property # <<<<<<<<<<<<<<
|
@@ -3003,7 +3007,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
3003
3007
|
return __pyx_r;
|
3004
3008
|
}
|
3005
3009
|
|
3006
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3010
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":342
|
3007
3011
|
* return PyArray_MultiIter_NDIM(self)
|
3008
3012
|
*
|
3009
3013
|
* @property # <<<<<<<<<<<<<<
|
@@ -3014,7 +3018,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
3014
3018
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
3015
3019
|
npy_intp *__pyx_r;
|
3016
3020
|
|
3017
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3021
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":345
|
3018
3022
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
3019
3023
|
* """The shape of the broadcasted result."""
|
3020
3024
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -3024,7 +3028,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
3024
3028
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
3025
3029
|
goto __pyx_L0;
|
3026
3030
|
|
3027
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3031
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":342
|
3028
3032
|
* return PyArray_MultiIter_NDIM(self)
|
3029
3033
|
*
|
3030
3034
|
* @property # <<<<<<<<<<<<<<
|
@@ -3037,7 +3041,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
3037
3041
|
return __pyx_r;
|
3038
3042
|
}
|
3039
3043
|
|
3040
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3044
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":347
|
3041
3045
|
* return PyArray_MultiIter_DIMS(self)
|
3042
3046
|
*
|
3043
3047
|
* @property # <<<<<<<<<<<<<<
|
@@ -3048,7 +3052,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
3048
3052
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
3049
3053
|
void **__pyx_r;
|
3050
3054
|
|
3051
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3055
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":351
|
3052
3056
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
3053
3057
|
* On return, the iterators are adjusted for broadcasting."""
|
3054
3058
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
@@ -3058,7 +3062,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
3058
3062
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
3059
3063
|
goto __pyx_L0;
|
3060
3064
|
|
3061
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3065
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":347
|
3062
3066
|
* return PyArray_MultiIter_DIMS(self)
|
3063
3067
|
*
|
3064
3068
|
* @property # <<<<<<<<<<<<<<
|
@@ -3071,7 +3075,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
3071
3075
|
return __pyx_r;
|
3072
3076
|
}
|
3073
3077
|
|
3074
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3078
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":365
|
3075
3079
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
3076
3080
|
*
|
3077
3081
|
* @property # <<<<<<<<<<<<<<
|
@@ -3082,7 +3086,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
3082
3086
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
3083
3087
|
PyObject *__pyx_r;
|
3084
3088
|
|
3085
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3089
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":369
|
3086
3090
|
* """Returns a borrowed reference to the object owning the data/memory.
|
3087
3091
|
* """
|
3088
3092
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
@@ -3092,7 +3096,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
3092
3096
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
3093
3097
|
goto __pyx_L0;
|
3094
3098
|
|
3095
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3099
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":365
|
3096
3100
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
3097
3101
|
*
|
3098
3102
|
* @property # <<<<<<<<<<<<<<
|
@@ -3105,7 +3109,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
3105
3109
|
return __pyx_r;
|
3106
3110
|
}
|
3107
3111
|
|
3108
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3112
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":371
|
3109
3113
|
* return PyArray_BASE(self)
|
3110
3114
|
*
|
3111
3115
|
* @property # <<<<<<<<<<<<<<
|
@@ -3119,7 +3123,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3119
3123
|
PyArray_Descr *__pyx_t_1;
|
3120
3124
|
__Pyx_RefNannySetupContext("descr", 0);
|
3121
3125
|
|
3122
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3126
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":375
|
3123
3127
|
* """Returns an owned reference to the dtype of the array.
|
3124
3128
|
* """
|
3125
3129
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
@@ -3132,7 +3136,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3132
3136
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
3133
3137
|
goto __pyx_L0;
|
3134
3138
|
|
3135
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3139
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":371
|
3136
3140
|
* return PyArray_BASE(self)
|
3137
3141
|
*
|
3138
3142
|
* @property # <<<<<<<<<<<<<<
|
@@ -3147,7 +3151,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3147
3151
|
return __pyx_r;
|
3148
3152
|
}
|
3149
3153
|
|
3150
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3154
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":377
|
3151
3155
|
* return <dtype>PyArray_DESCR(self)
|
3152
3156
|
*
|
3153
3157
|
* @property # <<<<<<<<<<<<<<
|
@@ -3158,7 +3162,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3158
3162
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
3159
3163
|
int __pyx_r;
|
3160
3164
|
|
3161
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3165
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":381
|
3162
3166
|
* """Returns the number of dimensions in the array.
|
3163
3167
|
* """
|
3164
3168
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -3168,7 +3172,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
3168
3172
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
3169
3173
|
goto __pyx_L0;
|
3170
3174
|
|
3171
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3175
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":377
|
3172
3176
|
* return <dtype>PyArray_DESCR(self)
|
3173
3177
|
*
|
3174
3178
|
* @property # <<<<<<<<<<<<<<
|
@@ -3181,7 +3185,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
3181
3185
|
return __pyx_r;
|
3182
3186
|
}
|
3183
3187
|
|
3184
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3188
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":383
|
3185
3189
|
* return PyArray_NDIM(self)
|
3186
3190
|
*
|
3187
3191
|
* @property # <<<<<<<<<<<<<<
|
@@ -3192,7 +3196,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
3192
3196
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
3193
3197
|
npy_intp *__pyx_r;
|
3194
3198
|
|
3195
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3199
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":389
|
3196
3200
|
* Can return NULL for 0-dimensional arrays.
|
3197
3201
|
* """
|
3198
3202
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -3202,7 +3206,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
3202
3206
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
3203
3207
|
goto __pyx_L0;
|
3204
3208
|
|
3205
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3209
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":383
|
3206
3210
|
* return PyArray_NDIM(self)
|
3207
3211
|
*
|
3208
3212
|
* @property # <<<<<<<<<<<<<<
|
@@ -3215,7 +3219,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
3215
3219
|
return __pyx_r;
|
3216
3220
|
}
|
3217
3221
|
|
3218
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3222
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":391
|
3219
3223
|
* return PyArray_DIMS(self)
|
3220
3224
|
*
|
3221
3225
|
* @property # <<<<<<<<<<<<<<
|
@@ -3226,7 +3230,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
3226
3230
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
3227
3231
|
npy_intp *__pyx_r;
|
3228
3232
|
|
3229
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3233
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":396
|
3230
3234
|
* The number of elements matches the number of dimensions of the array (ndim).
|
3231
3235
|
* """
|
3232
3236
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
@@ -3236,7 +3240,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
3236
3240
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
3237
3241
|
goto __pyx_L0;
|
3238
3242
|
|
3239
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3243
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":391
|
3240
3244
|
* return PyArray_DIMS(self)
|
3241
3245
|
*
|
3242
3246
|
* @property # <<<<<<<<<<<<<<
|
@@ -3249,7 +3253,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
3249
3253
|
return __pyx_r;
|
3250
3254
|
}
|
3251
3255
|
|
3252
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3256
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":398
|
3253
3257
|
* return PyArray_STRIDES(self)
|
3254
3258
|
*
|
3255
3259
|
* @property # <<<<<<<<<<<<<<
|
@@ -3260,7 +3264,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
3260
3264
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
3261
3265
|
npy_intp __pyx_r;
|
3262
3266
|
|
3263
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3267
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":402
|
3264
3268
|
* """Returns the total size (in number of elements) of the array.
|
3265
3269
|
* """
|
3266
3270
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -3270,7 +3274,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
3270
3274
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
3271
3275
|
goto __pyx_L0;
|
3272
3276
|
|
3273
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3277
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":398
|
3274
3278
|
* return PyArray_STRIDES(self)
|
3275
3279
|
*
|
3276
3280
|
* @property # <<<<<<<<<<<<<<
|
@@ -3283,7 +3287,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
3283
3287
|
return __pyx_r;
|
3284
3288
|
}
|
3285
3289
|
|
3286
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3290
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":404
|
3287
3291
|
* return PyArray_SIZE(self)
|
3288
3292
|
*
|
3289
3293
|
* @property # <<<<<<<<<<<<<<
|
@@ -3294,7 +3298,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
3294
3298
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
3295
3299
|
char *__pyx_r;
|
3296
3300
|
|
3297
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3301
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":411
|
3298
3302
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
3299
3303
|
* """
|
3300
3304
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
@@ -3304,7 +3308,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
3304
3308
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
3305
3309
|
goto __pyx_L0;
|
3306
3310
|
|
3307
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3311
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":404
|
3308
3312
|
* return PyArray_SIZE(self)
|
3309
3313
|
*
|
3310
3314
|
* @property # <<<<<<<<<<<<<<
|
@@ -3317,7 +3321,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
3317
3321
|
return __pyx_r;
|
3318
3322
|
}
|
3319
3323
|
|
3320
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3324
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":807
|
3321
3325
|
* ctypedef long double complex clongdouble_t
|
3322
3326
|
*
|
3323
3327
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -3334,7 +3338,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
3334
3338
|
int __pyx_clineno = 0;
|
3335
3339
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
3336
3340
|
|
3337
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3341
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":808
|
3338
3342
|
*
|
3339
3343
|
* cdef inline object PyArray_MultiIterNew1(a):
|
3340
3344
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
@@ -3348,7 +3352,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
3348
3352
|
__pyx_t_1 = 0;
|
3349
3353
|
goto __pyx_L0;
|
3350
3354
|
|
3351
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3355
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":807
|
3352
3356
|
* ctypedef long double complex clongdouble_t
|
3353
3357
|
*
|
3354
3358
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -3367,7 +3371,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
3367
3371
|
return __pyx_r;
|
3368
3372
|
}
|
3369
3373
|
|
3370
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3374
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":810
|
3371
3375
|
* return PyArray_MultiIterNew(1, <void*>a)
|
3372
3376
|
*
|
3373
3377
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -3384,7 +3388,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
3384
3388
|
int __pyx_clineno = 0;
|
3385
3389
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
3386
3390
|
|
3387
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3391
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":811
|
3388
3392
|
*
|
3389
3393
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
3390
3394
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
@@ -3398,7 +3402,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
3398
3402
|
__pyx_t_1 = 0;
|
3399
3403
|
goto __pyx_L0;
|
3400
3404
|
|
3401
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3405
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":810
|
3402
3406
|
* return PyArray_MultiIterNew(1, <void*>a)
|
3403
3407
|
*
|
3404
3408
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -3417,7 +3421,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
3417
3421
|
return __pyx_r;
|
3418
3422
|
}
|
3419
3423
|
|
3420
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3424
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":813
|
3421
3425
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
3422
3426
|
*
|
3423
3427
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -3434,7 +3438,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
3434
3438
|
int __pyx_clineno = 0;
|
3435
3439
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
3436
3440
|
|
3437
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3441
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":814
|
3438
3442
|
*
|
3439
3443
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
3440
3444
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
@@ -3448,7 +3452,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
3448
3452
|
__pyx_t_1 = 0;
|
3449
3453
|
goto __pyx_L0;
|
3450
3454
|
|
3451
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3455
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":813
|
3452
3456
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
3453
3457
|
*
|
3454
3458
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -3467,7 +3471,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
3467
3471
|
return __pyx_r;
|
3468
3472
|
}
|
3469
3473
|
|
3470
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3474
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":816
|
3471
3475
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
3472
3476
|
*
|
3473
3477
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -3484,7 +3488,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
3484
3488
|
int __pyx_clineno = 0;
|
3485
3489
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
3486
3490
|
|
3487
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3491
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":817
|
3488
3492
|
*
|
3489
3493
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
3490
3494
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
@@ -3498,7 +3502,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
3498
3502
|
__pyx_t_1 = 0;
|
3499
3503
|
goto __pyx_L0;
|
3500
3504
|
|
3501
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3505
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":816
|
3502
3506
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
3503
3507
|
*
|
3504
3508
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -3517,7 +3521,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
3517
3521
|
return __pyx_r;
|
3518
3522
|
}
|
3519
3523
|
|
3520
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3524
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":819
|
3521
3525
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
3522
3526
|
*
|
3523
3527
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -3534,7 +3538,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
3534
3538
|
int __pyx_clineno = 0;
|
3535
3539
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
3536
3540
|
|
3537
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3541
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":820
|
3538
3542
|
*
|
3539
3543
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
3540
3544
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
@@ -3548,7 +3552,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
3548
3552
|
__pyx_t_1 = 0;
|
3549
3553
|
goto __pyx_L0;
|
3550
3554
|
|
3551
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3555
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":819
|
3552
3556
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
3553
3557
|
*
|
3554
3558
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -3567,7 +3571,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
3567
3571
|
return __pyx_r;
|
3568
3572
|
}
|
3569
3573
|
|
3570
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3574
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":822
|
3571
3575
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
3572
3576
|
*
|
3573
3577
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -3582,7 +3586,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3582
3586
|
PyObject *__pyx_t_2;
|
3583
3587
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
3584
3588
|
|
3585
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3589
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":823
|
3586
3590
|
*
|
3587
3591
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
3588
3592
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -3592,7 +3596,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3592
3596
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
3593
3597
|
if (__pyx_t_1) {
|
3594
3598
|
|
3595
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3599
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":824
|
3596
3600
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
3597
3601
|
* if PyDataType_HASSUBARRAY(d):
|
3598
3602
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
@@ -3605,7 +3609,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3605
3609
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
3606
3610
|
goto __pyx_L0;
|
3607
3611
|
|
3608
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3612
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":823
|
3609
3613
|
*
|
3610
3614
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
3611
3615
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -3614,7 +3618,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3614
3618
|
*/
|
3615
3619
|
}
|
3616
3620
|
|
3617
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3621
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":826
|
3618
3622
|
* return <tuple>d.subarray.shape
|
3619
3623
|
* else:
|
3620
3624
|
* return () # <<<<<<<<<<<<<<
|
@@ -3628,7 +3632,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3628
3632
|
goto __pyx_L0;
|
3629
3633
|
}
|
3630
3634
|
|
3631
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3635
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":822
|
3632
3636
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
3633
3637
|
*
|
3634
3638
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -3643,7 +3647,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3643
3647
|
return __pyx_r;
|
3644
3648
|
}
|
3645
3649
|
|
3646
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3650
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1010
|
3647
3651
|
* int _import_umath() except -1
|
3648
3652
|
*
|
3649
3653
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -3657,7 +3661,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3657
3661
|
const char *__pyx_filename = NULL;
|
3658
3662
|
int __pyx_clineno = 0;
|
3659
3663
|
|
3660
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3664
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1011
|
3661
3665
|
*
|
3662
3666
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
3663
3667
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
@@ -3666,7 +3670,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3666
3670
|
*/
|
3667
3671
|
Py_INCREF(__pyx_v_base);
|
3668
3672
|
|
3669
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3673
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1012
|
3670
3674
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
3671
3675
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
3672
3676
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
@@ -3675,7 +3679,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3675
3679
|
*/
|
3676
3680
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 1012, __pyx_L1_error)
|
3677
3681
|
|
3678
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3682
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1010
|
3679
3683
|
* int _import_umath() except -1
|
3680
3684
|
*
|
3681
3685
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -3690,7 +3694,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3690
3694
|
__pyx_L0:;
|
3691
3695
|
}
|
3692
3696
|
|
3693
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3697
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1014
|
3694
3698
|
* PyArray_SetBaseObject(arr, base)
|
3695
3699
|
*
|
3696
3700
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -3705,7 +3709,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3705
3709
|
int __pyx_t_1;
|
3706
3710
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
3707
3711
|
|
3708
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3712
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1015
|
3709
3713
|
*
|
3710
3714
|
* cdef inline object get_array_base(ndarray arr):
|
3711
3715
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
@@ -3714,7 +3718,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3714
3718
|
*/
|
3715
3719
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
3716
3720
|
|
3717
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3721
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1016
|
3718
3722
|
* cdef inline object get_array_base(ndarray arr):
|
3719
3723
|
* base = PyArray_BASE(arr)
|
3720
3724
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -3724,7 +3728,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3724
3728
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
3725
3729
|
if (__pyx_t_1) {
|
3726
3730
|
|
3727
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3731
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1017
|
3728
3732
|
* base = PyArray_BASE(arr)
|
3729
3733
|
* if base is NULL:
|
3730
3734
|
* return None # <<<<<<<<<<<<<<
|
@@ -3735,7 +3739,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3735
3739
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
3736
3740
|
goto __pyx_L0;
|
3737
3741
|
|
3738
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3742
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1016
|
3739
3743
|
* cdef inline object get_array_base(ndarray arr):
|
3740
3744
|
* base = PyArray_BASE(arr)
|
3741
3745
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -3744,7 +3748,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3744
3748
|
*/
|
3745
3749
|
}
|
3746
3750
|
|
3747
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3751
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1018
|
3748
3752
|
* if base is NULL:
|
3749
3753
|
* return None
|
3750
3754
|
* return <object>base # <<<<<<<<<<<<<<
|
@@ -3756,7 +3760,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3756
3760
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
3757
3761
|
goto __pyx_L0;
|
3758
3762
|
|
3759
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3763
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1014
|
3760
3764
|
* PyArray_SetBaseObject(arr, base)
|
3761
3765
|
*
|
3762
3766
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -3771,7 +3775,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3771
3775
|
return __pyx_r;
|
3772
3776
|
}
|
3773
3777
|
|
3774
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3778
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1022
|
3775
3779
|
* # Versions of the import_* functions which are more suitable for
|
3776
3780
|
* # Cython code.
|
3777
3781
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -3798,7 +3802,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3798
3802
|
int __pyx_clineno = 0;
|
3799
3803
|
__Pyx_RefNannySetupContext("import_array", 0);
|
3800
3804
|
|
3801
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3805
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
3802
3806
|
* # Cython code.
|
3803
3807
|
* cdef inline int import_array() except -1:
|
3804
3808
|
* try: # <<<<<<<<<<<<<<
|
@@ -3814,7 +3818,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3814
3818
|
__Pyx_XGOTREF(__pyx_t_3);
|
3815
3819
|
/*try:*/ {
|
3816
3820
|
|
3817
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3821
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1024
|
3818
3822
|
* cdef inline int import_array() except -1:
|
3819
3823
|
* try:
|
3820
3824
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
@@ -3823,7 +3827,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3823
3827
|
*/
|
3824
3828
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1024, __pyx_L3_error)
|
3825
3829
|
|
3826
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3830
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
3827
3831
|
* # Cython code.
|
3828
3832
|
* cdef inline int import_array() except -1:
|
3829
3833
|
* try: # <<<<<<<<<<<<<<
|
@@ -3837,7 +3841,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3837
3841
|
goto __pyx_L8_try_end;
|
3838
3842
|
__pyx_L3_error:;
|
3839
3843
|
|
3840
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3844
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1025
|
3841
3845
|
* try:
|
3842
3846
|
* __pyx_import_array()
|
3843
3847
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -3852,7 +3856,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3852
3856
|
__Pyx_XGOTREF(__pyx_t_6);
|
3853
3857
|
__Pyx_XGOTREF(__pyx_t_7);
|
3854
3858
|
|
3855
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3859
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1026
|
3856
3860
|
* __pyx_import_array()
|
3857
3861
|
* except Exception:
|
3858
3862
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
@@ -3877,7 +3881,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3877
3881
|
}
|
3878
3882
|
goto __pyx_L5_except_error;
|
3879
3883
|
|
3880
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3884
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
3881
3885
|
* # Cython code.
|
3882
3886
|
* cdef inline int import_array() except -1:
|
3883
3887
|
* try: # <<<<<<<<<<<<<<
|
@@ -3893,7 +3897,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3893
3897
|
__pyx_L8_try_end:;
|
3894
3898
|
}
|
3895
3899
|
|
3896
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3900
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1022
|
3897
3901
|
* # Versions of the import_* functions which are more suitable for
|
3898
3902
|
* # Cython code.
|
3899
3903
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -3918,7 +3922,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3918
3922
|
return __pyx_r;
|
3919
3923
|
}
|
3920
3924
|
|
3921
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3925
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1028
|
3922
3926
|
* raise ImportError("numpy._core.multiarray failed to import")
|
3923
3927
|
*
|
3924
3928
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -3945,7 +3949,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3945
3949
|
int __pyx_clineno = 0;
|
3946
3950
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
3947
3951
|
|
3948
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3952
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
3949
3953
|
*
|
3950
3954
|
* cdef inline int import_umath() except -1:
|
3951
3955
|
* try: # <<<<<<<<<<<<<<
|
@@ -3961,7 +3965,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3961
3965
|
__Pyx_XGOTREF(__pyx_t_3);
|
3962
3966
|
/*try:*/ {
|
3963
3967
|
|
3964
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3968
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1030
|
3965
3969
|
* cdef inline int import_umath() except -1:
|
3966
3970
|
* try:
|
3967
3971
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -3970,7 +3974,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3970
3974
|
*/
|
3971
3975
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1030, __pyx_L3_error)
|
3972
3976
|
|
3973
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3977
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
3974
3978
|
*
|
3975
3979
|
* cdef inline int import_umath() except -1:
|
3976
3980
|
* try: # <<<<<<<<<<<<<<
|
@@ -3984,7 +3988,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3984
3988
|
goto __pyx_L8_try_end;
|
3985
3989
|
__pyx_L3_error:;
|
3986
3990
|
|
3987
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3991
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1031
|
3988
3992
|
* try:
|
3989
3993
|
* _import_umath()
|
3990
3994
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -3999,7 +4003,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3999
4003
|
__Pyx_XGOTREF(__pyx_t_6);
|
4000
4004
|
__Pyx_XGOTREF(__pyx_t_7);
|
4001
4005
|
|
4002
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4006
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1032
|
4003
4007
|
* _import_umath()
|
4004
4008
|
* except Exception:
|
4005
4009
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -4024,7 +4028,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
4024
4028
|
}
|
4025
4029
|
goto __pyx_L5_except_error;
|
4026
4030
|
|
4027
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4031
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
4028
4032
|
*
|
4029
4033
|
* cdef inline int import_umath() except -1:
|
4030
4034
|
* try: # <<<<<<<<<<<<<<
|
@@ -4040,7 +4044,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
4040
4044
|
__pyx_L8_try_end:;
|
4041
4045
|
}
|
4042
4046
|
|
4043
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4047
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1028
|
4044
4048
|
* raise ImportError("numpy._core.multiarray failed to import")
|
4045
4049
|
*
|
4046
4050
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -4065,7 +4069,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
4065
4069
|
return __pyx_r;
|
4066
4070
|
}
|
4067
4071
|
|
4068
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4072
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1034
|
4069
4073
|
* raise ImportError("numpy._core.umath failed to import")
|
4070
4074
|
*
|
4071
4075
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -4092,7 +4096,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4092
4096
|
int __pyx_clineno = 0;
|
4093
4097
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
4094
4098
|
|
4095
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4099
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
4096
4100
|
*
|
4097
4101
|
* cdef inline int import_ufunc() except -1:
|
4098
4102
|
* try: # <<<<<<<<<<<<<<
|
@@ -4108,7 +4112,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4108
4112
|
__Pyx_XGOTREF(__pyx_t_3);
|
4109
4113
|
/*try:*/ {
|
4110
4114
|
|
4111
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4115
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1036
|
4112
4116
|
* cdef inline int import_ufunc() except -1:
|
4113
4117
|
* try:
|
4114
4118
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -4117,7 +4121,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4117
4121
|
*/
|
4118
4122
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1036, __pyx_L3_error)
|
4119
4123
|
|
4120
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4124
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
4121
4125
|
*
|
4122
4126
|
* cdef inline int import_ufunc() except -1:
|
4123
4127
|
* try: # <<<<<<<<<<<<<<
|
@@ -4131,7 +4135,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4131
4135
|
goto __pyx_L8_try_end;
|
4132
4136
|
__pyx_L3_error:;
|
4133
4137
|
|
4134
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4138
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1037
|
4135
4139
|
* try:
|
4136
4140
|
* _import_umath()
|
4137
4141
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -4146,7 +4150,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4146
4150
|
__Pyx_XGOTREF(__pyx_t_6);
|
4147
4151
|
__Pyx_XGOTREF(__pyx_t_7);
|
4148
4152
|
|
4149
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4153
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1038
|
4150
4154
|
* _import_umath()
|
4151
4155
|
* except Exception:
|
4152
4156
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -4171,7 +4175,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4171
4175
|
}
|
4172
4176
|
goto __pyx_L5_except_error;
|
4173
4177
|
|
4174
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4178
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
4175
4179
|
*
|
4176
4180
|
* cdef inline int import_ufunc() except -1:
|
4177
4181
|
* try: # <<<<<<<<<<<<<<
|
@@ -4187,7 +4191,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4187
4191
|
__pyx_L8_try_end:;
|
4188
4192
|
}
|
4189
4193
|
|
4190
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4194
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1034
|
4191
4195
|
* raise ImportError("numpy._core.umath failed to import")
|
4192
4196
|
*
|
4193
4197
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -4212,7 +4216,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4212
4216
|
return __pyx_r;
|
4213
4217
|
}
|
4214
4218
|
|
4215
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4219
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1041
|
4216
4220
|
*
|
4217
4221
|
*
|
4218
4222
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4223,7 +4227,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4223
4227
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
4224
4228
|
int __pyx_r;
|
4225
4229
|
|
4226
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4230
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1053
|
4227
4231
|
* bool
|
4228
4232
|
* """
|
4229
4233
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
@@ -4233,7 +4237,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
4233
4237
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
4234
4238
|
goto __pyx_L0;
|
4235
4239
|
|
4236
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4240
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1041
|
4237
4241
|
*
|
4238
4242
|
*
|
4239
4243
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4246,7 +4250,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
4246
4250
|
return __pyx_r;
|
4247
4251
|
}
|
4248
4252
|
|
4249
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4253
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1056
|
4250
4254
|
*
|
4251
4255
|
*
|
4252
4256
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4257,7 +4261,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
4257
4261
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
4258
4262
|
int __pyx_r;
|
4259
4263
|
|
4260
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4264
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1068
|
4261
4265
|
* bool
|
4262
4266
|
* """
|
4263
4267
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
@@ -4267,7 +4271,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
4267
4271
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
4268
4272
|
goto __pyx_L0;
|
4269
4273
|
|
4270
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4274
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1056
|
4271
4275
|
*
|
4272
4276
|
*
|
4273
4277
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4280,7 +4284,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
4280
4284
|
return __pyx_r;
|
4281
4285
|
}
|
4282
4286
|
|
4283
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4287
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1071
|
4284
4288
|
*
|
4285
4289
|
*
|
4286
4290
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4291,7 +4295,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
4291
4295
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
4292
4296
|
npy_datetime __pyx_r;
|
4293
4297
|
|
4294
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4298
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1078
|
4295
4299
|
* also needed. That can be found using `get_datetime64_unit`.
|
4296
4300
|
* """
|
4297
4301
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -4301,7 +4305,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
4301
4305
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
4302
4306
|
goto __pyx_L0;
|
4303
4307
|
|
4304
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4308
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1071
|
4305
4309
|
*
|
4306
4310
|
*
|
4307
4311
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4314,7 +4318,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
4314
4318
|
return __pyx_r;
|
4315
4319
|
}
|
4316
4320
|
|
4317
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4321
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1081
|
4318
4322
|
*
|
4319
4323
|
*
|
4320
4324
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4325,7 +4329,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
4325
4329
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
4326
4330
|
npy_timedelta __pyx_r;
|
4327
4331
|
|
4328
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4332
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1085
|
4329
4333
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
4330
4334
|
* """
|
4331
4335
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -4335,7 +4339,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
4335
4339
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
4336
4340
|
goto __pyx_L0;
|
4337
4341
|
|
4338
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4342
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1081
|
4339
4343
|
*
|
4340
4344
|
*
|
4341
4345
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4348,7 +4352,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
4348
4352
|
return __pyx_r;
|
4349
4353
|
}
|
4350
4354
|
|
4351
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4355
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1088
|
4352
4356
|
*
|
4353
4357
|
*
|
4354
4358
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4359,7 +4363,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
4359
4363
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
4360
4364
|
NPY_DATETIMEUNIT __pyx_r;
|
4361
4365
|
|
4362
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4366
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1092
|
4363
4367
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
4364
4368
|
* """
|
4365
4369
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
@@ -4369,7 +4373,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
4369
4373
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
4370
4374
|
goto __pyx_L0;
|
4371
4375
|
|
4372
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4376
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-gn69mdo6/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1088
|
4373
4377
|
*
|
4374
4378
|
*
|
4375
4379
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|