edsger 0.1.4__cp39-cp39-macosx_11_0_arm64.whl → 0.1.6__cp39-cp39-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- edsger/_version.py +1 -1
- edsger/bellman_ford.c +35302 -0
- edsger/bellman_ford.cpython-39-darwin.so +0 -0
- edsger/bellman_ford.pyx +551 -0
- edsger/bfs.c +33593 -0
- edsger/bfs.cpython-39-darwin.so +0 -0
- edsger/bfs.pyx +243 -0
- edsger/commons.c +288 -280
- edsger/commons.cpython-39-darwin.so +0 -0
- edsger/commons.pyx +7 -0
- edsger/dijkstra.c +2435 -1859
- edsger/dijkstra.cpython-39-darwin.so +0 -0
- edsger/dijkstra.pyx +7 -0
- edsger/graph_importer.py +340 -0
- edsger/networks.py +4 -2
- edsger/path.py +1410 -264
- edsger/path_tracking.c +425 -304
- edsger/path_tracking.cpython-39-darwin.so +0 -0
- edsger/path_tracking.pyx +7 -0
- edsger/pq_4ary_dec_0b.c +1177 -1018
- edsger/pq_4ary_dec_0b.cpython-39-darwin.so +0 -0
- edsger/pq_4ary_dec_0b.pyx +7 -0
- edsger/spiess_florian.c +1412 -1142
- edsger/spiess_florian.cpython-39-darwin.so +0 -0
- edsger/spiess_florian.pyx +7 -0
- edsger/star.c +1242 -769
- edsger/star.cpython-39-darwin.so +0 -0
- edsger/star.pyx +7 -0
- edsger/utils.py +69 -4
- edsger-0.1.6.dist-info/METADATA +304 -0
- edsger-0.1.6.dist-info/RECORD +40 -0
- edsger-0.1.4.dist-info/METADATA +0 -125
- edsger-0.1.4.dist-info/RECORD +0 -33
- {edsger-0.1.4.dist-info → edsger-0.1.6.dist-info}/WHEEL +0 -0
- {edsger-0.1.4.dist-info → edsger-0.1.6.dist-info}/licenses/AUTHORS.rst +0 -0
- {edsger-0.1.4.dist-info → edsger-0.1.6.dist-info}/licenses/LICENSE +0 -0
- {edsger-0.1.4.dist-info → edsger-0.1.6.dist-info}/top_level.txt +0 -0
edsger/commons.c
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
/* Generated by Cython 3.1.
|
1
|
+
/* Generated by Cython 3.1.4 */
|
2
2
|
|
3
3
|
/* BEGIN: Cython Metadata
|
4
4
|
{
|
@@ -12,7 +12,8 @@
|
|
12
12
|
"depends": [],
|
13
13
|
"extra_compile_args": [
|
14
14
|
"-Ofast",
|
15
|
-
"-flto"
|
15
|
+
"-flto",
|
16
|
+
"-march=native"
|
16
17
|
],
|
17
18
|
"extra_link_args": [
|
18
19
|
"-flto"
|
@@ -40,8 +41,8 @@ END: Cython Metadata */
|
|
40
41
|
#elif PY_VERSION_HEX < 0x03080000
|
41
42
|
#error Cython requires Python 3.8+.
|
42
43
|
#else
|
43
|
-
#define __PYX_ABI_VERSION "
|
44
|
-
#define CYTHON_HEX_VERSION
|
44
|
+
#define __PYX_ABI_VERSION "3_1_4"
|
45
|
+
#define CYTHON_HEX_VERSION 0x030104F0
|
45
46
|
#define CYTHON_FUTURE_DIVISION 1
|
46
47
|
/* CModulePreamble */
|
47
48
|
#include <stddef.h>
|
@@ -404,6 +405,9 @@ END: Cython Metadata */
|
|
404
405
|
enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
|
405
406
|
#endif
|
406
407
|
#endif
|
408
|
+
#ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
|
409
|
+
#define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
|
410
|
+
#endif
|
407
411
|
#ifndef __has_attribute
|
408
412
|
#define __has_attribute(x) 0
|
409
413
|
#endif
|
@@ -1381,7 +1385,7 @@ static const char *__pyx_filename;
|
|
1381
1385
|
|
1382
1386
|
static const char* const __pyx_f[] = {
|
1383
1387
|
"src/edsger/commons.pyx",
|
1384
|
-
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1388
|
+
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd",
|
1385
1389
|
"cpython/type.pxd",
|
1386
1390
|
};
|
1387
1391
|
/* #### Code section: utility_code_proto_before_types ### */
|
@@ -1543,7 +1547,7 @@ static const char* const __pyx_f[] = {
|
|
1543
1547
|
|
1544
1548
|
/* #### Code section: numeric_typedefs ### */
|
1545
1549
|
|
1546
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1550
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":770
|
1547
1551
|
* # in Cython to enable them only on the right systems.
|
1548
1552
|
*
|
1549
1553
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
@@ -1552,7 +1556,7 @@ static const char* const __pyx_f[] = {
|
|
1552
1556
|
*/
|
1553
1557
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
1554
1558
|
|
1555
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1559
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":771
|
1556
1560
|
*
|
1557
1561
|
* ctypedef npy_int8 int8_t
|
1558
1562
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
@@ -1561,7 +1565,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1561
1565
|
*/
|
1562
1566
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
1563
1567
|
|
1564
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1568
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":772
|
1565
1569
|
* ctypedef npy_int8 int8_t
|
1566
1570
|
* ctypedef npy_int16 int16_t
|
1567
1571
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
@@ -1570,7 +1574,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1570
1574
|
*/
|
1571
1575
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
1572
1576
|
|
1573
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1577
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":773
|
1574
1578
|
* ctypedef npy_int16 int16_t
|
1575
1579
|
* ctypedef npy_int32 int32_t
|
1576
1580
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
@@ -1579,7 +1583,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1579
1583
|
*/
|
1580
1584
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
1581
1585
|
|
1582
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1586
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":777
|
1583
1587
|
* #ctypedef npy_int128 int128_t
|
1584
1588
|
*
|
1585
1589
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
@@ -1588,7 +1592,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1588
1592
|
*/
|
1589
1593
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
1590
1594
|
|
1591
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1595
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":778
|
1592
1596
|
*
|
1593
1597
|
* ctypedef npy_uint8 uint8_t
|
1594
1598
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
@@ -1597,7 +1601,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1597
1601
|
*/
|
1598
1602
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
1599
1603
|
|
1600
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1604
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":779
|
1601
1605
|
* ctypedef npy_uint8 uint8_t
|
1602
1606
|
* ctypedef npy_uint16 uint16_t
|
1603
1607
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
@@ -1606,7 +1610,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1606
1610
|
*/
|
1607
1611
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
1608
1612
|
|
1609
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1613
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":780
|
1610
1614
|
* ctypedef npy_uint16 uint16_t
|
1611
1615
|
* ctypedef npy_uint32 uint32_t
|
1612
1616
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
@@ -1615,7 +1619,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1615
1619
|
*/
|
1616
1620
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
1617
1621
|
|
1618
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1622
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":784
|
1619
1623
|
* #ctypedef npy_uint128 uint128_t
|
1620
1624
|
*
|
1621
1625
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
@@ -1624,7 +1628,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1624
1628
|
*/
|
1625
1629
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
1626
1630
|
|
1627
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1631
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":785
|
1628
1632
|
*
|
1629
1633
|
* ctypedef npy_float32 float32_t
|
1630
1634
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
@@ -1633,7 +1637,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1633
1637
|
*/
|
1634
1638
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
1635
1639
|
|
1636
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1640
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":792
|
1637
1641
|
* ctypedef double complex complex128_t
|
1638
1642
|
*
|
1639
1643
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
@@ -1642,7 +1646,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1642
1646
|
*/
|
1643
1647
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
1644
1648
|
|
1645
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1649
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":793
|
1646
1650
|
*
|
1647
1651
|
* ctypedef npy_longlong longlong_t
|
1648
1652
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
@@ -1651,7 +1655,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1651
1655
|
*/
|
1652
1656
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
1653
1657
|
|
1654
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1658
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":795
|
1655
1659
|
* ctypedef npy_ulonglong ulonglong_t
|
1656
1660
|
*
|
1657
1661
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
@@ -1660,7 +1664,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1660
1664
|
*/
|
1661
1665
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
1662
1666
|
|
1663
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1667
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":796
|
1664
1668
|
*
|
1665
1669
|
* ctypedef npy_intp intp_t
|
1666
1670
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
@@ -1669,7 +1673,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1669
1673
|
*/
|
1670
1674
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
1671
1675
|
|
1672
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1676
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":798
|
1673
1677
|
* ctypedef npy_uintp uintp_t
|
1674
1678
|
*
|
1675
1679
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
@@ -1678,7 +1682,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1678
1682
|
*/
|
1679
1683
|
typedef npy_double __pyx_t_5numpy_float_t;
|
1680
1684
|
|
1681
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1685
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":799
|
1682
1686
|
*
|
1683
1687
|
* ctypedef npy_double float_t
|
1684
1688
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
@@ -1687,7 +1691,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
1687
1691
|
*/
|
1688
1692
|
typedef npy_double __pyx_t_5numpy_double_t;
|
1689
1693
|
|
1690
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1694
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":800
|
1691
1695
|
* ctypedef npy_double float_t
|
1692
1696
|
* ctypedef npy_double double_t
|
1693
1697
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
@@ -1745,7 +1749,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
1745
1749
|
|
1746
1750
|
/*--- Type declarations ---*/
|
1747
1751
|
|
1748
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1752
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1096
|
1749
1753
|
*
|
1750
1754
|
* # Iterator API added in v1.6
|
1751
1755
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil # <<<<<<<<<<<<<<
|
@@ -1754,7 +1758,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
1754
1758
|
*/
|
1755
1759
|
typedef int (*__pyx_t_5numpy_NpyIter_IterNextFunc)(NpyIter *);
|
1756
1760
|
|
1757
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1761
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1097
|
1758
1762
|
* # Iterator API added in v1.6
|
1759
1763
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil
|
1760
1764
|
* ctypedef void (*NpyIter_GetMultiIndexFunc)(NpyIter* it, npy_intp* outcoords) noexcept nogil # <<<<<<<<<<<<<<
|
@@ -1988,22 +1992,22 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCallDict(PyObject *func, PyObj
|
|
1988
1992
|
static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause);
|
1989
1993
|
|
1990
1994
|
/* TypeImport.proto */
|
1991
|
-
#ifndef
|
1992
|
-
#define
|
1995
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_4
|
1996
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_4
|
1993
1997
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
1994
1998
|
#include <stdalign.h>
|
1995
1999
|
#endif
|
1996
2000
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
1997
|
-
#define
|
2001
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) alignof(s)
|
1998
2002
|
#else
|
1999
|
-
#define
|
2003
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) sizeof(void*)
|
2000
2004
|
#endif
|
2001
|
-
enum
|
2002
|
-
|
2003
|
-
|
2004
|
-
|
2005
|
+
enum __Pyx_ImportType_CheckSize_3_1_4 {
|
2006
|
+
__Pyx_ImportType_CheckSize_Error_3_1_4 = 0,
|
2007
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4 = 1,
|
2008
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4 = 2
|
2005
2009
|
};
|
2006
|
-
static PyTypeObject *
|
2010
|
+
static PyTypeObject *__Pyx_ImportType_3_1_4(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_4 check_size);
|
2007
2011
|
#endif
|
2008
2012
|
|
2009
2013
|
/* IncludeStringH.proto */
|
@@ -2651,7 +2655,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
2651
2655
|
#endif
|
2652
2656
|
/* #### Code section: module_code ### */
|
2653
2657
|
|
2654
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2658
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":285
|
2655
2659
|
* cdef int type_num
|
2656
2660
|
*
|
2657
2661
|
* @property # <<<<<<<<<<<<<<
|
@@ -2662,7 +2666,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
2662
2666
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
2663
2667
|
npy_intp __pyx_r;
|
2664
2668
|
|
2665
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2669
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":287
|
2666
2670
|
* @property
|
2667
2671
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
2668
2672
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
@@ -2672,7 +2676,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
2672
2676
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
2673
2677
|
goto __pyx_L0;
|
2674
2678
|
|
2675
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2679
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":285
|
2676
2680
|
* cdef int type_num
|
2677
2681
|
*
|
2678
2682
|
* @property # <<<<<<<<<<<<<<
|
@@ -2685,7 +2689,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
2685
2689
|
return __pyx_r;
|
2686
2690
|
}
|
2687
2691
|
|
2688
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2692
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":289
|
2689
2693
|
* return PyDataType_ELSIZE(self)
|
2690
2694
|
*
|
2691
2695
|
* @property # <<<<<<<<<<<<<<
|
@@ -2696,7 +2700,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
2696
2700
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
2697
2701
|
npy_intp __pyx_r;
|
2698
2702
|
|
2699
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2703
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":291
|
2700
2704
|
* @property
|
2701
2705
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
2702
2706
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
@@ -2706,7 +2710,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
2706
2710
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
2707
2711
|
goto __pyx_L0;
|
2708
2712
|
|
2709
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2713
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":289
|
2710
2714
|
* return PyDataType_ELSIZE(self)
|
2711
2715
|
*
|
2712
2716
|
* @property # <<<<<<<<<<<<<<
|
@@ -2719,7 +2723,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
2719
2723
|
return __pyx_r;
|
2720
2724
|
}
|
2721
2725
|
|
2722
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2726
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":295
|
2723
2727
|
* # Use fields/names with care as they may be NULL. You must check
|
2724
2728
|
* # for this using PyDataType_HASFIELDS.
|
2725
2729
|
* @property # <<<<<<<<<<<<<<
|
@@ -2733,7 +2737,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
2733
2737
|
PyObject *__pyx_t_1;
|
2734
2738
|
__Pyx_RefNannySetupContext("fields", 0);
|
2735
2739
|
|
2736
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2740
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":297
|
2737
2741
|
* @property
|
2738
2742
|
* cdef inline object fields(self):
|
2739
2743
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
@@ -2746,7 +2750,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
2746
2750
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
2747
2751
|
goto __pyx_L0;
|
2748
2752
|
|
2749
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2753
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":295
|
2750
2754
|
* # Use fields/names with care as they may be NULL. You must check
|
2751
2755
|
* # for this using PyDataType_HASFIELDS.
|
2752
2756
|
* @property # <<<<<<<<<<<<<<
|
@@ -2761,7 +2765,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
2761
2765
|
return __pyx_r;
|
2762
2766
|
}
|
2763
2767
|
|
2764
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2768
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":299
|
2765
2769
|
* return <object>PyDataType_FIELDS(self)
|
2766
2770
|
*
|
2767
2771
|
* @property # <<<<<<<<<<<<<<
|
@@ -2775,7 +2779,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2775
2779
|
PyObject *__pyx_t_1;
|
2776
2780
|
__Pyx_RefNannySetupContext("names", 0);
|
2777
2781
|
|
2778
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2782
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":301
|
2779
2783
|
* @property
|
2780
2784
|
* cdef inline tuple names(self):
|
2781
2785
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
@@ -2788,7 +2792,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2788
2792
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
2789
2793
|
goto __pyx_L0;
|
2790
2794
|
|
2791
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2795
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":299
|
2792
2796
|
* return <object>PyDataType_FIELDS(self)
|
2793
2797
|
*
|
2794
2798
|
* @property # <<<<<<<<<<<<<<
|
@@ -2803,7 +2807,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2803
2807
|
return __pyx_r;
|
2804
2808
|
}
|
2805
2809
|
|
2806
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2810
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":306
|
2807
2811
|
* # valid (the pointer can be NULL). Most users should access
|
2808
2812
|
* # this field via the inline helper method PyDataType_SHAPE.
|
2809
2813
|
* @property # <<<<<<<<<<<<<<
|
@@ -2814,7 +2818,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2814
2818
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
2815
2819
|
PyArray_ArrayDescr *__pyx_r;
|
2816
2820
|
|
2817
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2821
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":308
|
2818
2822
|
* @property
|
2819
2823
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
2820
2824
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
@@ -2824,7 +2828,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
2824
2828
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
2825
2829
|
goto __pyx_L0;
|
2826
2830
|
|
2827
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2831
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":306
|
2828
2832
|
* # valid (the pointer can be NULL). Most users should access
|
2829
2833
|
* # this field via the inline helper method PyDataType_SHAPE.
|
2830
2834
|
* @property # <<<<<<<<<<<<<<
|
@@ -2837,7 +2841,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
2837
2841
|
return __pyx_r;
|
2838
2842
|
}
|
2839
2843
|
|
2840
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2844
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":310
|
2841
2845
|
* return PyDataType_SUBARRAY(self)
|
2842
2846
|
*
|
2843
2847
|
* @property # <<<<<<<<<<<<<<
|
@@ -2848,7 +2852,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
2848
2852
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
2849
2853
|
npy_uint64 __pyx_r;
|
2850
2854
|
|
2851
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2855
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":313
|
2852
2856
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
2853
2857
|
* """The data types flags."""
|
2854
2858
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
@@ -2858,7 +2862,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
2858
2862
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
2859
2863
|
goto __pyx_L0;
|
2860
2864
|
|
2861
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2865
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":310
|
2862
2866
|
* return PyDataType_SUBARRAY(self)
|
2863
2867
|
*
|
2864
2868
|
* @property # <<<<<<<<<<<<<<
|
@@ -2871,7 +2875,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
2871
2875
|
return __pyx_r;
|
2872
2876
|
}
|
2873
2877
|
|
2874
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2878
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":322
|
2875
2879
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
2876
2880
|
*
|
2877
2881
|
* @property # <<<<<<<<<<<<<<
|
@@ -2882,7 +2886,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
2882
2886
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
2883
2887
|
int __pyx_r;
|
2884
2888
|
|
2885
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2889
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":325
|
2886
2890
|
* cdef inline int numiter(self) noexcept nogil:
|
2887
2891
|
* """The number of arrays that need to be broadcast to the same shape."""
|
2888
2892
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
@@ -2892,7 +2896,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
2892
2896
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
2893
2897
|
goto __pyx_L0;
|
2894
2898
|
|
2895
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2899
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":322
|
2896
2900
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
2897
2901
|
*
|
2898
2902
|
* @property # <<<<<<<<<<<<<<
|
@@ -2905,7 +2909,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
2905
2909
|
return __pyx_r;
|
2906
2910
|
}
|
2907
2911
|
|
2908
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2912
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":327
|
2909
2913
|
* return PyArray_MultiIter_NUMITER(self)
|
2910
2914
|
*
|
2911
2915
|
* @property # <<<<<<<<<<<<<<
|
@@ -2916,7 +2920,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
2916
2920
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
2917
2921
|
npy_intp __pyx_r;
|
2918
2922
|
|
2919
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2923
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":330
|
2920
2924
|
* cdef inline npy_intp size(self) noexcept nogil:
|
2921
2925
|
* """The total broadcasted size."""
|
2922
2926
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -2926,7 +2930,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
2926
2930
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
2927
2931
|
goto __pyx_L0;
|
2928
2932
|
|
2929
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2933
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":327
|
2930
2934
|
* return PyArray_MultiIter_NUMITER(self)
|
2931
2935
|
*
|
2932
2936
|
* @property # <<<<<<<<<<<<<<
|
@@ -2939,7 +2943,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
2939
2943
|
return __pyx_r;
|
2940
2944
|
}
|
2941
2945
|
|
2942
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2946
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":332
|
2943
2947
|
* return PyArray_MultiIter_SIZE(self)
|
2944
2948
|
*
|
2945
2949
|
* @property # <<<<<<<<<<<<<<
|
@@ -2950,7 +2954,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
2950
2954
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
2951
2955
|
npy_intp __pyx_r;
|
2952
2956
|
|
2953
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2957
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":335
|
2954
2958
|
* cdef inline npy_intp index(self) noexcept nogil:
|
2955
2959
|
* """The current (1-d) index into the broadcasted result."""
|
2956
2960
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
@@ -2960,7 +2964,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
2960
2964
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
2961
2965
|
goto __pyx_L0;
|
2962
2966
|
|
2963
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2967
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":332
|
2964
2968
|
* return PyArray_MultiIter_SIZE(self)
|
2965
2969
|
*
|
2966
2970
|
* @property # <<<<<<<<<<<<<<
|
@@ -2973,7 +2977,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
2973
2977
|
return __pyx_r;
|
2974
2978
|
}
|
2975
2979
|
|
2976
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2980
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":337
|
2977
2981
|
* return PyArray_MultiIter_INDEX(self)
|
2978
2982
|
*
|
2979
2983
|
* @property # <<<<<<<<<<<<<<
|
@@ -2984,7 +2988,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
2984
2988
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
2985
2989
|
int __pyx_r;
|
2986
2990
|
|
2987
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2991
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":340
|
2988
2992
|
* cdef inline int nd(self) noexcept nogil:
|
2989
2993
|
* """The number of dimensions in the broadcasted result."""
|
2990
2994
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -2994,7 +2998,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
2994
2998
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
2995
2999
|
goto __pyx_L0;
|
2996
3000
|
|
2997
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3001
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":337
|
2998
3002
|
* return PyArray_MultiIter_INDEX(self)
|
2999
3003
|
*
|
3000
3004
|
* @property # <<<<<<<<<<<<<<
|
@@ -3007,7 +3011,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
3007
3011
|
return __pyx_r;
|
3008
3012
|
}
|
3009
3013
|
|
3010
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3014
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":342
|
3011
3015
|
* return PyArray_MultiIter_NDIM(self)
|
3012
3016
|
*
|
3013
3017
|
* @property # <<<<<<<<<<<<<<
|
@@ -3018,7 +3022,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
3018
3022
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
3019
3023
|
npy_intp *__pyx_r;
|
3020
3024
|
|
3021
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3025
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":345
|
3022
3026
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
3023
3027
|
* """The shape of the broadcasted result."""
|
3024
3028
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -3028,7 +3032,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
3028
3032
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
3029
3033
|
goto __pyx_L0;
|
3030
3034
|
|
3031
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3035
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":342
|
3032
3036
|
* return PyArray_MultiIter_NDIM(self)
|
3033
3037
|
*
|
3034
3038
|
* @property # <<<<<<<<<<<<<<
|
@@ -3041,7 +3045,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
3041
3045
|
return __pyx_r;
|
3042
3046
|
}
|
3043
3047
|
|
3044
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3048
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":347
|
3045
3049
|
* return PyArray_MultiIter_DIMS(self)
|
3046
3050
|
*
|
3047
3051
|
* @property # <<<<<<<<<<<<<<
|
@@ -3052,7 +3056,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
3052
3056
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
3053
3057
|
void **__pyx_r;
|
3054
3058
|
|
3055
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3059
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":351
|
3056
3060
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
3057
3061
|
* On return, the iterators are adjusted for broadcasting."""
|
3058
3062
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
@@ -3062,7 +3066,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
3062
3066
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
3063
3067
|
goto __pyx_L0;
|
3064
3068
|
|
3065
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3069
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":347
|
3066
3070
|
* return PyArray_MultiIter_DIMS(self)
|
3067
3071
|
*
|
3068
3072
|
* @property # <<<<<<<<<<<<<<
|
@@ -3075,7 +3079,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
3075
3079
|
return __pyx_r;
|
3076
3080
|
}
|
3077
3081
|
|
3078
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3082
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":365
|
3079
3083
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
3080
3084
|
*
|
3081
3085
|
* @property # <<<<<<<<<<<<<<
|
@@ -3086,7 +3090,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
3086
3090
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
3087
3091
|
PyObject *__pyx_r;
|
3088
3092
|
|
3089
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3093
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":369
|
3090
3094
|
* """Returns a borrowed reference to the object owning the data/memory.
|
3091
3095
|
* """
|
3092
3096
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
@@ -3096,7 +3100,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
3096
3100
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
3097
3101
|
goto __pyx_L0;
|
3098
3102
|
|
3099
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3103
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":365
|
3100
3104
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
3101
3105
|
*
|
3102
3106
|
* @property # <<<<<<<<<<<<<<
|
@@ -3109,7 +3113,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
3109
3113
|
return __pyx_r;
|
3110
3114
|
}
|
3111
3115
|
|
3112
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3116
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":371
|
3113
3117
|
* return PyArray_BASE(self)
|
3114
3118
|
*
|
3115
3119
|
* @property # <<<<<<<<<<<<<<
|
@@ -3123,7 +3127,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3123
3127
|
PyArray_Descr *__pyx_t_1;
|
3124
3128
|
__Pyx_RefNannySetupContext("descr", 0);
|
3125
3129
|
|
3126
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3130
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":375
|
3127
3131
|
* """Returns an owned reference to the dtype of the array.
|
3128
3132
|
* """
|
3129
3133
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
@@ -3136,7 +3140,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3136
3140
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
3137
3141
|
goto __pyx_L0;
|
3138
3142
|
|
3139
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3143
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":371
|
3140
3144
|
* return PyArray_BASE(self)
|
3141
3145
|
*
|
3142
3146
|
* @property # <<<<<<<<<<<<<<
|
@@ -3151,7 +3155,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3151
3155
|
return __pyx_r;
|
3152
3156
|
}
|
3153
3157
|
|
3154
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3158
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":377
|
3155
3159
|
* return <dtype>PyArray_DESCR(self)
|
3156
3160
|
*
|
3157
3161
|
* @property # <<<<<<<<<<<<<<
|
@@ -3162,7 +3166,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3162
3166
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
3163
3167
|
int __pyx_r;
|
3164
3168
|
|
3165
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3169
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":381
|
3166
3170
|
* """Returns the number of dimensions in the array.
|
3167
3171
|
* """
|
3168
3172
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -3172,7 +3176,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
3172
3176
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
3173
3177
|
goto __pyx_L0;
|
3174
3178
|
|
3175
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3179
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":377
|
3176
3180
|
* return <dtype>PyArray_DESCR(self)
|
3177
3181
|
*
|
3178
3182
|
* @property # <<<<<<<<<<<<<<
|
@@ -3185,7 +3189,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
3185
3189
|
return __pyx_r;
|
3186
3190
|
}
|
3187
3191
|
|
3188
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3192
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":383
|
3189
3193
|
* return PyArray_NDIM(self)
|
3190
3194
|
*
|
3191
3195
|
* @property # <<<<<<<<<<<<<<
|
@@ -3196,7 +3200,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
3196
3200
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
3197
3201
|
npy_intp *__pyx_r;
|
3198
3202
|
|
3199
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3203
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":389
|
3200
3204
|
* Can return NULL for 0-dimensional arrays.
|
3201
3205
|
* """
|
3202
3206
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -3206,7 +3210,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
3206
3210
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
3207
3211
|
goto __pyx_L0;
|
3208
3212
|
|
3209
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3213
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":383
|
3210
3214
|
* return PyArray_NDIM(self)
|
3211
3215
|
*
|
3212
3216
|
* @property # <<<<<<<<<<<<<<
|
@@ -3219,7 +3223,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
3219
3223
|
return __pyx_r;
|
3220
3224
|
}
|
3221
3225
|
|
3222
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3226
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":391
|
3223
3227
|
* return PyArray_DIMS(self)
|
3224
3228
|
*
|
3225
3229
|
* @property # <<<<<<<<<<<<<<
|
@@ -3230,7 +3234,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
3230
3234
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
3231
3235
|
npy_intp *__pyx_r;
|
3232
3236
|
|
3233
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3237
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":396
|
3234
3238
|
* The number of elements matches the number of dimensions of the array (ndim).
|
3235
3239
|
* """
|
3236
3240
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
@@ -3240,7 +3244,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
3240
3244
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
3241
3245
|
goto __pyx_L0;
|
3242
3246
|
|
3243
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3247
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":391
|
3244
3248
|
* return PyArray_DIMS(self)
|
3245
3249
|
*
|
3246
3250
|
* @property # <<<<<<<<<<<<<<
|
@@ -3253,7 +3257,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
3253
3257
|
return __pyx_r;
|
3254
3258
|
}
|
3255
3259
|
|
3256
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3260
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":398
|
3257
3261
|
* return PyArray_STRIDES(self)
|
3258
3262
|
*
|
3259
3263
|
* @property # <<<<<<<<<<<<<<
|
@@ -3264,7 +3268,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
3264
3268
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
3265
3269
|
npy_intp __pyx_r;
|
3266
3270
|
|
3267
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3271
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":402
|
3268
3272
|
* """Returns the total size (in number of elements) of the array.
|
3269
3273
|
* """
|
3270
3274
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -3274,7 +3278,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
3274
3278
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
3275
3279
|
goto __pyx_L0;
|
3276
3280
|
|
3277
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3281
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":398
|
3278
3282
|
* return PyArray_STRIDES(self)
|
3279
3283
|
*
|
3280
3284
|
* @property # <<<<<<<<<<<<<<
|
@@ -3287,7 +3291,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
3287
3291
|
return __pyx_r;
|
3288
3292
|
}
|
3289
3293
|
|
3290
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3294
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":404
|
3291
3295
|
* return PyArray_SIZE(self)
|
3292
3296
|
*
|
3293
3297
|
* @property # <<<<<<<<<<<<<<
|
@@ -3298,7 +3302,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
3298
3302
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
3299
3303
|
char *__pyx_r;
|
3300
3304
|
|
3301
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3305
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":411
|
3302
3306
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
3303
3307
|
* """
|
3304
3308
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
@@ -3308,7 +3312,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
3308
3312
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
3309
3313
|
goto __pyx_L0;
|
3310
3314
|
|
3311
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3315
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":404
|
3312
3316
|
* return PyArray_SIZE(self)
|
3313
3317
|
*
|
3314
3318
|
* @property # <<<<<<<<<<<<<<
|
@@ -3321,7 +3325,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
3321
3325
|
return __pyx_r;
|
3322
3326
|
}
|
3323
3327
|
|
3324
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3328
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":807
|
3325
3329
|
* ctypedef long double complex clongdouble_t
|
3326
3330
|
*
|
3327
3331
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -3338,7 +3342,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
3338
3342
|
int __pyx_clineno = 0;
|
3339
3343
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
3340
3344
|
|
3341
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3345
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":808
|
3342
3346
|
*
|
3343
3347
|
* cdef inline object PyArray_MultiIterNew1(a):
|
3344
3348
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
@@ -3352,7 +3356,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
3352
3356
|
__pyx_t_1 = 0;
|
3353
3357
|
goto __pyx_L0;
|
3354
3358
|
|
3355
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3359
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":807
|
3356
3360
|
* ctypedef long double complex clongdouble_t
|
3357
3361
|
*
|
3358
3362
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -3371,7 +3375,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
3371
3375
|
return __pyx_r;
|
3372
3376
|
}
|
3373
3377
|
|
3374
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3378
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":810
|
3375
3379
|
* return PyArray_MultiIterNew(1, <void*>a)
|
3376
3380
|
*
|
3377
3381
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -3388,7 +3392,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
3388
3392
|
int __pyx_clineno = 0;
|
3389
3393
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
3390
3394
|
|
3391
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3395
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":811
|
3392
3396
|
*
|
3393
3397
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
3394
3398
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
@@ -3402,7 +3406,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
3402
3406
|
__pyx_t_1 = 0;
|
3403
3407
|
goto __pyx_L0;
|
3404
3408
|
|
3405
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3409
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":810
|
3406
3410
|
* return PyArray_MultiIterNew(1, <void*>a)
|
3407
3411
|
*
|
3408
3412
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -3421,7 +3425,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
3421
3425
|
return __pyx_r;
|
3422
3426
|
}
|
3423
3427
|
|
3424
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3428
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":813
|
3425
3429
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
3426
3430
|
*
|
3427
3431
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -3438,7 +3442,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
3438
3442
|
int __pyx_clineno = 0;
|
3439
3443
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
3440
3444
|
|
3441
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3445
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":814
|
3442
3446
|
*
|
3443
3447
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
3444
3448
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
@@ -3452,7 +3456,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
3452
3456
|
__pyx_t_1 = 0;
|
3453
3457
|
goto __pyx_L0;
|
3454
3458
|
|
3455
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3459
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":813
|
3456
3460
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
3457
3461
|
*
|
3458
3462
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -3471,7 +3475,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
3471
3475
|
return __pyx_r;
|
3472
3476
|
}
|
3473
3477
|
|
3474
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3478
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":816
|
3475
3479
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
3476
3480
|
*
|
3477
3481
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -3488,7 +3492,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
3488
3492
|
int __pyx_clineno = 0;
|
3489
3493
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
3490
3494
|
|
3491
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3495
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":817
|
3492
3496
|
*
|
3493
3497
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
3494
3498
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
@@ -3502,7 +3506,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
3502
3506
|
__pyx_t_1 = 0;
|
3503
3507
|
goto __pyx_L0;
|
3504
3508
|
|
3505
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3509
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":816
|
3506
3510
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
3507
3511
|
*
|
3508
3512
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -3521,7 +3525,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
3521
3525
|
return __pyx_r;
|
3522
3526
|
}
|
3523
3527
|
|
3524
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3528
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":819
|
3525
3529
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
3526
3530
|
*
|
3527
3531
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -3538,7 +3542,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
3538
3542
|
int __pyx_clineno = 0;
|
3539
3543
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
3540
3544
|
|
3541
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3545
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":820
|
3542
3546
|
*
|
3543
3547
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
3544
3548
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
@@ -3552,7 +3556,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
3552
3556
|
__pyx_t_1 = 0;
|
3553
3557
|
goto __pyx_L0;
|
3554
3558
|
|
3555
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3559
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":819
|
3556
3560
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
3557
3561
|
*
|
3558
3562
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -3571,7 +3575,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
3571
3575
|
return __pyx_r;
|
3572
3576
|
}
|
3573
3577
|
|
3574
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3578
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":822
|
3575
3579
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
3576
3580
|
*
|
3577
3581
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -3586,7 +3590,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3586
3590
|
PyObject *__pyx_t_2;
|
3587
3591
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
3588
3592
|
|
3589
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3593
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":823
|
3590
3594
|
*
|
3591
3595
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
3592
3596
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -3596,7 +3600,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3596
3600
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
3597
3601
|
if (__pyx_t_1) {
|
3598
3602
|
|
3599
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3603
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":824
|
3600
3604
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
3601
3605
|
* if PyDataType_HASSUBARRAY(d):
|
3602
3606
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
@@ -3609,7 +3613,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3609
3613
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
3610
3614
|
goto __pyx_L0;
|
3611
3615
|
|
3612
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3616
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":823
|
3613
3617
|
*
|
3614
3618
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
3615
3619
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -3618,7 +3622,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3618
3622
|
*/
|
3619
3623
|
}
|
3620
3624
|
|
3621
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3625
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":826
|
3622
3626
|
* return <tuple>d.subarray.shape
|
3623
3627
|
* else:
|
3624
3628
|
* return () # <<<<<<<<<<<<<<
|
@@ -3632,7 +3636,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3632
3636
|
goto __pyx_L0;
|
3633
3637
|
}
|
3634
3638
|
|
3635
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3639
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":822
|
3636
3640
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
3637
3641
|
*
|
3638
3642
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -3647,7 +3651,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3647
3651
|
return __pyx_r;
|
3648
3652
|
}
|
3649
3653
|
|
3650
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3654
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1010
|
3651
3655
|
* int _import_umath() except -1
|
3652
3656
|
*
|
3653
3657
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -3661,7 +3665,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3661
3665
|
const char *__pyx_filename = NULL;
|
3662
3666
|
int __pyx_clineno = 0;
|
3663
3667
|
|
3664
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3668
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1011
|
3665
3669
|
*
|
3666
3670
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
3667
3671
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
@@ -3670,7 +3674,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3670
3674
|
*/
|
3671
3675
|
Py_INCREF(__pyx_v_base);
|
3672
3676
|
|
3673
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3677
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1012
|
3674
3678
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
3675
3679
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
3676
3680
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
@@ -3679,7 +3683,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3679
3683
|
*/
|
3680
3684
|
__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)
|
3681
3685
|
|
3682
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3686
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1010
|
3683
3687
|
* int _import_umath() except -1
|
3684
3688
|
*
|
3685
3689
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -3694,7 +3698,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3694
3698
|
__pyx_L0:;
|
3695
3699
|
}
|
3696
3700
|
|
3697
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3701
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1014
|
3698
3702
|
* PyArray_SetBaseObject(arr, base)
|
3699
3703
|
*
|
3700
3704
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -3709,7 +3713,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3709
3713
|
int __pyx_t_1;
|
3710
3714
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
3711
3715
|
|
3712
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3716
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1015
|
3713
3717
|
*
|
3714
3718
|
* cdef inline object get_array_base(ndarray arr):
|
3715
3719
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
@@ -3718,7 +3722,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3718
3722
|
*/
|
3719
3723
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
3720
3724
|
|
3721
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3725
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1016
|
3722
3726
|
* cdef inline object get_array_base(ndarray arr):
|
3723
3727
|
* base = PyArray_BASE(arr)
|
3724
3728
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -3728,7 +3732,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3728
3732
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
3729
3733
|
if (__pyx_t_1) {
|
3730
3734
|
|
3731
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3735
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1017
|
3732
3736
|
* base = PyArray_BASE(arr)
|
3733
3737
|
* if base is NULL:
|
3734
3738
|
* return None # <<<<<<<<<<<<<<
|
@@ -3739,7 +3743,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3739
3743
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
3740
3744
|
goto __pyx_L0;
|
3741
3745
|
|
3742
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3746
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1016
|
3743
3747
|
* cdef inline object get_array_base(ndarray arr):
|
3744
3748
|
* base = PyArray_BASE(arr)
|
3745
3749
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -3748,7 +3752,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3748
3752
|
*/
|
3749
3753
|
}
|
3750
3754
|
|
3751
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3755
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1018
|
3752
3756
|
* if base is NULL:
|
3753
3757
|
* return None
|
3754
3758
|
* return <object>base # <<<<<<<<<<<<<<
|
@@ -3760,7 +3764,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3760
3764
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
3761
3765
|
goto __pyx_L0;
|
3762
3766
|
|
3763
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3767
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1014
|
3764
3768
|
* PyArray_SetBaseObject(arr, base)
|
3765
3769
|
*
|
3766
3770
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -3775,7 +3779,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3775
3779
|
return __pyx_r;
|
3776
3780
|
}
|
3777
3781
|
|
3778
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3782
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1022
|
3779
3783
|
* # Versions of the import_* functions which are more suitable for
|
3780
3784
|
* # Cython code.
|
3781
3785
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -3802,7 +3806,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3802
3806
|
int __pyx_clineno = 0;
|
3803
3807
|
__Pyx_RefNannySetupContext("import_array", 0);
|
3804
3808
|
|
3805
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3809
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
3806
3810
|
* # Cython code.
|
3807
3811
|
* cdef inline int import_array() except -1:
|
3808
3812
|
* try: # <<<<<<<<<<<<<<
|
@@ -3818,7 +3822,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3818
3822
|
__Pyx_XGOTREF(__pyx_t_3);
|
3819
3823
|
/*try:*/ {
|
3820
3824
|
|
3821
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3825
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1024
|
3822
3826
|
* cdef inline int import_array() except -1:
|
3823
3827
|
* try:
|
3824
3828
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
@@ -3827,7 +3831,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3827
3831
|
*/
|
3828
3832
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1024, __pyx_L3_error)
|
3829
3833
|
|
3830
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3834
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
3831
3835
|
* # Cython code.
|
3832
3836
|
* cdef inline int import_array() except -1:
|
3833
3837
|
* try: # <<<<<<<<<<<<<<
|
@@ -3841,7 +3845,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3841
3845
|
goto __pyx_L8_try_end;
|
3842
3846
|
__pyx_L3_error:;
|
3843
3847
|
|
3844
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3848
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1025
|
3845
3849
|
* try:
|
3846
3850
|
* __pyx_import_array()
|
3847
3851
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -3856,7 +3860,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3856
3860
|
__Pyx_XGOTREF(__pyx_t_6);
|
3857
3861
|
__Pyx_XGOTREF(__pyx_t_7);
|
3858
3862
|
|
3859
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3863
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1026
|
3860
3864
|
* __pyx_import_array()
|
3861
3865
|
* except Exception:
|
3862
3866
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
@@ -3881,7 +3885,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3881
3885
|
}
|
3882
3886
|
goto __pyx_L5_except_error;
|
3883
3887
|
|
3884
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3888
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
3885
3889
|
* # Cython code.
|
3886
3890
|
* cdef inline int import_array() except -1:
|
3887
3891
|
* try: # <<<<<<<<<<<<<<
|
@@ -3897,7 +3901,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3897
3901
|
__pyx_L8_try_end:;
|
3898
3902
|
}
|
3899
3903
|
|
3900
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3904
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1022
|
3901
3905
|
* # Versions of the import_* functions which are more suitable for
|
3902
3906
|
* # Cython code.
|
3903
3907
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -3922,7 +3926,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3922
3926
|
return __pyx_r;
|
3923
3927
|
}
|
3924
3928
|
|
3925
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3929
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1028
|
3926
3930
|
* raise ImportError("numpy._core.multiarray failed to import")
|
3927
3931
|
*
|
3928
3932
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -3949,7 +3953,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3949
3953
|
int __pyx_clineno = 0;
|
3950
3954
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
3951
3955
|
|
3952
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3956
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
3953
3957
|
*
|
3954
3958
|
* cdef inline int import_umath() except -1:
|
3955
3959
|
* try: # <<<<<<<<<<<<<<
|
@@ -3965,7 +3969,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3965
3969
|
__Pyx_XGOTREF(__pyx_t_3);
|
3966
3970
|
/*try:*/ {
|
3967
3971
|
|
3968
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3972
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1030
|
3969
3973
|
* cdef inline int import_umath() except -1:
|
3970
3974
|
* try:
|
3971
3975
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -3974,7 +3978,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3974
3978
|
*/
|
3975
3979
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1030, __pyx_L3_error)
|
3976
3980
|
|
3977
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3981
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
3978
3982
|
*
|
3979
3983
|
* cdef inline int import_umath() except -1:
|
3980
3984
|
* try: # <<<<<<<<<<<<<<
|
@@ -3988,7 +3992,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3988
3992
|
goto __pyx_L8_try_end;
|
3989
3993
|
__pyx_L3_error:;
|
3990
3994
|
|
3991
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3995
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1031
|
3992
3996
|
* try:
|
3993
3997
|
* _import_umath()
|
3994
3998
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -4003,7 +4007,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
4003
4007
|
__Pyx_XGOTREF(__pyx_t_6);
|
4004
4008
|
__Pyx_XGOTREF(__pyx_t_7);
|
4005
4009
|
|
4006
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4010
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1032
|
4007
4011
|
* _import_umath()
|
4008
4012
|
* except Exception:
|
4009
4013
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -4028,7 +4032,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
4028
4032
|
}
|
4029
4033
|
goto __pyx_L5_except_error;
|
4030
4034
|
|
4031
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4035
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
4032
4036
|
*
|
4033
4037
|
* cdef inline int import_umath() except -1:
|
4034
4038
|
* try: # <<<<<<<<<<<<<<
|
@@ -4044,7 +4048,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
4044
4048
|
__pyx_L8_try_end:;
|
4045
4049
|
}
|
4046
4050
|
|
4047
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4051
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1028
|
4048
4052
|
* raise ImportError("numpy._core.multiarray failed to import")
|
4049
4053
|
*
|
4050
4054
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -4069,7 +4073,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
4069
4073
|
return __pyx_r;
|
4070
4074
|
}
|
4071
4075
|
|
4072
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4076
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1034
|
4073
4077
|
* raise ImportError("numpy._core.umath failed to import")
|
4074
4078
|
*
|
4075
4079
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -4096,7 +4100,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4096
4100
|
int __pyx_clineno = 0;
|
4097
4101
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
4098
4102
|
|
4099
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4103
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
4100
4104
|
*
|
4101
4105
|
* cdef inline int import_ufunc() except -1:
|
4102
4106
|
* try: # <<<<<<<<<<<<<<
|
@@ -4112,7 +4116,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4112
4116
|
__Pyx_XGOTREF(__pyx_t_3);
|
4113
4117
|
/*try:*/ {
|
4114
4118
|
|
4115
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4119
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1036
|
4116
4120
|
* cdef inline int import_ufunc() except -1:
|
4117
4121
|
* try:
|
4118
4122
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -4121,7 +4125,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4121
4125
|
*/
|
4122
4126
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1036, __pyx_L3_error)
|
4123
4127
|
|
4124
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4128
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
4125
4129
|
*
|
4126
4130
|
* cdef inline int import_ufunc() except -1:
|
4127
4131
|
* try: # <<<<<<<<<<<<<<
|
@@ -4135,7 +4139,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4135
4139
|
goto __pyx_L8_try_end;
|
4136
4140
|
__pyx_L3_error:;
|
4137
4141
|
|
4138
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4142
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1037
|
4139
4143
|
* try:
|
4140
4144
|
* _import_umath()
|
4141
4145
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -4150,7 +4154,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4150
4154
|
__Pyx_XGOTREF(__pyx_t_6);
|
4151
4155
|
__Pyx_XGOTREF(__pyx_t_7);
|
4152
4156
|
|
4153
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4157
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1038
|
4154
4158
|
* _import_umath()
|
4155
4159
|
* except Exception:
|
4156
4160
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -4175,7 +4179,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4175
4179
|
}
|
4176
4180
|
goto __pyx_L5_except_error;
|
4177
4181
|
|
4178
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4182
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
4179
4183
|
*
|
4180
4184
|
* cdef inline int import_ufunc() except -1:
|
4181
4185
|
* try: # <<<<<<<<<<<<<<
|
@@ -4191,7 +4195,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4191
4195
|
__pyx_L8_try_end:;
|
4192
4196
|
}
|
4193
4197
|
|
4194
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4198
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1034
|
4195
4199
|
* raise ImportError("numpy._core.umath failed to import")
|
4196
4200
|
*
|
4197
4201
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -4216,7 +4220,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4216
4220
|
return __pyx_r;
|
4217
4221
|
}
|
4218
4222
|
|
4219
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4223
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1041
|
4220
4224
|
*
|
4221
4225
|
*
|
4222
4226
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4227,7 +4231,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4227
4231
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
4228
4232
|
int __pyx_r;
|
4229
4233
|
|
4230
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4234
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1053
|
4231
4235
|
* bool
|
4232
4236
|
* """
|
4233
4237
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
@@ -4237,7 +4241,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
4237
4241
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
4238
4242
|
goto __pyx_L0;
|
4239
4243
|
|
4240
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4244
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1041
|
4241
4245
|
*
|
4242
4246
|
*
|
4243
4247
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4250,7 +4254,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
4250
4254
|
return __pyx_r;
|
4251
4255
|
}
|
4252
4256
|
|
4253
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4257
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1056
|
4254
4258
|
*
|
4255
4259
|
*
|
4256
4260
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4261,7 +4265,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
4261
4265
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
4262
4266
|
int __pyx_r;
|
4263
4267
|
|
4264
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4268
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1068
|
4265
4269
|
* bool
|
4266
4270
|
* """
|
4267
4271
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
@@ -4271,7 +4275,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
4271
4275
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
4272
4276
|
goto __pyx_L0;
|
4273
4277
|
|
4274
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4278
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1056
|
4275
4279
|
*
|
4276
4280
|
*
|
4277
4281
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4284,7 +4288,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
4284
4288
|
return __pyx_r;
|
4285
4289
|
}
|
4286
4290
|
|
4287
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4291
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1071
|
4288
4292
|
*
|
4289
4293
|
*
|
4290
4294
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4295,7 +4299,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
4295
4299
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
4296
4300
|
npy_datetime __pyx_r;
|
4297
4301
|
|
4298
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4302
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1078
|
4299
4303
|
* also needed. That can be found using `get_datetime64_unit`.
|
4300
4304
|
* """
|
4301
4305
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -4305,7 +4309,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
4305
4309
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
4306
4310
|
goto __pyx_L0;
|
4307
4311
|
|
4308
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4312
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1071
|
4309
4313
|
*
|
4310
4314
|
*
|
4311
4315
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4318,7 +4322,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
4318
4322
|
return __pyx_r;
|
4319
4323
|
}
|
4320
4324
|
|
4321
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4325
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1081
|
4322
4326
|
*
|
4323
4327
|
*
|
4324
4328
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4329,7 +4333,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
4329
4333
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
4330
4334
|
npy_timedelta __pyx_r;
|
4331
4335
|
|
4332
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4336
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1085
|
4333
4337
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
4334
4338
|
* """
|
4335
4339
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -4339,7 +4343,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
4339
4343
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
4340
4344
|
goto __pyx_L0;
|
4341
4345
|
|
4342
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4346
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1081
|
4343
4347
|
*
|
4344
4348
|
*
|
4345
4349
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4352,7 +4356,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
4352
4356
|
return __pyx_r;
|
4353
4357
|
}
|
4354
4358
|
|
4355
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4359
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1088
|
4356
4360
|
*
|
4357
4361
|
*
|
4358
4362
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4363,7 +4367,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
4363
4367
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
4364
4368
|
NPY_DATETIMEUNIT __pyx_r;
|
4365
4369
|
|
4366
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4370
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1092
|
4367
4371
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
4368
4372
|
* """
|
4369
4373
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
@@ -4373,7 +4377,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
4373
4377
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
4374
4378
|
goto __pyx_L0;
|
4375
4379
|
|
4376
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4380
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-bekve06p/overlay/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1088
|
4377
4381
|
*
|
4378
4382
|
*
|
4379
4383
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4462,153 +4466,153 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
4462
4466
|
/*--- Type import code ---*/
|
4463
4467
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 9, __pyx_L1_error)
|
4464
4468
|
__Pyx_GOTREF(__pyx_t_1);
|
4465
|
-
__pyx_mstate->__pyx_ptype_7cpython_4type_type =
|
4469
|
+
__pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_4(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
4466
4470
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4467
|
-
sizeof(PyTypeObject),
|
4471
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyTypeObject),
|
4468
4472
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4469
4473
|
0, 0,
|
4470
4474
|
#else
|
4471
|
-
sizeof(PyHeapTypeObject),
|
4475
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyHeapTypeObject),
|
4472
4476
|
#endif
|
4473
|
-
|
4477
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
|
4474
4478
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
4475
4479
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 271, __pyx_L1_error)
|
4476
4480
|
__Pyx_GOTREF(__pyx_t_1);
|
4477
|
-
__pyx_mstate->__pyx_ptype_5numpy_dtype =
|
4481
|
+
__pyx_mstate->__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "dtype",
|
4478
4482
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4479
|
-
sizeof(PyArray_Descr),
|
4483
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
4480
4484
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4481
|
-
sizeof(PyArray_Descr),
|
4485
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
4482
4486
|
#else
|
4483
|
-
sizeof(PyArray_Descr),
|
4487
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
4484
4488
|
#endif
|
4485
|
-
|
4486
|
-
__pyx_mstate->__pyx_ptype_5numpy_flatiter =
|
4489
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_dtype) __PYX_ERR(1, 271, __pyx_L1_error)
|
4490
|
+
__pyx_mstate->__pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "flatiter",
|
4487
4491
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4488
|
-
sizeof(PyArrayIterObject),
|
4492
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
4489
4493
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4490
|
-
sizeof(PyArrayIterObject),
|
4494
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
4491
4495
|
#else
|
4492
|
-
sizeof(PyArrayIterObject),
|
4496
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
4493
4497
|
#endif
|
4494
|
-
|
4495
|
-
__pyx_mstate->__pyx_ptype_5numpy_broadcast =
|
4498
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_flatiter) __PYX_ERR(1, 316, __pyx_L1_error)
|
4499
|
+
__pyx_mstate->__pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "broadcast",
|
4496
4500
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4497
|
-
sizeof(PyArrayMultiIterObject),
|
4501
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
4498
4502
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4499
|
-
sizeof(PyArrayMultiIterObject),
|
4503
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
4500
4504
|
#else
|
4501
|
-
sizeof(PyArrayMultiIterObject),
|
4505
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
4502
4506
|
#endif
|
4503
|
-
|
4504
|
-
__pyx_mstate->__pyx_ptype_5numpy_ndarray =
|
4507
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_broadcast) __PYX_ERR(1, 320, __pyx_L1_error)
|
4508
|
+
__pyx_mstate->__pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "ndarray",
|
4505
4509
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4506
|
-
sizeof(PyArrayObject),
|
4510
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
4507
4511
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4508
|
-
sizeof(PyArrayObject),
|
4512
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
4509
4513
|
#else
|
4510
|
-
sizeof(PyArrayObject),
|
4514
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
4511
4515
|
#endif
|
4512
|
-
|
4513
|
-
__pyx_mstate->__pyx_ptype_5numpy_generic =
|
4516
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_ndarray) __PYX_ERR(1, 359, __pyx_L1_error)
|
4517
|
+
__pyx_mstate->__pyx_ptype_5numpy_generic = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "generic",
|
4514
4518
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4515
|
-
sizeof(PyObject),
|
4519
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4516
4520
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4517
|
-
sizeof(PyObject),
|
4521
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4518
4522
|
#else
|
4519
|
-
sizeof(PyObject),
|
4523
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4520
4524
|
#endif
|
4521
|
-
|
4522
|
-
__pyx_mstate->__pyx_ptype_5numpy_number =
|
4525
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_generic) __PYX_ERR(1, 848, __pyx_L1_error)
|
4526
|
+
__pyx_mstate->__pyx_ptype_5numpy_number = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "number",
|
4523
4527
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4524
|
-
sizeof(PyObject),
|
4528
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4525
4529
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4526
|
-
sizeof(PyObject),
|
4530
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4527
4531
|
#else
|
4528
|
-
sizeof(PyObject),
|
4532
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4529
4533
|
#endif
|
4530
|
-
|
4531
|
-
__pyx_mstate->__pyx_ptype_5numpy_integer =
|
4534
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_number) __PYX_ERR(1, 850, __pyx_L1_error)
|
4535
|
+
__pyx_mstate->__pyx_ptype_5numpy_integer = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "integer",
|
4532
4536
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4533
|
-
sizeof(PyObject),
|
4537
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4534
4538
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4535
|
-
sizeof(PyObject),
|
4539
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4536
4540
|
#else
|
4537
|
-
sizeof(PyObject),
|
4541
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4538
4542
|
#endif
|
4539
|
-
|
4540
|
-
__pyx_mstate->__pyx_ptype_5numpy_signedinteger =
|
4543
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_integer) __PYX_ERR(1, 852, __pyx_L1_error)
|
4544
|
+
__pyx_mstate->__pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "signedinteger",
|
4541
4545
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4542
|
-
sizeof(PyObject),
|
4546
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4543
4547
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4544
|
-
sizeof(PyObject),
|
4548
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4545
4549
|
#else
|
4546
|
-
sizeof(PyObject),
|
4550
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4547
4551
|
#endif
|
4548
|
-
|
4549
|
-
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger =
|
4552
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_signedinteger) __PYX_ERR(1, 854, __pyx_L1_error)
|
4553
|
+
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "unsignedinteger",
|
4550
4554
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4551
|
-
sizeof(PyObject),
|
4555
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4552
4556
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4553
|
-
sizeof(PyObject),
|
4557
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4554
4558
|
#else
|
4555
|
-
sizeof(PyObject),
|
4559
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4556
4560
|
#endif
|
4557
|
-
|
4558
|
-
__pyx_mstate->__pyx_ptype_5numpy_inexact =
|
4561
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(1, 856, __pyx_L1_error)
|
4562
|
+
__pyx_mstate->__pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "inexact",
|
4559
4563
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4560
|
-
sizeof(PyObject),
|
4564
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4561
4565
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4562
|
-
sizeof(PyObject),
|
4566
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4563
4567
|
#else
|
4564
|
-
sizeof(PyObject),
|
4568
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4565
4569
|
#endif
|
4566
|
-
|
4567
|
-
__pyx_mstate->__pyx_ptype_5numpy_floating =
|
4570
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_inexact) __PYX_ERR(1, 858, __pyx_L1_error)
|
4571
|
+
__pyx_mstate->__pyx_ptype_5numpy_floating = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "floating",
|
4568
4572
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4569
|
-
sizeof(PyObject),
|
4573
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4570
4574
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4571
|
-
sizeof(PyObject),
|
4575
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4572
4576
|
#else
|
4573
|
-
sizeof(PyObject),
|
4577
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4574
4578
|
#endif
|
4575
|
-
|
4576
|
-
__pyx_mstate->__pyx_ptype_5numpy_complexfloating =
|
4579
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_floating) __PYX_ERR(1, 860, __pyx_L1_error)
|
4580
|
+
__pyx_mstate->__pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "complexfloating",
|
4577
4581
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4578
|
-
sizeof(PyObject),
|
4582
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4579
4583
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4580
|
-
sizeof(PyObject),
|
4584
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4581
4585
|
#else
|
4582
|
-
sizeof(PyObject),
|
4586
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4583
4587
|
#endif
|
4584
|
-
|
4585
|
-
__pyx_mstate->__pyx_ptype_5numpy_flexible =
|
4588
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_complexfloating) __PYX_ERR(1, 862, __pyx_L1_error)
|
4589
|
+
__pyx_mstate->__pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "flexible",
|
4586
4590
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4587
|
-
sizeof(PyObject),
|
4591
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4588
4592
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4589
|
-
sizeof(PyObject),
|
4593
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4590
4594
|
#else
|
4591
|
-
sizeof(PyObject),
|
4595
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4592
4596
|
#endif
|
4593
|
-
|
4594
|
-
__pyx_mstate->__pyx_ptype_5numpy_character =
|
4597
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_flexible) __PYX_ERR(1, 864, __pyx_L1_error)
|
4598
|
+
__pyx_mstate->__pyx_ptype_5numpy_character = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "character",
|
4595
4599
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4596
|
-
sizeof(PyObject),
|
4600
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4597
4601
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4598
|
-
sizeof(PyObject),
|
4602
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4599
4603
|
#else
|
4600
|
-
sizeof(PyObject),
|
4604
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4601
4605
|
#endif
|
4602
|
-
|
4603
|
-
__pyx_mstate->__pyx_ptype_5numpy_ufunc =
|
4606
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_character) __PYX_ERR(1, 866, __pyx_L1_error)
|
4607
|
+
__pyx_mstate->__pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "ufunc",
|
4604
4608
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4605
|
-
sizeof(PyUFuncObject),
|
4609
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
4606
4610
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4607
|
-
sizeof(PyUFuncObject),
|
4611
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
4608
4612
|
#else
|
4609
|
-
sizeof(PyUFuncObject),
|
4613
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
4610
4614
|
#endif
|
4611
|
-
|
4615
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_ufunc) __PYX_ERR(1, 930, __pyx_L1_error)
|
4612
4616
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
4613
4617
|
__Pyx_RefNannyFinishContext();
|
4614
4618
|
return 0;
|
@@ -4924,34 +4928,34 @@ __Pyx_RefNannySetupContext("PyInit_commons", 0);
|
|
4924
4928
|
(void)__Pyx_modinit_function_import_code(__pyx_mstate);
|
4925
4929
|
/*--- Execution code ---*/
|
4926
4930
|
|
4927
|
-
/* "edsger/commons.pyx":
|
4928
|
-
*
|
4931
|
+
/* "edsger/commons.pyx":12
|
4932
|
+
* # cython: initializedcheck=False
|
4929
4933
|
*
|
4930
4934
|
* import numpy as np # <<<<<<<<<<<<<<
|
4931
4935
|
*
|
4932
4936
|
* DTYPE_PY = np.float64
|
4933
4937
|
*/
|
4934
|
-
__pyx_t_2 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
4938
|
+
__pyx_t_2 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
4935
4939
|
__Pyx_GOTREF(__pyx_t_2);
|
4936
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_2) < 0) __PYX_ERR(0,
|
4940
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_2) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
4937
4941
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
4938
4942
|
|
4939
|
-
/* "edsger/commons.pyx":
|
4943
|
+
/* "edsger/commons.pyx":14
|
4940
4944
|
* import numpy as np
|
4941
4945
|
*
|
4942
4946
|
* DTYPE_PY = np.float64 # <<<<<<<<<<<<<<
|
4943
4947
|
* DTYPE_INF = <DTYPE_t>np.finfo(dtype=DTYPE_PY).max
|
4944
4948
|
* DTYPE_INF_PY = DTYPE_INF
|
4945
4949
|
*/
|
4946
|
-
__Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
4950
|
+
__Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error)
|
4947
4951
|
__Pyx_GOTREF(__pyx_t_2);
|
4948
|
-
__pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_3)) __PYX_ERR(0,
|
4952
|
+
__pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error)
|
4949
4953
|
__Pyx_GOTREF(__pyx_t_3);
|
4950
4954
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
4951
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_DTYPE_PY, __pyx_t_3) < 0) __PYX_ERR(0,
|
4955
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_DTYPE_PY, __pyx_t_3) < 0) __PYX_ERR(0, 14, __pyx_L1_error)
|
4952
4956
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
4953
4957
|
|
4954
|
-
/* "edsger/commons.pyx":
|
4958
|
+
/* "edsger/commons.pyx":15
|
4955
4959
|
*
|
4956
4960
|
* DTYPE_PY = np.float64
|
4957
4961
|
* DTYPE_INF = <DTYPE_t>np.finfo(dtype=DTYPE_PY).max # <<<<<<<<<<<<<<
|
@@ -4959,47 +4963,47 @@ __Pyx_RefNannySetupContext("PyInit_commons", 0);
|
|
4959
4963
|
*
|
4960
4964
|
*/
|
4961
4965
|
__pyx_t_2 = NULL;
|
4962
|
-
__Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0,
|
4966
|
+
__Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4963
4967
|
__Pyx_GOTREF(__pyx_t_4);
|
4964
|
-
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_finfo); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
4968
|
+
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_finfo); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4965
4969
|
__Pyx_GOTREF(__pyx_t_5);
|
4966
4970
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
4967
|
-
__Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_DTYPE_PY); if (unlikely(!__pyx_t_4)) __PYX_ERR(0,
|
4971
|
+
__Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_DTYPE_PY); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4968
4972
|
__Pyx_GOTREF(__pyx_t_4);
|
4969
4973
|
__pyx_t_6 = 1;
|
4970
4974
|
{
|
4971
4975
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_2, NULL};
|
4972
|
-
__pyx_t_7 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0,
|
4976
|
+
__pyx_t_7 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4973
4977
|
__Pyx_GOTREF(__pyx_t_7);
|
4974
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_7, __pyx_callargs+1, 0) < 0) __PYX_ERR(0,
|
4978
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_7, __pyx_callargs+1, 0) < 0) __PYX_ERR(0, 15, __pyx_L1_error)
|
4975
4979
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_5, __pyx_callargs+__pyx_t_6, (1-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_7);
|
4976
4980
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
4977
4981
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
4978
4982
|
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
|
4979
4983
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
4980
|
-
if (unlikely(!__pyx_t_3)) __PYX_ERR(0,
|
4984
|
+
if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4981
4985
|
__Pyx_GOTREF(__pyx_t_3);
|
4982
4986
|
}
|
4983
|
-
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_mstate_global->__pyx_n_u_max); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
4987
|
+
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_mstate_global->__pyx_n_u_max); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4984
4988
|
__Pyx_GOTREF(__pyx_t_5);
|
4985
4989
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
4986
|
-
__pyx_t_8 = __Pyx_PyFloat_AsDouble(__pyx_t_5); if (unlikely((__pyx_t_8 == ((npy_float64)-1)) && PyErr_Occurred())) __PYX_ERR(0,
|
4990
|
+
__pyx_t_8 = __Pyx_PyFloat_AsDouble(__pyx_t_5); if (unlikely((__pyx_t_8 == ((npy_float64)-1)) && PyErr_Occurred())) __PYX_ERR(0, 15, __pyx_L1_error)
|
4987
4991
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
4988
4992
|
__pyx_v_6edsger_7commons_DTYPE_INF = ((__pyx_t_6edsger_7commons_DTYPE_t)__pyx_t_8);
|
4989
4993
|
|
4990
|
-
/* "edsger/commons.pyx":
|
4994
|
+
/* "edsger/commons.pyx":16
|
4991
4995
|
* DTYPE_PY = np.float64
|
4992
4996
|
* DTYPE_INF = <DTYPE_t>np.finfo(dtype=DTYPE_PY).max
|
4993
4997
|
* DTYPE_INF_PY = DTYPE_INF # <<<<<<<<<<<<<<
|
4994
4998
|
*
|
4995
4999
|
* # Spiess & Florian
|
4996
5000
|
*/
|
4997
|
-
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_DTYPE_INF); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
5001
|
+
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_DTYPE_INF); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 16, __pyx_L1_error)
|
4998
5002
|
__Pyx_GOTREF(__pyx_t_5);
|
4999
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_DTYPE_INF_PY, __pyx_t_5) < 0) __PYX_ERR(0,
|
5003
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_DTYPE_INF_PY, __pyx_t_5) < 0) __PYX_ERR(0, 16, __pyx_L1_error)
|
5000
5004
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
5001
5005
|
|
5002
|
-
/* "edsger/commons.pyx":
|
5006
|
+
/* "edsger/commons.pyx":24
|
5003
5007
|
* # this must be a very large number depending on the precision on the computation
|
5004
5008
|
* # INF_FREQ << DTYPE_INF
|
5005
5009
|
* INF_FREQ = 1.0e+20 # <<<<<<<<<<<<<<
|
@@ -5008,40 +5012,44 @@ __Pyx_RefNannySetupContext("PyInit_commons", 0);
|
|
5008
5012
|
*/
|
5009
5013
|
__pyx_v_6edsger_7commons_INF_FREQ = 1.0e+20;
|
5010
5014
|
|
5011
|
-
/* "edsger/commons.pyx":
|
5015
|
+
/* "edsger/commons.pyx":25
|
5012
5016
|
* # INF_FREQ << DTYPE_INF
|
5013
5017
|
* INF_FREQ = 1.0e+20
|
5014
5018
|
* INF_FREQ_PY = INF_FREQ # <<<<<<<<<<<<<<
|
5015
5019
|
*
|
5016
5020
|
* # smallest frequency
|
5017
5021
|
*/
|
5018
|
-
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_INF_FREQ); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
5022
|
+
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_INF_FREQ); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 25, __pyx_L1_error)
|
5019
5023
|
__Pyx_GOTREF(__pyx_t_5);
|
5020
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_INF_FREQ_PY, __pyx_t_5) < 0) __PYX_ERR(0,
|
5024
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_INF_FREQ_PY, __pyx_t_5) < 0) __PYX_ERR(0, 25, __pyx_L1_error)
|
5021
5025
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
5022
5026
|
|
5023
|
-
/* "edsger/commons.pyx":
|
5027
|
+
/* "edsger/commons.pyx":30
|
5024
5028
|
* # WARNING: this must be small but not too small
|
5025
5029
|
* # 1 / MIN_FREQ << DTYPE_INF
|
5026
5030
|
* MIN_FREQ = 1.0 / INF_FREQ # <<<<<<<<<<<<<<
|
5027
5031
|
* MIN_FREQ_PY = MIN_FREQ
|
5028
5032
|
*
|
5029
5033
|
*/
|
5034
|
+
if (unlikely(__pyx_v_6edsger_7commons_INF_FREQ == 0)) {
|
5035
|
+
PyErr_SetString(PyExc_ZeroDivisionError, "float division");
|
5036
|
+
__PYX_ERR(0, 30, __pyx_L1_error)
|
5037
|
+
}
|
5030
5038
|
__pyx_v_6edsger_7commons_MIN_FREQ = (((__pyx_t_6edsger_7commons_DTYPE_t)1.0) / __pyx_v_6edsger_7commons_INF_FREQ);
|
5031
5039
|
|
5032
|
-
/* "edsger/commons.pyx":
|
5040
|
+
/* "edsger/commons.pyx":31
|
5033
5041
|
* # 1 / MIN_FREQ << DTYPE_INF
|
5034
5042
|
* MIN_FREQ = 1.0 / INF_FREQ
|
5035
5043
|
* MIN_FREQ_PY = MIN_FREQ # <<<<<<<<<<<<<<
|
5036
5044
|
*
|
5037
5045
|
* # a very small time interval
|
5038
5046
|
*/
|
5039
|
-
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_MIN_FREQ); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
5047
|
+
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_MIN_FREQ); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 31, __pyx_L1_error)
|
5040
5048
|
__Pyx_GOTREF(__pyx_t_5);
|
5041
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_MIN_FREQ_PY, __pyx_t_5) < 0) __PYX_ERR(0,
|
5049
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_MIN_FREQ_PY, __pyx_t_5) < 0) __PYX_ERR(0, 31, __pyx_L1_error)
|
5042
5050
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
5043
5051
|
|
5044
|
-
/* "edsger/commons.pyx":
|
5052
|
+
/* "edsger/commons.pyx":34
|
5045
5053
|
*
|
5046
5054
|
* # a very small time interval
|
5047
5055
|
* A_VERY_SMALL_TIME_INTERVAL = 1.0e+08 * MIN_FREQ # <<<<<<<<<<<<<<
|
@@ -5050,16 +5058,16 @@ __Pyx_RefNannySetupContext("PyInit_commons", 0);
|
|
5050
5058
|
*/
|
5051
5059
|
__pyx_v_6edsger_7commons_A_VERY_SMALL_TIME_INTERVAL = (1.0e+08 * __pyx_v_6edsger_7commons_MIN_FREQ);
|
5052
5060
|
|
5053
|
-
/* "edsger/commons.pyx":
|
5061
|
+
/* "edsger/commons.pyx":35
|
5054
5062
|
* # a very small time interval
|
5055
5063
|
* A_VERY_SMALL_TIME_INTERVAL = 1.0e+08 * MIN_FREQ
|
5056
5064
|
* A_VERY_SMALL_TIME_INTERVAL_PY = A_VERY_SMALL_TIME_INTERVAL # <<<<<<<<<<<<<<
|
5057
5065
|
*
|
5058
5066
|
*
|
5059
5067
|
*/
|
5060
|
-
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_A_VERY_SMALL_TIME_INTERVAL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
5068
|
+
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_A_VERY_SMALL_TIME_INTERVAL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 35, __pyx_L1_error)
|
5061
5069
|
__Pyx_GOTREF(__pyx_t_5);
|
5062
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_A_VERY_SMALL_TIME_INTERVAL_PY, __pyx_t_5) < 0) __PYX_ERR(0,
|
5070
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_A_VERY_SMALL_TIME_INTERVAL_PY, __pyx_t_5) < 0) __PYX_ERR(0, 35, __pyx_L1_error)
|
5063
5071
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
5064
5072
|
|
5065
5073
|
/* "edsger/commons.pyx":1
|
@@ -5933,15 +5941,15 @@ bad:
|
|
5933
5941
|
}
|
5934
5942
|
|
5935
5943
|
/* TypeImport */
|
5936
|
-
#ifndef
|
5937
|
-
#define
|
5938
|
-
static PyTypeObject *
|
5939
|
-
size_t size, size_t alignment, enum
|
5944
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_4
|
5945
|
+
#define __PYX_HAVE_RT_ImportType_3_1_4
|
5946
|
+
static PyTypeObject *__Pyx_ImportType_3_1_4(PyObject *module, const char *module_name, const char *class_name,
|
5947
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_4 check_size)
|
5940
5948
|
{
|
5941
5949
|
PyObject *result = 0;
|
5942
5950
|
Py_ssize_t basicsize;
|
5943
5951
|
Py_ssize_t itemsize;
|
5944
|
-
#
|
5952
|
+
#ifdef Py_LIMITED_API
|
5945
5953
|
PyObject *py_basicsize;
|
5946
5954
|
PyObject *py_itemsize;
|
5947
5955
|
#endif
|
@@ -5954,7 +5962,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
5954
5962
|
module_name, class_name);
|
5955
5963
|
goto bad;
|
5956
5964
|
}
|
5957
|
-
#
|
5965
|
+
#ifndef Py_LIMITED_API
|
5958
5966
|
basicsize = ((PyTypeObject *)result)->tp_basicsize;
|
5959
5967
|
itemsize = ((PyTypeObject *)result)->tp_itemsize;
|
5960
5968
|
#else
|
@@ -5992,7 +6000,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
5992
6000
|
module_name, class_name, size, basicsize+itemsize);
|
5993
6001
|
goto bad;
|
5994
6002
|
}
|
5995
|
-
if (check_size ==
|
6003
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_4 &&
|
5996
6004
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
5997
6005
|
PyErr_Format(PyExc_ValueError,
|
5998
6006
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
@@ -6000,7 +6008,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
6000
6008
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
6001
6009
|
goto bad;
|
6002
6010
|
}
|
6003
|
-
else if (check_size ==
|
6011
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_4 && (size_t)basicsize > size) {
|
6004
6012
|
if (PyErr_WarnFormat(NULL, 0,
|
6005
6013
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
6006
6014
|
"Expected %zd from C header, got %zd from PyObject",
|