eqc-models 0.9.8__py3-none-any.whl → 0.9.9__py3-none-any.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.
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/assignment/setpartition.py +8 -29
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/base/polyeval.c +123 -123
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/base/polyeval.cpython-310-darwin.so +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/base/polynomial.py +84 -1
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/sequence/tsp.py +38 -34
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/solvers/qciclient.py +46 -11
- {eqc_models-0.9.8.dist-info → eqc_models-0.9.9.dist-info}/METADATA +2 -2
- eqc_models-0.9.9.dist-info/RECORD +52 -0
- {eqc_models-0.9.8.dist-info → eqc_models-0.9.9.dist-info}/WHEEL +1 -1
- eqc_models-0.9.8.dist-info/RECORD +0 -52
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/compile_extensions.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/__init__.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/algorithms/__init__.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/algorithms/base.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/algorithms/penaltymultiplier.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/allocation/__init__.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/allocation/allocation.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/allocation/portbase.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/allocation/portmomentum.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/assignment/__init__.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/assignment/qap.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/base/__init__.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/base/base.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/base/constraints.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/base/operators.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/base/polyeval.pyx +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/base/quadratic.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/decoding.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/graph/__init__.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/graph/base.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/graph/hypergraph.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/graph/maxcut.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/graph/maxkcut.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/__init__.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/classifierbase.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/classifierqboost.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/classifierqsvm.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/clustering.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/clusteringbase.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/decomposition.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/forecast.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/forecastbase.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/regressor.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/regressorbase.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/ml/reservoir.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/sequence/__init__.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/solvers/__init__.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/utilities/__init__.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/utilities/fileio.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/utilities/polynomial.py +0 -0
- {eqc_models-0.9.8.data → eqc_models-0.9.9.data}/platlib/eqc_models/utilities/qplib.py +0 -0
- {eqc_models-0.9.8.dist-info → eqc_models-0.9.9.dist-info}/LICENSE.txt +0 -0
- {eqc_models-0.9.8.dist-info → eqc_models-0.9.9.dist-info}/top_level.txt +0 -0
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
{
|
|
5
5
|
"distutils": {
|
|
6
6
|
"depends": [
|
|
7
|
-
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-
|
|
8
|
-
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-
|
|
9
|
-
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-
|
|
10
|
-
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-
|
|
11
|
-
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-
|
|
7
|
+
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-zhwcama8/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h",
|
|
8
|
+
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-zhwcama8/lib/python3.10/site-packages/numpy/core/include/numpy/arrayscalars.h",
|
|
9
|
+
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-zhwcama8/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h",
|
|
10
|
+
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-zhwcama8/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h",
|
|
11
|
+
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-zhwcama8/lib/python3.10/site-packages/numpy/core/include/numpy/ufuncobject.h"
|
|
12
12
|
],
|
|
13
13
|
"include_dirs": [
|
|
14
|
-
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-
|
|
14
|
+
"/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-zhwcama8/lib/python3.10/site-packages/numpy/core/include"
|
|
15
15
|
],
|
|
16
16
|
"name": "eqc_models.base.polyeval",
|
|
17
17
|
"sources": [
|
|
@@ -1568,7 +1568,7 @@ typedef struct {
|
|
|
1568
1568
|
|
|
1569
1569
|
/* #### Code section: numeric_typedefs ### */
|
|
1570
1570
|
|
|
1571
|
-
/* "../../build-env-
|
|
1571
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":730
|
|
1572
1572
|
* # in Cython to enable them only on the right systems.
|
|
1573
1573
|
*
|
|
1574
1574
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1577,7 +1577,7 @@ typedef struct {
|
|
|
1577
1577
|
*/
|
|
1578
1578
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1579
1579
|
|
|
1580
|
-
/* "../../build-env-
|
|
1580
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":731
|
|
1581
1581
|
*
|
|
1582
1582
|
* ctypedef npy_int8 int8_t
|
|
1583
1583
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1586,7 +1586,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1586
1586
|
*/
|
|
1587
1587
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1588
1588
|
|
|
1589
|
-
/* "../../build-env-
|
|
1589
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1590
1590
|
* ctypedef npy_int8 int8_t
|
|
1591
1591
|
* ctypedef npy_int16 int16_t
|
|
1592
1592
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1595,7 +1595,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1595
1595
|
*/
|
|
1596
1596
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1597
1597
|
|
|
1598
|
-
/* "../../build-env-
|
|
1598
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1599
1599
|
* ctypedef npy_int16 int16_t
|
|
1600
1600
|
* ctypedef npy_int32 int32_t
|
|
1601
1601
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1604,7 +1604,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1604
1604
|
*/
|
|
1605
1605
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1606
1606
|
|
|
1607
|
-
/* "../../build-env-
|
|
1607
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":737
|
|
1608
1608
|
* #ctypedef npy_int128 int128_t
|
|
1609
1609
|
*
|
|
1610
1610
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1613,7 +1613,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1613
1613
|
*/
|
|
1614
1614
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1615
1615
|
|
|
1616
|
-
/* "../../build-env-
|
|
1616
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":738
|
|
1617
1617
|
*
|
|
1618
1618
|
* ctypedef npy_uint8 uint8_t
|
|
1619
1619
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1622,7 +1622,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1622
1622
|
*/
|
|
1623
1623
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1624
1624
|
|
|
1625
|
-
/* "../../build-env-
|
|
1625
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1626
1626
|
* ctypedef npy_uint8 uint8_t
|
|
1627
1627
|
* ctypedef npy_uint16 uint16_t
|
|
1628
1628
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1631,7 +1631,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1631
1631
|
*/
|
|
1632
1632
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1633
1633
|
|
|
1634
|
-
/* "../../build-env-
|
|
1634
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1635
1635
|
* ctypedef npy_uint16 uint16_t
|
|
1636
1636
|
* ctypedef npy_uint32 uint32_t
|
|
1637
1637
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1640,7 +1640,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1640
1640
|
*/
|
|
1641
1641
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1642
1642
|
|
|
1643
|
-
/* "../../build-env-
|
|
1643
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":744
|
|
1644
1644
|
* #ctypedef npy_uint128 uint128_t
|
|
1645
1645
|
*
|
|
1646
1646
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1649,7 +1649,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1649
1649
|
*/
|
|
1650
1650
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1651
1651
|
|
|
1652
|
-
/* "../../build-env-
|
|
1652
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":745
|
|
1653
1653
|
*
|
|
1654
1654
|
* ctypedef npy_float32 float32_t
|
|
1655
1655
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1658,7 +1658,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1658
1658
|
*/
|
|
1659
1659
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1660
1660
|
|
|
1661
|
-
/* "../../build-env-
|
|
1661
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":754
|
|
1662
1662
|
* # The int types are mapped a bit surprising --
|
|
1663
1663
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1664
1664
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1667,7 +1667,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1667
1667
|
*/
|
|
1668
1668
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1669
1669
|
|
|
1670
|
-
/* "../../build-env-
|
|
1670
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":755
|
|
1671
1671
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1672
1672
|
* ctypedef npy_long int_t
|
|
1673
1673
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1676,7 +1676,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1676
1676
|
*/
|
|
1677
1677
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1678
1678
|
|
|
1679
|
-
/* "../../build-env-
|
|
1679
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1680
1680
|
* ctypedef npy_longlong longlong_t
|
|
1681
1681
|
*
|
|
1682
1682
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1685,7 +1685,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1685
1685
|
*/
|
|
1686
1686
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1687
1687
|
|
|
1688
|
-
/* "../../build-env-
|
|
1688
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":758
|
|
1689
1689
|
*
|
|
1690
1690
|
* ctypedef npy_ulong uint_t
|
|
1691
1691
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1694,7 +1694,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1694
1694
|
*/
|
|
1695
1695
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1696
1696
|
|
|
1697
|
-
/* "../../build-env-
|
|
1697
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1698
1698
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1699
1699
|
*
|
|
1700
1700
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1703,7 +1703,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1703
1703
|
*/
|
|
1704
1704
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1705
1705
|
|
|
1706
|
-
/* "../../build-env-
|
|
1706
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1707
1707
|
*
|
|
1708
1708
|
* ctypedef npy_intp intp_t
|
|
1709
1709
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1712,7 +1712,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1712
1712
|
*/
|
|
1713
1713
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1714
1714
|
|
|
1715
|
-
/* "../../build-env-
|
|
1715
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":763
|
|
1716
1716
|
* ctypedef npy_uintp uintp_t
|
|
1717
1717
|
*
|
|
1718
1718
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1721,7 +1721,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1721
1721
|
*/
|
|
1722
1722
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1723
1723
|
|
|
1724
|
-
/* "../../build-env-
|
|
1724
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1725
1725
|
*
|
|
1726
1726
|
* ctypedef npy_double float_t
|
|
1727
1727
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1730,7 +1730,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1730
1730
|
*/
|
|
1731
1731
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1732
1732
|
|
|
1733
|
-
/* "../../build-env-
|
|
1733
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1734
1734
|
* ctypedef npy_double float_t
|
|
1735
1735
|
* ctypedef npy_double double_t
|
|
1736
1736
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1785,7 +1785,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
|
|
|
1785
1785
|
|
|
1786
1786
|
/*--- Type declarations ---*/
|
|
1787
1787
|
|
|
1788
|
-
/* "../../build-env-
|
|
1788
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1789
1789
|
* ctypedef npy_longdouble longdouble_t
|
|
1790
1790
|
*
|
|
1791
1791
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1794,7 +1794,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
|
|
|
1794
1794
|
*/
|
|
1795
1795
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1796
1796
|
|
|
1797
|
-
/* "../../build-env-
|
|
1797
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1798
1798
|
*
|
|
1799
1799
|
* ctypedef npy_cfloat cfloat_t
|
|
1800
1800
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1803,7 +1803,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1803
1803
|
*/
|
|
1804
1804
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1805
1805
|
|
|
1806
|
-
/* "../../build-env-
|
|
1806
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1807
1807
|
* ctypedef npy_cfloat cfloat_t
|
|
1808
1808
|
* ctypedef npy_cdouble cdouble_t
|
|
1809
1809
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1812,7 +1812,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1812
1812
|
*/
|
|
1813
1813
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1814
1814
|
|
|
1815
|
-
/* "../../build-env-
|
|
1815
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1816
1816
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1817
1817
|
*
|
|
1818
1818
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -3117,7 +3117,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
|
|
|
3117
3117
|
#define __pyx_codeobj__7 __pyx_mstate_global->__pyx_codeobj__7
|
|
3118
3118
|
/* #### Code section: module_code ### */
|
|
3119
3119
|
|
|
3120
|
-
/* "../../build-env-
|
|
3120
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":245
|
|
3121
3121
|
*
|
|
3122
3122
|
* @property
|
|
3123
3123
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3128,7 +3128,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
|
|
|
3128
3128
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
3129
3129
|
PyObject *__pyx_r;
|
|
3130
3130
|
|
|
3131
|
-
/* "../../build-env-
|
|
3131
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":248
|
|
3132
3132
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
3133
3133
|
* """
|
|
3134
3134
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -3138,7 +3138,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3138
3138
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
3139
3139
|
goto __pyx_L0;
|
|
3140
3140
|
|
|
3141
|
-
/* "../../build-env-
|
|
3141
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":245
|
|
3142
3142
|
*
|
|
3143
3143
|
* @property
|
|
3144
3144
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3151,7 +3151,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3151
3151
|
return __pyx_r;
|
|
3152
3152
|
}
|
|
3153
3153
|
|
|
3154
|
-
/* "../../build-env-
|
|
3154
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":251
|
|
3155
3155
|
*
|
|
3156
3156
|
* @property
|
|
3157
3157
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -3165,7 +3165,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3165
3165
|
PyArray_Descr *__pyx_t_1;
|
|
3166
3166
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
3167
3167
|
|
|
3168
|
-
/* "../../build-env-
|
|
3168
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":254
|
|
3169
3169
|
* """Returns an owned reference to the dtype of the array.
|
|
3170
3170
|
* """
|
|
3171
3171
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -3178,7 +3178,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3178
3178
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
3179
3179
|
goto __pyx_L0;
|
|
3180
3180
|
|
|
3181
|
-
/* "../../build-env-
|
|
3181
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":251
|
|
3182
3182
|
*
|
|
3183
3183
|
* @property
|
|
3184
3184
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -3193,7 +3193,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3193
3193
|
return __pyx_r;
|
|
3194
3194
|
}
|
|
3195
3195
|
|
|
3196
|
-
/* "../../build-env-
|
|
3196
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":257
|
|
3197
3197
|
*
|
|
3198
3198
|
* @property
|
|
3199
3199
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3204,7 +3204,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3204
3204
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
3205
3205
|
int __pyx_r;
|
|
3206
3206
|
|
|
3207
|
-
/* "../../build-env-
|
|
3207
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":260
|
|
3208
3208
|
* """Returns the number of dimensions in the array.
|
|
3209
3209
|
* """
|
|
3210
3210
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3214,7 +3214,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3214
3214
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
3215
3215
|
goto __pyx_L0;
|
|
3216
3216
|
|
|
3217
|
-
/* "../../build-env-
|
|
3217
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":257
|
|
3218
3218
|
*
|
|
3219
3219
|
* @property
|
|
3220
3220
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3227,7 +3227,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3227
3227
|
return __pyx_r;
|
|
3228
3228
|
}
|
|
3229
3229
|
|
|
3230
|
-
/* "../../build-env-
|
|
3230
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":263
|
|
3231
3231
|
*
|
|
3232
3232
|
* @property
|
|
3233
3233
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3238,7 +3238,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3238
3238
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
3239
3239
|
npy_intp *__pyx_r;
|
|
3240
3240
|
|
|
3241
|
-
/* "../../build-env-
|
|
3241
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":268
|
|
3242
3242
|
* Can return NULL for 0-dimensional arrays.
|
|
3243
3243
|
* """
|
|
3244
3244
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3248,7 +3248,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3248
3248
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
3249
3249
|
goto __pyx_L0;
|
|
3250
3250
|
|
|
3251
|
-
/* "../../build-env-
|
|
3251
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":263
|
|
3252
3252
|
*
|
|
3253
3253
|
* @property
|
|
3254
3254
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3261,7 +3261,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3261
3261
|
return __pyx_r;
|
|
3262
3262
|
}
|
|
3263
3263
|
|
|
3264
|
-
/* "../../build-env-
|
|
3264
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":271
|
|
3265
3265
|
*
|
|
3266
3266
|
* @property
|
|
3267
3267
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3272,7 +3272,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3272
3272
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
3273
3273
|
npy_intp *__pyx_r;
|
|
3274
3274
|
|
|
3275
|
-
/* "../../build-env-
|
|
3275
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":275
|
|
3276
3276
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
3277
3277
|
* """
|
|
3278
3278
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -3282,7 +3282,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3282
3282
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
3283
3283
|
goto __pyx_L0;
|
|
3284
3284
|
|
|
3285
|
-
/* "../../build-env-
|
|
3285
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":271
|
|
3286
3286
|
*
|
|
3287
3287
|
* @property
|
|
3288
3288
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3295,7 +3295,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3295
3295
|
return __pyx_r;
|
|
3296
3296
|
}
|
|
3297
3297
|
|
|
3298
|
-
/* "../../build-env-
|
|
3298
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":278
|
|
3299
3299
|
*
|
|
3300
3300
|
* @property
|
|
3301
3301
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3306,7 +3306,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3306
3306
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
3307
3307
|
npy_intp __pyx_r;
|
|
3308
3308
|
|
|
3309
|
-
/* "../../build-env-
|
|
3309
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":281
|
|
3310
3310
|
* """Returns the total size (in number of elements) of the array.
|
|
3311
3311
|
* """
|
|
3312
3312
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3316,7 +3316,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3316
3316
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
3317
3317
|
goto __pyx_L0;
|
|
3318
3318
|
|
|
3319
|
-
/* "../../build-env-
|
|
3319
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":278
|
|
3320
3320
|
*
|
|
3321
3321
|
* @property
|
|
3322
3322
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3329,7 +3329,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3329
3329
|
return __pyx_r;
|
|
3330
3330
|
}
|
|
3331
3331
|
|
|
3332
|
-
/* "../../build-env-
|
|
3332
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":284
|
|
3333
3333
|
*
|
|
3334
3334
|
* @property
|
|
3335
3335
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3340,7 +3340,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3340
3340
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
3341
3341
|
char *__pyx_r;
|
|
3342
3342
|
|
|
3343
|
-
/* "../../build-env-
|
|
3343
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":290
|
|
3344
3344
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
3345
3345
|
* """
|
|
3346
3346
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -3350,7 +3350,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3350
3350
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
3351
3351
|
goto __pyx_L0;
|
|
3352
3352
|
|
|
3353
|
-
/* "../../build-env-
|
|
3353
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":284
|
|
3354
3354
|
*
|
|
3355
3355
|
* @property
|
|
3356
3356
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -3363,7 +3363,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3363
3363
|
return __pyx_r;
|
|
3364
3364
|
}
|
|
3365
3365
|
|
|
3366
|
-
/* "../../build-env-
|
|
3366
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
|
|
3367
3367
|
* ctypedef npy_cdouble complex_t
|
|
3368
3368
|
*
|
|
3369
3369
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3380,7 +3380,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3380
3380
|
int __pyx_clineno = 0;
|
|
3381
3381
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
3382
3382
|
|
|
3383
|
-
/* "../../build-env-
|
|
3383
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":774
|
|
3384
3384
|
*
|
|
3385
3385
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
3386
3386
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -3394,7 +3394,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3394
3394
|
__pyx_t_1 = 0;
|
|
3395
3395
|
goto __pyx_L0;
|
|
3396
3396
|
|
|
3397
|
-
/* "../../build-env-
|
|
3397
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
|
|
3398
3398
|
* ctypedef npy_cdouble complex_t
|
|
3399
3399
|
*
|
|
3400
3400
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3413,7 +3413,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3413
3413
|
return __pyx_r;
|
|
3414
3414
|
}
|
|
3415
3415
|
|
|
3416
|
-
/* "../../build-env-
|
|
3416
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":776
|
|
3417
3417
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3418
3418
|
*
|
|
3419
3419
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3430,7 +3430,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3430
3430
|
int __pyx_clineno = 0;
|
|
3431
3431
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
3432
3432
|
|
|
3433
|
-
/* "../../build-env-
|
|
3433
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
|
|
3434
3434
|
*
|
|
3435
3435
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
3436
3436
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -3444,7 +3444,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3444
3444
|
__pyx_t_1 = 0;
|
|
3445
3445
|
goto __pyx_L0;
|
|
3446
3446
|
|
|
3447
|
-
/* "../../build-env-
|
|
3447
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":776
|
|
3448
3448
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3449
3449
|
*
|
|
3450
3450
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3463,7 +3463,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3463
3463
|
return __pyx_r;
|
|
3464
3464
|
}
|
|
3465
3465
|
|
|
3466
|
-
/* "../../build-env-
|
|
3466
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":779
|
|
3467
3467
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3468
3468
|
*
|
|
3469
3469
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3480,7 +3480,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3480
3480
|
int __pyx_clineno = 0;
|
|
3481
3481
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
3482
3482
|
|
|
3483
|
-
/* "../../build-env-
|
|
3483
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
|
|
3484
3484
|
*
|
|
3485
3485
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
3486
3486
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -3494,7 +3494,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3494
3494
|
__pyx_t_1 = 0;
|
|
3495
3495
|
goto __pyx_L0;
|
|
3496
3496
|
|
|
3497
|
-
/* "../../build-env-
|
|
3497
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":779
|
|
3498
3498
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3499
3499
|
*
|
|
3500
3500
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3513,7 +3513,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3513
3513
|
return __pyx_r;
|
|
3514
3514
|
}
|
|
3515
3515
|
|
|
3516
|
-
/* "../../build-env-
|
|
3516
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":782
|
|
3517
3517
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3518
3518
|
*
|
|
3519
3519
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3530,7 +3530,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3530
3530
|
int __pyx_clineno = 0;
|
|
3531
3531
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
3532
3532
|
|
|
3533
|
-
/* "../../build-env-
|
|
3533
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
|
|
3534
3534
|
*
|
|
3535
3535
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
3536
3536
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -3544,7 +3544,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3544
3544
|
__pyx_t_1 = 0;
|
|
3545
3545
|
goto __pyx_L0;
|
|
3546
3546
|
|
|
3547
|
-
/* "../../build-env-
|
|
3547
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":782
|
|
3548
3548
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3549
3549
|
*
|
|
3550
3550
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3563,7 +3563,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3563
3563
|
return __pyx_r;
|
|
3564
3564
|
}
|
|
3565
3565
|
|
|
3566
|
-
/* "../../build-env-
|
|
3566
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":785
|
|
3567
3567
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3568
3568
|
*
|
|
3569
3569
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -3580,7 +3580,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3580
3580
|
int __pyx_clineno = 0;
|
|
3581
3581
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
3582
3582
|
|
|
3583
|
-
/* "../../build-env-
|
|
3583
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
|
|
3584
3584
|
*
|
|
3585
3585
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
3586
3586
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -3594,7 +3594,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3594
3594
|
__pyx_t_1 = 0;
|
|
3595
3595
|
goto __pyx_L0;
|
|
3596
3596
|
|
|
3597
|
-
/* "../../build-env-
|
|
3597
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":785
|
|
3598
3598
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3599
3599
|
*
|
|
3600
3600
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -3613,7 +3613,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3613
3613
|
return __pyx_r;
|
|
3614
3614
|
}
|
|
3615
3615
|
|
|
3616
|
-
/* "../../build-env-
|
|
3616
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":788
|
|
3617
3617
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
3618
3618
|
*
|
|
3619
3619
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -3627,7 +3627,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3627
3627
|
int __pyx_t_1;
|
|
3628
3628
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
3629
3629
|
|
|
3630
|
-
/* "../../build-env-
|
|
3630
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
|
|
3631
3631
|
*
|
|
3632
3632
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3633
3633
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -3637,7 +3637,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3637
3637
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
3638
3638
|
if (__pyx_t_1) {
|
|
3639
3639
|
|
|
3640
|
-
/* "../../build-env-
|
|
3640
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":790
|
|
3641
3641
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3642
3642
|
* if PyDataType_HASSUBARRAY(d):
|
|
3643
3643
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -3649,7 +3649,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3649
3649
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
3650
3650
|
goto __pyx_L0;
|
|
3651
3651
|
|
|
3652
|
-
/* "../../build-env-
|
|
3652
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
|
|
3653
3653
|
*
|
|
3654
3654
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3655
3655
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -3658,7 +3658,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3658
3658
|
*/
|
|
3659
3659
|
}
|
|
3660
3660
|
|
|
3661
|
-
/* "../../build-env-
|
|
3661
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
|
|
3662
3662
|
* return <tuple>d.subarray.shape
|
|
3663
3663
|
* else:
|
|
3664
3664
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -3672,7 +3672,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3672
3672
|
goto __pyx_L0;
|
|
3673
3673
|
}
|
|
3674
3674
|
|
|
3675
|
-
/* "../../build-env-
|
|
3675
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":788
|
|
3676
3676
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
3677
3677
|
*
|
|
3678
3678
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -3687,7 +3687,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3687
3687
|
return __pyx_r;
|
|
3688
3688
|
}
|
|
3689
3689
|
|
|
3690
|
-
/* "../../build-env-
|
|
3690
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":968
|
|
3691
3691
|
* int _import_umath() except -1
|
|
3692
3692
|
*
|
|
3693
3693
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -3701,7 +3701,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3701
3701
|
const char *__pyx_filename = NULL;
|
|
3702
3702
|
int __pyx_clineno = 0;
|
|
3703
3703
|
|
|
3704
|
-
/* "../../build-env-
|
|
3704
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":969
|
|
3705
3705
|
*
|
|
3706
3706
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
3707
3707
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -3710,7 +3710,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3710
3710
|
*/
|
|
3711
3711
|
Py_INCREF(__pyx_v_base);
|
|
3712
3712
|
|
|
3713
|
-
/* "../../build-env-
|
|
3713
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":970
|
|
3714
3714
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
3715
3715
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
3716
3716
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -3719,7 +3719,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3719
3719
|
*/
|
|
3720
3720
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 970, __pyx_L1_error)
|
|
3721
3721
|
|
|
3722
|
-
/* "../../build-env-
|
|
3722
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":968
|
|
3723
3723
|
* int _import_umath() except -1
|
|
3724
3724
|
*
|
|
3725
3725
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -3734,7 +3734,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3734
3734
|
__pyx_L0:;
|
|
3735
3735
|
}
|
|
3736
3736
|
|
|
3737
|
-
/* "../../build-env-
|
|
3737
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
|
|
3738
3738
|
* PyArray_SetBaseObject(arr, base)
|
|
3739
3739
|
*
|
|
3740
3740
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -3749,7 +3749,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3749
3749
|
int __pyx_t_1;
|
|
3750
3750
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
3751
3751
|
|
|
3752
|
-
/* "../../build-env-
|
|
3752
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":973
|
|
3753
3753
|
*
|
|
3754
3754
|
* cdef inline object get_array_base(ndarray arr):
|
|
3755
3755
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -3758,7 +3758,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3758
3758
|
*/
|
|
3759
3759
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
3760
3760
|
|
|
3761
|
-
/* "../../build-env-
|
|
3761
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":974
|
|
3762
3762
|
* cdef inline object get_array_base(ndarray arr):
|
|
3763
3763
|
* base = PyArray_BASE(arr)
|
|
3764
3764
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -3768,7 +3768,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3768
3768
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
3769
3769
|
if (__pyx_t_1) {
|
|
3770
3770
|
|
|
3771
|
-
/* "../../build-env-
|
|
3771
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
|
|
3772
3772
|
* base = PyArray_BASE(arr)
|
|
3773
3773
|
* if base is NULL:
|
|
3774
3774
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -3779,7 +3779,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3779
3779
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
3780
3780
|
goto __pyx_L0;
|
|
3781
3781
|
|
|
3782
|
-
/* "../../build-env-
|
|
3782
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":974
|
|
3783
3783
|
* cdef inline object get_array_base(ndarray arr):
|
|
3784
3784
|
* base = PyArray_BASE(arr)
|
|
3785
3785
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -3788,7 +3788,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3788
3788
|
*/
|
|
3789
3789
|
}
|
|
3790
3790
|
|
|
3791
|
-
/* "../../build-env-
|
|
3791
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":976
|
|
3792
3792
|
* if base is NULL:
|
|
3793
3793
|
* return None
|
|
3794
3794
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -3800,7 +3800,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3800
3800
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
3801
3801
|
goto __pyx_L0;
|
|
3802
3802
|
|
|
3803
|
-
/* "../../build-env-
|
|
3803
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
|
|
3804
3804
|
* PyArray_SetBaseObject(arr, base)
|
|
3805
3805
|
*
|
|
3806
3806
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -3815,7 +3815,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3815
3815
|
return __pyx_r;
|
|
3816
3816
|
}
|
|
3817
3817
|
|
|
3818
|
-
/* "../../build-env-
|
|
3818
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":980
|
|
3819
3819
|
* # Versions of the import_* functions which are more suitable for
|
|
3820
3820
|
* # Cython code.
|
|
3821
3821
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -3839,7 +3839,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3839
3839
|
int __pyx_clineno = 0;
|
|
3840
3840
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
3841
3841
|
|
|
3842
|
-
/* "../../build-env-
|
|
3842
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
|
|
3843
3843
|
* # Cython code.
|
|
3844
3844
|
* cdef inline int import_array() except -1:
|
|
3845
3845
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -3855,7 +3855,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3855
3855
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
3856
3856
|
/*try:*/ {
|
|
3857
3857
|
|
|
3858
|
-
/* "../../build-env-
|
|
3858
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":982
|
|
3859
3859
|
* cdef inline int import_array() except -1:
|
|
3860
3860
|
* try:
|
|
3861
3861
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -3864,7 +3864,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3864
3864
|
*/
|
|
3865
3865
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 982, __pyx_L3_error)
|
|
3866
3866
|
|
|
3867
|
-
/* "../../build-env-
|
|
3867
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
|
|
3868
3868
|
* # Cython code.
|
|
3869
3869
|
* cdef inline int import_array() except -1:
|
|
3870
3870
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -3878,7 +3878,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3878
3878
|
goto __pyx_L8_try_end;
|
|
3879
3879
|
__pyx_L3_error:;
|
|
3880
3880
|
|
|
3881
|
-
/* "../../build-env-
|
|
3881
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
|
|
3882
3882
|
* try:
|
|
3883
3883
|
* __pyx_import_array()
|
|
3884
3884
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -3893,7 +3893,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3893
3893
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
3894
3894
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
3895
3895
|
|
|
3896
|
-
/* "../../build-env-
|
|
3896
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
|
|
3897
3897
|
* __pyx_import_array()
|
|
3898
3898
|
* except Exception:
|
|
3899
3899
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -3908,7 +3908,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3908
3908
|
}
|
|
3909
3909
|
goto __pyx_L5_except_error;
|
|
3910
3910
|
|
|
3911
|
-
/* "../../build-env-
|
|
3911
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
|
|
3912
3912
|
* # Cython code.
|
|
3913
3913
|
* cdef inline int import_array() except -1:
|
|
3914
3914
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -3924,7 +3924,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3924
3924
|
__pyx_L8_try_end:;
|
|
3925
3925
|
}
|
|
3926
3926
|
|
|
3927
|
-
/* "../../build-env-
|
|
3927
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":980
|
|
3928
3928
|
* # Versions of the import_* functions which are more suitable for
|
|
3929
3929
|
* # Cython code.
|
|
3930
3930
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -3947,7 +3947,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3947
3947
|
return __pyx_r;
|
|
3948
3948
|
}
|
|
3949
3949
|
|
|
3950
|
-
/* "../../build-env-
|
|
3950
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
|
|
3951
3951
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
3952
3952
|
*
|
|
3953
3953
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -3971,7 +3971,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
3971
3971
|
int __pyx_clineno = 0;
|
|
3972
3972
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
3973
3973
|
|
|
3974
|
-
/* "../../build-env-
|
|
3974
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
|
|
3975
3975
|
*
|
|
3976
3976
|
* cdef inline int import_umath() except -1:
|
|
3977
3977
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -3987,7 +3987,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
3987
3987
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
3988
3988
|
/*try:*/ {
|
|
3989
3989
|
|
|
3990
|
-
/* "../../build-env-
|
|
3990
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":988
|
|
3991
3991
|
* cdef inline int import_umath() except -1:
|
|
3992
3992
|
* try:
|
|
3993
3993
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -3996,7 +3996,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
3996
3996
|
*/
|
|
3997
3997
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 988, __pyx_L3_error)
|
|
3998
3998
|
|
|
3999
|
-
/* "../../build-env-
|
|
3999
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
|
|
4000
4000
|
*
|
|
4001
4001
|
* cdef inline int import_umath() except -1:
|
|
4002
4002
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4010,7 +4010,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4010
4010
|
goto __pyx_L8_try_end;
|
|
4011
4011
|
__pyx_L3_error:;
|
|
4012
4012
|
|
|
4013
|
-
/* "../../build-env-
|
|
4013
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
|
|
4014
4014
|
* try:
|
|
4015
4015
|
* _import_umath()
|
|
4016
4016
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4025,7 +4025,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4025
4025
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4026
4026
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4027
4027
|
|
|
4028
|
-
/* "../../build-env-
|
|
4028
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
|
|
4029
4029
|
* _import_umath()
|
|
4030
4030
|
* except Exception:
|
|
4031
4031
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4040,7 +4040,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4040
4040
|
}
|
|
4041
4041
|
goto __pyx_L5_except_error;
|
|
4042
4042
|
|
|
4043
|
-
/* "../../build-env-
|
|
4043
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
|
|
4044
4044
|
*
|
|
4045
4045
|
* cdef inline int import_umath() except -1:
|
|
4046
4046
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4056,7 +4056,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4056
4056
|
__pyx_L8_try_end:;
|
|
4057
4057
|
}
|
|
4058
4058
|
|
|
4059
|
-
/* "../../build-env-
|
|
4059
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
|
|
4060
4060
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
4061
4061
|
*
|
|
4062
4062
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4079,7 +4079,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4079
4079
|
return __pyx_r;
|
|
4080
4080
|
}
|
|
4081
4081
|
|
|
4082
|
-
/* "../../build-env-
|
|
4082
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
|
|
4083
4083
|
* raise ImportError("numpy.core.umath failed to import")
|
|
4084
4084
|
*
|
|
4085
4085
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4103,7 +4103,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4103
4103
|
int __pyx_clineno = 0;
|
|
4104
4104
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
4105
4105
|
|
|
4106
|
-
/* "../../build-env-
|
|
4106
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
|
|
4107
4107
|
*
|
|
4108
4108
|
* cdef inline int import_ufunc() except -1:
|
|
4109
4109
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4119,7 +4119,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4119
4119
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4120
4120
|
/*try:*/ {
|
|
4121
4121
|
|
|
4122
|
-
/* "../../build-env-
|
|
4122
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":994
|
|
4123
4123
|
* cdef inline int import_ufunc() except -1:
|
|
4124
4124
|
* try:
|
|
4125
4125
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4128,7 +4128,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4128
4128
|
*/
|
|
4129
4129
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 994, __pyx_L3_error)
|
|
4130
4130
|
|
|
4131
|
-
/* "../../build-env-
|
|
4131
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
|
|
4132
4132
|
*
|
|
4133
4133
|
* cdef inline int import_ufunc() except -1:
|
|
4134
4134
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4142,7 +4142,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4142
4142
|
goto __pyx_L8_try_end;
|
|
4143
4143
|
__pyx_L3_error:;
|
|
4144
4144
|
|
|
4145
|
-
/* "../../build-env-
|
|
4145
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
|
|
4146
4146
|
* try:
|
|
4147
4147
|
* _import_umath()
|
|
4148
4148
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4157,7 +4157,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4157
4157
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4158
4158
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4159
4159
|
|
|
4160
|
-
/* "../../build-env-
|
|
4160
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
|
|
4161
4161
|
* _import_umath()
|
|
4162
4162
|
* except Exception:
|
|
4163
4163
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4172,7 +4172,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4172
4172
|
}
|
|
4173
4173
|
goto __pyx_L5_except_error;
|
|
4174
4174
|
|
|
4175
|
-
/* "../../build-env-
|
|
4175
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
|
|
4176
4176
|
*
|
|
4177
4177
|
* cdef inline int import_ufunc() except -1:
|
|
4178
4178
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4188,7 +4188,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4188
4188
|
__pyx_L8_try_end:;
|
|
4189
4189
|
}
|
|
4190
4190
|
|
|
4191
|
-
/* "../../build-env-
|
|
4191
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
|
|
4192
4192
|
* raise ImportError("numpy.core.umath failed to import")
|
|
4193
4193
|
*
|
|
4194
4194
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4211,7 +4211,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4211
4211
|
return __pyx_r;
|
|
4212
4212
|
}
|
|
4213
4213
|
|
|
4214
|
-
/* "../../build-env-
|
|
4214
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
|
|
4215
4215
|
*
|
|
4216
4216
|
*
|
|
4217
4217
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -4222,7 +4222,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4222
4222
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
4223
4223
|
int __pyx_r;
|
|
4224
4224
|
|
|
4225
|
-
/* "../../build-env-
|
|
4225
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1011
|
|
4226
4226
|
* bool
|
|
4227
4227
|
* """
|
|
4228
4228
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4232,7 +4232,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4232
4232
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
4233
4233
|
goto __pyx_L0;
|
|
4234
4234
|
|
|
4235
|
-
/* "../../build-env-
|
|
4235
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
|
|
4236
4236
|
*
|
|
4237
4237
|
*
|
|
4238
4238
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -4245,7 +4245,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4245
4245
|
return __pyx_r;
|
|
4246
4246
|
}
|
|
4247
4247
|
|
|
4248
|
-
/* "../../build-env-
|
|
4248
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4249
4249
|
*
|
|
4250
4250
|
*
|
|
4251
4251
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -4256,7 +4256,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4256
4256
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
4257
4257
|
int __pyx_r;
|
|
4258
4258
|
|
|
4259
|
-
/* "../../build-env-
|
|
4259
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1026
|
|
4260
4260
|
* bool
|
|
4261
4261
|
* """
|
|
4262
4262
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4266,7 +4266,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4266
4266
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
4267
4267
|
goto __pyx_L0;
|
|
4268
4268
|
|
|
4269
|
-
/* "../../build-env-
|
|
4269
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4270
4270
|
*
|
|
4271
4271
|
*
|
|
4272
4272
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -4279,7 +4279,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4279
4279
|
return __pyx_r;
|
|
4280
4280
|
}
|
|
4281
4281
|
|
|
4282
|
-
/* "../../build-env-
|
|
4282
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4283
4283
|
*
|
|
4284
4284
|
*
|
|
4285
4285
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -4290,7 +4290,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4290
4290
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
4291
4291
|
npy_datetime __pyx_r;
|
|
4292
4292
|
|
|
4293
|
-
/* "../../build-env-
|
|
4293
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1036
|
|
4294
4294
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
4295
4295
|
* """
|
|
4296
4296
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4300,7 +4300,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4300
4300
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
4301
4301
|
goto __pyx_L0;
|
|
4302
4302
|
|
|
4303
|
-
/* "../../build-env-
|
|
4303
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4304
4304
|
*
|
|
4305
4305
|
*
|
|
4306
4306
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -4313,7 +4313,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4313
4313
|
return __pyx_r;
|
|
4314
4314
|
}
|
|
4315
4315
|
|
|
4316
|
-
/* "../../build-env-
|
|
4316
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
4317
4317
|
*
|
|
4318
4318
|
*
|
|
4319
4319
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -4324,7 +4324,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4324
4324
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
4325
4325
|
npy_timedelta __pyx_r;
|
|
4326
4326
|
|
|
4327
|
-
/* "../../build-env-
|
|
4327
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1043
|
|
4328
4328
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
4329
4329
|
* """
|
|
4330
4330
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4334,7 +4334,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4334
4334
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
4335
4335
|
goto __pyx_L0;
|
|
4336
4336
|
|
|
4337
|
-
/* "../../build-env-
|
|
4337
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
4338
4338
|
*
|
|
4339
4339
|
*
|
|
4340
4340
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -4347,7 +4347,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4347
4347
|
return __pyx_r;
|
|
4348
4348
|
}
|
|
4349
4349
|
|
|
4350
|
-
/* "../../build-env-
|
|
4350
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
4351
4351
|
*
|
|
4352
4352
|
*
|
|
4353
4353
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -4358,7 +4358,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4358
4358
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
4359
4359
|
NPY_DATETIMEUNIT __pyx_r;
|
|
4360
4360
|
|
|
4361
|
-
/* "../../build-env-
|
|
4361
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1050
|
|
4362
4362
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
4363
4363
|
* """
|
|
4364
4364
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -4366,7 +4366,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
4366
4366
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
4367
4367
|
goto __pyx_L0;
|
|
4368
4368
|
|
|
4369
|
-
/* "../../build-env-
|
|
4369
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
4370
4370
|
*
|
|
4371
4371
|
*
|
|
4372
4372
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -5353,7 +5353,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
5353
5353
|
__Pyx_RefNannyDeclarations
|
|
5354
5354
|
__Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
|
|
5355
5355
|
|
|
5356
|
-
/* "../../build-env-
|
|
5356
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
|
|
5357
5357
|
* __pyx_import_array()
|
|
5358
5358
|
* except Exception:
|
|
5359
5359
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -5364,7 +5364,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
5364
5364
|
__Pyx_GOTREF(__pyx_tuple_);
|
|
5365
5365
|
__Pyx_GIVEREF(__pyx_tuple_);
|
|
5366
5366
|
|
|
5367
|
-
/* "../../build-env-
|
|
5367
|
+
/* "../../build-env-zhwcama8/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
|
|
5368
5368
|
* _import_umath()
|
|
5369
5369
|
* except Exception:
|
|
5370
5370
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|