eqc-models 0.13.0__py3-none-any.whl → 0.14.1__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.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/algorithms/penaltymultiplier.py +0 -1
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/assignment/resource.py +1 -1
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/polyeval.c +122 -122
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/polyeval.cpython-310-darwin.so +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/results.py +18 -16
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/classifierbase.py +0 -4
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/classifierqboost.py +114 -72
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/clustering.py +29 -1
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/clusteringbase.py +29 -6
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/decomposition.py +50 -10
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/regressor.py +14 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/regressorbase.py +24 -5
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/reservoir.py +17 -2
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/solvers/__init__.py +1 -1
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/solvers/eqcdirect.py +18 -2
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/solvers/mip.py +4 -4
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/utilities/__init__.py +2 -1
- eqc_models-0.14.1.data/platlib/eqc_models/utilities/general.py +83 -0
- {eqc_models-0.13.0.dist-info → eqc_models-0.14.1.dist-info}/METADATA +6 -4
- eqc_models-0.14.1.dist-info/RECORD +70 -0
- eqc_models-0.13.0.dist-info/RECORD +0 -69
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/compile_extensions.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/__init__.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/algorithms/__init__.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/algorithms/base.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/allocation/__init__.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/allocation/allocation.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/allocation/portbase.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/allocation/portmomentum.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/assignment/__init__.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/assignment/qap.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/assignment/setpartition.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/__init__.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/base.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/binaries.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/constraints.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/operators.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/polyeval.pyx +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/polynomial.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/base/quadratic.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/combinatorics/__init__.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/combinatorics/setcover.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/combinatorics/setpartition.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/decoding.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/graph/__init__.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/graph/base.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/graph/hypergraph.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/graph/maxcut.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/graph/maxkcut.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/graph/partition.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/graph/rcshortestpath.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/graph/shortestpath.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/__init__.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/classifierqsvm.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/cvqboost_hamiltonian.pyx +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/cvqboost_hamiltonian_c_func.c +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/cvqboost_hamiltonian_c_func.h +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/forecast.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/ml/forecastbase.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/process/base.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/process/mpc.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/sequence/__init__.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/sequence/tsp.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/solvers/qciclient.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/solvers/responselog.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/utilities/fileio.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/utilities/polynomial.py +0 -0
- {eqc_models-0.13.0.data → eqc_models-0.14.1.data}/platlib/eqc_models/utilities/qplib.py +0 -0
- {eqc_models-0.13.0.dist-info → eqc_models-0.14.1.dist-info}/WHEEL +0 -0
- {eqc_models-0.13.0.dist-info → eqc_models-0.14.1.dist-info}/licenses/LICENSE.txt +0 -0
- {eqc_models-0.13.0.dist-info → eqc_models-0.14.1.dist-info}/top_level.txt +0 -0
|
@@ -4,18 +4,18 @@
|
|
|
4
4
|
{
|
|
5
5
|
"distutils": {
|
|
6
6
|
"depends": [
|
|
7
|
-
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-
|
|
8
|
-
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-
|
|
9
|
-
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-
|
|
10
|
-
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-
|
|
11
|
-
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-
|
|
7
|
+
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-rp61ueya/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h",
|
|
8
|
+
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-rp61ueya/lib/python3.10/site-packages/numpy/core/include/numpy/arrayscalars.h",
|
|
9
|
+
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-rp61ueya/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h",
|
|
10
|
+
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-rp61ueya/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h",
|
|
11
|
+
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-rp61ueya/lib/python3.10/site-packages/numpy/core/include/numpy/ufuncobject.h"
|
|
12
12
|
],
|
|
13
13
|
"extra_compile_args": [
|
|
14
14
|
"-O3",
|
|
15
15
|
"-ffast-math"
|
|
16
16
|
],
|
|
17
17
|
"include_dirs": [
|
|
18
|
-
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-
|
|
18
|
+
"/private/var/folders/72/z4nnmgj16nxfxyk9s6bc8p4c0000gp/T/build-env-rp61ueya/lib/python3.10/site-packages/numpy/core/include"
|
|
19
19
|
],
|
|
20
20
|
"name": "eqc_models.base.polyeval",
|
|
21
21
|
"sources": [
|
|
@@ -1381,7 +1381,7 @@ static const char *__pyx_filename;
|
|
|
1381
1381
|
|
|
1382
1382
|
static const char* const __pyx_f[] = {
|
|
1383
1383
|
"eqc_models/base/polyeval.pyx",
|
|
1384
|
-
"../../build-env-
|
|
1384
|
+
"../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd",
|
|
1385
1385
|
"cpython/type.pxd",
|
|
1386
1386
|
};
|
|
1387
1387
|
/* #### Code section: utility_code_proto_before_types ### */
|
|
@@ -1581,7 +1581,7 @@ typedef struct {
|
|
|
1581
1581
|
|
|
1582
1582
|
/* #### Code section: numeric_typedefs ### */
|
|
1583
1583
|
|
|
1584
|
-
/* "../../build-env-
|
|
1584
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":730
|
|
1585
1585
|
* # in Cython to enable them only on the right systems.
|
|
1586
1586
|
*
|
|
1587
1587
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1590,7 +1590,7 @@ typedef struct {
|
|
|
1590
1590
|
*/
|
|
1591
1591
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1592
1592
|
|
|
1593
|
-
/* "../../build-env-
|
|
1593
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":731
|
|
1594
1594
|
*
|
|
1595
1595
|
* ctypedef npy_int8 int8_t
|
|
1596
1596
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1599,7 +1599,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1599
1599
|
*/
|
|
1600
1600
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1601
1601
|
|
|
1602
|
-
/* "../../build-env-
|
|
1602
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1603
1603
|
* ctypedef npy_int8 int8_t
|
|
1604
1604
|
* ctypedef npy_int16 int16_t
|
|
1605
1605
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1608,7 +1608,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1608
1608
|
*/
|
|
1609
1609
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1610
1610
|
|
|
1611
|
-
/* "../../build-env-
|
|
1611
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1612
1612
|
* ctypedef npy_int16 int16_t
|
|
1613
1613
|
* ctypedef npy_int32 int32_t
|
|
1614
1614
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1617,7 +1617,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1617
1617
|
*/
|
|
1618
1618
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1619
1619
|
|
|
1620
|
-
/* "../../build-env-
|
|
1620
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":737
|
|
1621
1621
|
* #ctypedef npy_int128 int128_t
|
|
1622
1622
|
*
|
|
1623
1623
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1626,7 +1626,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1626
1626
|
*/
|
|
1627
1627
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1628
1628
|
|
|
1629
|
-
/* "../../build-env-
|
|
1629
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":738
|
|
1630
1630
|
*
|
|
1631
1631
|
* ctypedef npy_uint8 uint8_t
|
|
1632
1632
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1635,7 +1635,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1635
1635
|
*/
|
|
1636
1636
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1637
1637
|
|
|
1638
|
-
/* "../../build-env-
|
|
1638
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1639
1639
|
* ctypedef npy_uint8 uint8_t
|
|
1640
1640
|
* ctypedef npy_uint16 uint16_t
|
|
1641
1641
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1644,7 +1644,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1644
1644
|
*/
|
|
1645
1645
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1646
1646
|
|
|
1647
|
-
/* "../../build-env-
|
|
1647
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1648
1648
|
* ctypedef npy_uint16 uint16_t
|
|
1649
1649
|
* ctypedef npy_uint32 uint32_t
|
|
1650
1650
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1653,7 +1653,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1653
1653
|
*/
|
|
1654
1654
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1655
1655
|
|
|
1656
|
-
/* "../../build-env-
|
|
1656
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":744
|
|
1657
1657
|
* #ctypedef npy_uint128 uint128_t
|
|
1658
1658
|
*
|
|
1659
1659
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1662,7 +1662,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1662
1662
|
*/
|
|
1663
1663
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1664
1664
|
|
|
1665
|
-
/* "../../build-env-
|
|
1665
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":745
|
|
1666
1666
|
*
|
|
1667
1667
|
* ctypedef npy_float32 float32_t
|
|
1668
1668
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1671,7 +1671,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1671
1671
|
*/
|
|
1672
1672
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1673
1673
|
|
|
1674
|
-
/* "../../build-env-
|
|
1674
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":754
|
|
1675
1675
|
* # The int types are mapped a bit surprising --
|
|
1676
1676
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1677
1677
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1680,7 +1680,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1680
1680
|
*/
|
|
1681
1681
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1682
1682
|
|
|
1683
|
-
/* "../../build-env-
|
|
1683
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":755
|
|
1684
1684
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1685
1685
|
* ctypedef npy_long int_t
|
|
1686
1686
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1689,7 +1689,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1689
1689
|
*/
|
|
1690
1690
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1691
1691
|
|
|
1692
|
-
/* "../../build-env-
|
|
1692
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1693
1693
|
* ctypedef npy_longlong longlong_t
|
|
1694
1694
|
*
|
|
1695
1695
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1698,7 +1698,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1698
1698
|
*/
|
|
1699
1699
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1700
1700
|
|
|
1701
|
-
/* "../../build-env-
|
|
1701
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":758
|
|
1702
1702
|
*
|
|
1703
1703
|
* ctypedef npy_ulong uint_t
|
|
1704
1704
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1707,7 +1707,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1707
1707
|
*/
|
|
1708
1708
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1709
1709
|
|
|
1710
|
-
/* "../../build-env-
|
|
1710
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1711
1711
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1712
1712
|
*
|
|
1713
1713
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1716,7 +1716,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1716
1716
|
*/
|
|
1717
1717
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1718
1718
|
|
|
1719
|
-
/* "../../build-env-
|
|
1719
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1720
1720
|
*
|
|
1721
1721
|
* ctypedef npy_intp intp_t
|
|
1722
1722
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1725,7 +1725,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1725
1725
|
*/
|
|
1726
1726
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1727
1727
|
|
|
1728
|
-
/* "../../build-env-
|
|
1728
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":763
|
|
1729
1729
|
* ctypedef npy_uintp uintp_t
|
|
1730
1730
|
*
|
|
1731
1731
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1734,7 +1734,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1734
1734
|
*/
|
|
1735
1735
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1736
1736
|
|
|
1737
|
-
/* "../../build-env-
|
|
1737
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1738
1738
|
*
|
|
1739
1739
|
* ctypedef npy_double float_t
|
|
1740
1740
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1743,7 +1743,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1743
1743
|
*/
|
|
1744
1744
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1745
1745
|
|
|
1746
|
-
/* "../../build-env-
|
|
1746
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1747
1747
|
* ctypedef npy_double float_t
|
|
1748
1748
|
* ctypedef npy_double double_t
|
|
1749
1749
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1798,7 +1798,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
|
|
|
1798
1798
|
|
|
1799
1799
|
/*--- Type declarations ---*/
|
|
1800
1800
|
|
|
1801
|
-
/* "../../build-env-
|
|
1801
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1802
1802
|
* ctypedef npy_longdouble longdouble_t
|
|
1803
1803
|
*
|
|
1804
1804
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1807,7 +1807,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
|
|
|
1807
1807
|
*/
|
|
1808
1808
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1809
1809
|
|
|
1810
|
-
/* "../../build-env-
|
|
1810
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1811
1811
|
*
|
|
1812
1812
|
* ctypedef npy_cfloat cfloat_t
|
|
1813
1813
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1816,7 +1816,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1816
1816
|
*/
|
|
1817
1817
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1818
1818
|
|
|
1819
|
-
/* "../../build-env-
|
|
1819
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1820
1820
|
* ctypedef npy_cfloat cfloat_t
|
|
1821
1821
|
* ctypedef npy_cdouble cdouble_t
|
|
1822
1822
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1825,7 +1825,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1825
1825
|
*/
|
|
1826
1826
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1827
1827
|
|
|
1828
|
-
/* "../../build-env-
|
|
1828
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1829
1829
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1830
1830
|
*
|
|
1831
1831
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -3035,7 +3035,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
3035
3035
|
#endif
|
|
3036
3036
|
/* #### Code section: module_code ### */
|
|
3037
3037
|
|
|
3038
|
-
/* "../../build-env-
|
|
3038
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":244
|
|
3039
3039
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3040
3040
|
*
|
|
3041
3041
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3046,7 +3046,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
3046
3046
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
3047
3047
|
PyObject *__pyx_r;
|
|
3048
3048
|
|
|
3049
|
-
/* "../../build-env-
|
|
3049
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":248
|
|
3050
3050
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
3051
3051
|
* """
|
|
3052
3052
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -3056,7 +3056,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3056
3056
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
3057
3057
|
goto __pyx_L0;
|
|
3058
3058
|
|
|
3059
|
-
/* "../../build-env-
|
|
3059
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":244
|
|
3060
3060
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3061
3061
|
*
|
|
3062
3062
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3069,7 +3069,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3069
3069
|
return __pyx_r;
|
|
3070
3070
|
}
|
|
3071
3071
|
|
|
3072
|
-
/* "../../build-env-
|
|
3072
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":250
|
|
3073
3073
|
* return PyArray_BASE(self)
|
|
3074
3074
|
*
|
|
3075
3075
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3083,7 +3083,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3083
3083
|
PyArray_Descr *__pyx_t_1;
|
|
3084
3084
|
__Pyx_RefNannySetupContext("descr", 0);
|
|
3085
3085
|
|
|
3086
|
-
/* "../../build-env-
|
|
3086
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":254
|
|
3087
3087
|
* """Returns an owned reference to the dtype of the array.
|
|
3088
3088
|
* """
|
|
3089
3089
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -3096,7 +3096,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3096
3096
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
3097
3097
|
goto __pyx_L0;
|
|
3098
3098
|
|
|
3099
|
-
/* "../../build-env-
|
|
3099
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":250
|
|
3100
3100
|
* return PyArray_BASE(self)
|
|
3101
3101
|
*
|
|
3102
3102
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3111,7 +3111,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3111
3111
|
return __pyx_r;
|
|
3112
3112
|
}
|
|
3113
3113
|
|
|
3114
|
-
/* "../../build-env-
|
|
3114
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":256
|
|
3115
3115
|
* return <dtype>PyArray_DESCR(self)
|
|
3116
3116
|
*
|
|
3117
3117
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3122,7 +3122,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3122
3122
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
3123
3123
|
int __pyx_r;
|
|
3124
3124
|
|
|
3125
|
-
/* "../../build-env-
|
|
3125
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":260
|
|
3126
3126
|
* """Returns the number of dimensions in the array.
|
|
3127
3127
|
* """
|
|
3128
3128
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3132,7 +3132,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3132
3132
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
3133
3133
|
goto __pyx_L0;
|
|
3134
3134
|
|
|
3135
|
-
/* "../../build-env-
|
|
3135
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":256
|
|
3136
3136
|
* return <dtype>PyArray_DESCR(self)
|
|
3137
3137
|
*
|
|
3138
3138
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3145,7 +3145,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3145
3145
|
return __pyx_r;
|
|
3146
3146
|
}
|
|
3147
3147
|
|
|
3148
|
-
/* "../../build-env-
|
|
3148
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":262
|
|
3149
3149
|
* return PyArray_NDIM(self)
|
|
3150
3150
|
*
|
|
3151
3151
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3156,7 +3156,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3156
3156
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
3157
3157
|
npy_intp *__pyx_r;
|
|
3158
3158
|
|
|
3159
|
-
/* "../../build-env-
|
|
3159
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":268
|
|
3160
3160
|
* Can return NULL for 0-dimensional arrays.
|
|
3161
3161
|
* """
|
|
3162
3162
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3166,7 +3166,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3166
3166
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
3167
3167
|
goto __pyx_L0;
|
|
3168
3168
|
|
|
3169
|
-
/* "../../build-env-
|
|
3169
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":262
|
|
3170
3170
|
* return PyArray_NDIM(self)
|
|
3171
3171
|
*
|
|
3172
3172
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3179,7 +3179,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3179
3179
|
return __pyx_r;
|
|
3180
3180
|
}
|
|
3181
3181
|
|
|
3182
|
-
/* "../../build-env-
|
|
3182
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":270
|
|
3183
3183
|
* return PyArray_DIMS(self)
|
|
3184
3184
|
*
|
|
3185
3185
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3190,7 +3190,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3190
3190
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
3191
3191
|
npy_intp *__pyx_r;
|
|
3192
3192
|
|
|
3193
|
-
/* "../../build-env-
|
|
3193
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":275
|
|
3194
3194
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
3195
3195
|
* """
|
|
3196
3196
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -3200,7 +3200,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3200
3200
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
3201
3201
|
goto __pyx_L0;
|
|
3202
3202
|
|
|
3203
|
-
/* "../../build-env-
|
|
3203
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":270
|
|
3204
3204
|
* return PyArray_DIMS(self)
|
|
3205
3205
|
*
|
|
3206
3206
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3213,7 +3213,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3213
3213
|
return __pyx_r;
|
|
3214
3214
|
}
|
|
3215
3215
|
|
|
3216
|
-
/* "../../build-env-
|
|
3216
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":277
|
|
3217
3217
|
* return PyArray_STRIDES(self)
|
|
3218
3218
|
*
|
|
3219
3219
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3224,7 +3224,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3224
3224
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
3225
3225
|
npy_intp __pyx_r;
|
|
3226
3226
|
|
|
3227
|
-
/* "../../build-env-
|
|
3227
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":281
|
|
3228
3228
|
* """Returns the total size (in number of elements) of the array.
|
|
3229
3229
|
* """
|
|
3230
3230
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3234,7 +3234,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3234
3234
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
3235
3235
|
goto __pyx_L0;
|
|
3236
3236
|
|
|
3237
|
-
/* "../../build-env-
|
|
3237
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":277
|
|
3238
3238
|
* return PyArray_STRIDES(self)
|
|
3239
3239
|
*
|
|
3240
3240
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3247,7 +3247,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3247
3247
|
return __pyx_r;
|
|
3248
3248
|
}
|
|
3249
3249
|
|
|
3250
|
-
/* "../../build-env-
|
|
3250
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":283
|
|
3251
3251
|
* return PyArray_SIZE(self)
|
|
3252
3252
|
*
|
|
3253
3253
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3258,7 +3258,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3258
3258
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
3259
3259
|
char *__pyx_r;
|
|
3260
3260
|
|
|
3261
|
-
/* "../../build-env-
|
|
3261
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":290
|
|
3262
3262
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
3263
3263
|
* """
|
|
3264
3264
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -3268,7 +3268,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3268
3268
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
3269
3269
|
goto __pyx_L0;
|
|
3270
3270
|
|
|
3271
|
-
/* "../../build-env-
|
|
3271
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":283
|
|
3272
3272
|
* return PyArray_SIZE(self)
|
|
3273
3273
|
*
|
|
3274
3274
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3281,7 +3281,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3281
3281
|
return __pyx_r;
|
|
3282
3282
|
}
|
|
3283
3283
|
|
|
3284
|
-
/* "../../build-env-
|
|
3284
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
|
|
3285
3285
|
* ctypedef npy_cdouble complex_t
|
|
3286
3286
|
*
|
|
3287
3287
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3298,7 +3298,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3298
3298
|
int __pyx_clineno = 0;
|
|
3299
3299
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
|
3300
3300
|
|
|
3301
|
-
/* "../../build-env-
|
|
3301
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":774
|
|
3302
3302
|
*
|
|
3303
3303
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
3304
3304
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -3312,7 +3312,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3312
3312
|
__pyx_t_1 = 0;
|
|
3313
3313
|
goto __pyx_L0;
|
|
3314
3314
|
|
|
3315
|
-
/* "../../build-env-
|
|
3315
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
|
|
3316
3316
|
* ctypedef npy_cdouble complex_t
|
|
3317
3317
|
*
|
|
3318
3318
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3331,7 +3331,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3331
3331
|
return __pyx_r;
|
|
3332
3332
|
}
|
|
3333
3333
|
|
|
3334
|
-
/* "../../build-env-
|
|
3334
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":776
|
|
3335
3335
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3336
3336
|
*
|
|
3337
3337
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3348,7 +3348,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3348
3348
|
int __pyx_clineno = 0;
|
|
3349
3349
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
|
3350
3350
|
|
|
3351
|
-
/* "../../build-env-
|
|
3351
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
|
|
3352
3352
|
*
|
|
3353
3353
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
3354
3354
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -3362,7 +3362,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3362
3362
|
__pyx_t_1 = 0;
|
|
3363
3363
|
goto __pyx_L0;
|
|
3364
3364
|
|
|
3365
|
-
/* "../../build-env-
|
|
3365
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":776
|
|
3366
3366
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3367
3367
|
*
|
|
3368
3368
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3381,7 +3381,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3381
3381
|
return __pyx_r;
|
|
3382
3382
|
}
|
|
3383
3383
|
|
|
3384
|
-
/* "../../build-env-
|
|
3384
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":779
|
|
3385
3385
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3386
3386
|
*
|
|
3387
3387
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3398,7 +3398,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3398
3398
|
int __pyx_clineno = 0;
|
|
3399
3399
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
|
3400
3400
|
|
|
3401
|
-
/* "../../build-env-
|
|
3401
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
|
|
3402
3402
|
*
|
|
3403
3403
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
3404
3404
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -3412,7 +3412,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3412
3412
|
__pyx_t_1 = 0;
|
|
3413
3413
|
goto __pyx_L0;
|
|
3414
3414
|
|
|
3415
|
-
/* "../../build-env-
|
|
3415
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":779
|
|
3416
3416
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3417
3417
|
*
|
|
3418
3418
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3431,7 +3431,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3431
3431
|
return __pyx_r;
|
|
3432
3432
|
}
|
|
3433
3433
|
|
|
3434
|
-
/* "../../build-env-
|
|
3434
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":782
|
|
3435
3435
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3436
3436
|
*
|
|
3437
3437
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3448,7 +3448,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3448
3448
|
int __pyx_clineno = 0;
|
|
3449
3449
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
|
3450
3450
|
|
|
3451
|
-
/* "../../build-env-
|
|
3451
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
|
|
3452
3452
|
*
|
|
3453
3453
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
3454
3454
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -3462,7 +3462,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3462
3462
|
__pyx_t_1 = 0;
|
|
3463
3463
|
goto __pyx_L0;
|
|
3464
3464
|
|
|
3465
|
-
/* "../../build-env-
|
|
3465
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":782
|
|
3466
3466
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3467
3467
|
*
|
|
3468
3468
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3481,7 +3481,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3481
3481
|
return __pyx_r;
|
|
3482
3482
|
}
|
|
3483
3483
|
|
|
3484
|
-
/* "../../build-env-
|
|
3484
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":785
|
|
3485
3485
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3486
3486
|
*
|
|
3487
3487
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -3498,7 +3498,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3498
3498
|
int __pyx_clineno = 0;
|
|
3499
3499
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
|
3500
3500
|
|
|
3501
|
-
/* "../../build-env-
|
|
3501
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
|
|
3502
3502
|
*
|
|
3503
3503
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
3504
3504
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -3512,7 +3512,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3512
3512
|
__pyx_t_1 = 0;
|
|
3513
3513
|
goto __pyx_L0;
|
|
3514
3514
|
|
|
3515
|
-
/* "../../build-env-
|
|
3515
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":785
|
|
3516
3516
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3517
3517
|
*
|
|
3518
3518
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -3531,7 +3531,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3531
3531
|
return __pyx_r;
|
|
3532
3532
|
}
|
|
3533
3533
|
|
|
3534
|
-
/* "../../build-env-
|
|
3534
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":788
|
|
3535
3535
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
3536
3536
|
*
|
|
3537
3537
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -3545,7 +3545,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3545
3545
|
int __pyx_t_1;
|
|
3546
3546
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
|
3547
3547
|
|
|
3548
|
-
/* "../../build-env-
|
|
3548
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
|
|
3549
3549
|
*
|
|
3550
3550
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3551
3551
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -3555,7 +3555,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3555
3555
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
3556
3556
|
if (__pyx_t_1) {
|
|
3557
3557
|
|
|
3558
|
-
/* "../../build-env-
|
|
3558
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":790
|
|
3559
3559
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3560
3560
|
* if PyDataType_HASSUBARRAY(d):
|
|
3561
3561
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -3567,7 +3567,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3567
3567
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
3568
3568
|
goto __pyx_L0;
|
|
3569
3569
|
|
|
3570
|
-
/* "../../build-env-
|
|
3570
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
|
|
3571
3571
|
*
|
|
3572
3572
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3573
3573
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -3576,7 +3576,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3576
3576
|
*/
|
|
3577
3577
|
}
|
|
3578
3578
|
|
|
3579
|
-
/* "../../build-env-
|
|
3579
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
|
|
3580
3580
|
* return <tuple>d.subarray.shape
|
|
3581
3581
|
* else:
|
|
3582
3582
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -3590,7 +3590,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3590
3590
|
goto __pyx_L0;
|
|
3591
3591
|
}
|
|
3592
3592
|
|
|
3593
|
-
/* "../../build-env-
|
|
3593
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":788
|
|
3594
3594
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
3595
3595
|
*
|
|
3596
3596
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -3605,7 +3605,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3605
3605
|
return __pyx_r;
|
|
3606
3606
|
}
|
|
3607
3607
|
|
|
3608
|
-
/* "../../build-env-
|
|
3608
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":968
|
|
3609
3609
|
* int _import_umath() except -1
|
|
3610
3610
|
*
|
|
3611
3611
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -3619,7 +3619,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3619
3619
|
const char *__pyx_filename = NULL;
|
|
3620
3620
|
int __pyx_clineno = 0;
|
|
3621
3621
|
|
|
3622
|
-
/* "../../build-env-
|
|
3622
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":969
|
|
3623
3623
|
*
|
|
3624
3624
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
3625
3625
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -3628,7 +3628,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3628
3628
|
*/
|
|
3629
3629
|
Py_INCREF(__pyx_v_base);
|
|
3630
3630
|
|
|
3631
|
-
/* "../../build-env-
|
|
3631
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":970
|
|
3632
3632
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
3633
3633
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
3634
3634
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -3637,7 +3637,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3637
3637
|
*/
|
|
3638
3638
|
__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)
|
|
3639
3639
|
|
|
3640
|
-
/* "../../build-env-
|
|
3640
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":968
|
|
3641
3641
|
* int _import_umath() except -1
|
|
3642
3642
|
*
|
|
3643
3643
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -3652,7 +3652,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3652
3652
|
__pyx_L0:;
|
|
3653
3653
|
}
|
|
3654
3654
|
|
|
3655
|
-
/* "../../build-env-
|
|
3655
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
|
|
3656
3656
|
* PyArray_SetBaseObject(arr, base)
|
|
3657
3657
|
*
|
|
3658
3658
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -3667,7 +3667,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3667
3667
|
int __pyx_t_1;
|
|
3668
3668
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
|
3669
3669
|
|
|
3670
|
-
/* "../../build-env-
|
|
3670
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":973
|
|
3671
3671
|
*
|
|
3672
3672
|
* cdef inline object get_array_base(ndarray arr):
|
|
3673
3673
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -3676,7 +3676,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3676
3676
|
*/
|
|
3677
3677
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
3678
3678
|
|
|
3679
|
-
/* "../../build-env-
|
|
3679
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":974
|
|
3680
3680
|
* cdef inline object get_array_base(ndarray arr):
|
|
3681
3681
|
* base = PyArray_BASE(arr)
|
|
3682
3682
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -3686,7 +3686,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3686
3686
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
3687
3687
|
if (__pyx_t_1) {
|
|
3688
3688
|
|
|
3689
|
-
/* "../../build-env-
|
|
3689
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
|
|
3690
3690
|
* base = PyArray_BASE(arr)
|
|
3691
3691
|
* if base is NULL:
|
|
3692
3692
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -3697,7 +3697,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3697
3697
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
3698
3698
|
goto __pyx_L0;
|
|
3699
3699
|
|
|
3700
|
-
/* "../../build-env-
|
|
3700
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":974
|
|
3701
3701
|
* cdef inline object get_array_base(ndarray arr):
|
|
3702
3702
|
* base = PyArray_BASE(arr)
|
|
3703
3703
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -3706,7 +3706,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3706
3706
|
*/
|
|
3707
3707
|
}
|
|
3708
3708
|
|
|
3709
|
-
/* "../../build-env-
|
|
3709
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":976
|
|
3710
3710
|
* if base is NULL:
|
|
3711
3711
|
* return None
|
|
3712
3712
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -3718,7 +3718,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3718
3718
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
3719
3719
|
goto __pyx_L0;
|
|
3720
3720
|
|
|
3721
|
-
/* "../../build-env-
|
|
3721
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
|
|
3722
3722
|
* PyArray_SetBaseObject(arr, base)
|
|
3723
3723
|
*
|
|
3724
3724
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -3733,7 +3733,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
3733
3733
|
return __pyx_r;
|
|
3734
3734
|
}
|
|
3735
3735
|
|
|
3736
|
-
/* "../../build-env-
|
|
3736
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":980
|
|
3737
3737
|
* # Versions of the import_* functions which are more suitable for
|
|
3738
3738
|
* # Cython code.
|
|
3739
3739
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -3760,7 +3760,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3760
3760
|
int __pyx_clineno = 0;
|
|
3761
3761
|
__Pyx_RefNannySetupContext("import_array", 0);
|
|
3762
3762
|
|
|
3763
|
-
/* "../../build-env-
|
|
3763
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
|
|
3764
3764
|
* # Cython code.
|
|
3765
3765
|
* cdef inline int import_array() except -1:
|
|
3766
3766
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -3776,7 +3776,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3776
3776
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
3777
3777
|
/*try:*/ {
|
|
3778
3778
|
|
|
3779
|
-
/* "../../build-env-
|
|
3779
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":982
|
|
3780
3780
|
* cdef inline int import_array() except -1:
|
|
3781
3781
|
* try:
|
|
3782
3782
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -3785,7 +3785,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3785
3785
|
*/
|
|
3786
3786
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 982, __pyx_L3_error)
|
|
3787
3787
|
|
|
3788
|
-
/* "../../build-env-
|
|
3788
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
|
|
3789
3789
|
* # Cython code.
|
|
3790
3790
|
* cdef inline int import_array() except -1:
|
|
3791
3791
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -3799,7 +3799,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3799
3799
|
goto __pyx_L8_try_end;
|
|
3800
3800
|
__pyx_L3_error:;
|
|
3801
3801
|
|
|
3802
|
-
/* "../../build-env-
|
|
3802
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
|
|
3803
3803
|
* try:
|
|
3804
3804
|
* __pyx_import_array()
|
|
3805
3805
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -3814,7 +3814,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3814
3814
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
3815
3815
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
3816
3816
|
|
|
3817
|
-
/* "../../build-env-
|
|
3817
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
|
|
3818
3818
|
* __pyx_import_array()
|
|
3819
3819
|
* except Exception:
|
|
3820
3820
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -3839,7 +3839,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3839
3839
|
}
|
|
3840
3840
|
goto __pyx_L5_except_error;
|
|
3841
3841
|
|
|
3842
|
-
/* "../../build-env-
|
|
3842
|
+
/* "../../build-env-rp61ueya/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_L8_try_end:;
|
|
3856
3856
|
}
|
|
3857
3857
|
|
|
3858
|
-
/* "../../build-env-
|
|
3858
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":980
|
|
3859
3859
|
* # Versions of the import_* functions which are more suitable for
|
|
3860
3860
|
* # Cython code.
|
|
3861
3861
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -3880,7 +3880,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
3880
3880
|
return __pyx_r;
|
|
3881
3881
|
}
|
|
3882
3882
|
|
|
3883
|
-
/* "../../build-env-
|
|
3883
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
|
|
3884
3884
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
3885
3885
|
*
|
|
3886
3886
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -3907,7 +3907,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
3907
3907
|
int __pyx_clineno = 0;
|
|
3908
3908
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
|
3909
3909
|
|
|
3910
|
-
/* "../../build-env-
|
|
3910
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
|
|
3911
3911
|
*
|
|
3912
3912
|
* cdef inline int import_umath() except -1:
|
|
3913
3913
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -3923,7 +3923,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
3923
3923
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
3924
3924
|
/*try:*/ {
|
|
3925
3925
|
|
|
3926
|
-
/* "../../build-env-
|
|
3926
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":988
|
|
3927
3927
|
* cdef inline int import_umath() except -1:
|
|
3928
3928
|
* try:
|
|
3929
3929
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -3932,7 +3932,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
3932
3932
|
*/
|
|
3933
3933
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 988, __pyx_L3_error)
|
|
3934
3934
|
|
|
3935
|
-
/* "../../build-env-
|
|
3935
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
|
|
3936
3936
|
*
|
|
3937
3937
|
* cdef inline int import_umath() except -1:
|
|
3938
3938
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -3946,7 +3946,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
3946
3946
|
goto __pyx_L8_try_end;
|
|
3947
3947
|
__pyx_L3_error:;
|
|
3948
3948
|
|
|
3949
|
-
/* "../../build-env-
|
|
3949
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
|
|
3950
3950
|
* try:
|
|
3951
3951
|
* _import_umath()
|
|
3952
3952
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -3961,7 +3961,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
3961
3961
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
3962
3962
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
3963
3963
|
|
|
3964
|
-
/* "../../build-env-
|
|
3964
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
|
|
3965
3965
|
* _import_umath()
|
|
3966
3966
|
* except Exception:
|
|
3967
3967
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -3986,7 +3986,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
3986
3986
|
}
|
|
3987
3987
|
goto __pyx_L5_except_error;
|
|
3988
3988
|
|
|
3989
|
-
/* "../../build-env-
|
|
3989
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
|
|
3990
3990
|
*
|
|
3991
3991
|
* cdef inline int import_umath() except -1:
|
|
3992
3992
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4002,7 +4002,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4002
4002
|
__pyx_L8_try_end:;
|
|
4003
4003
|
}
|
|
4004
4004
|
|
|
4005
|
-
/* "../../build-env-
|
|
4005
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
|
|
4006
4006
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
4007
4007
|
*
|
|
4008
4008
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4027,7 +4027,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4027
4027
|
return __pyx_r;
|
|
4028
4028
|
}
|
|
4029
4029
|
|
|
4030
|
-
/* "../../build-env-
|
|
4030
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
|
|
4031
4031
|
* raise ImportError("numpy.core.umath failed to import")
|
|
4032
4032
|
*
|
|
4033
4033
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4054,7 +4054,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4054
4054
|
int __pyx_clineno = 0;
|
|
4055
4055
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
|
4056
4056
|
|
|
4057
|
-
/* "../../build-env-
|
|
4057
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
|
|
4058
4058
|
*
|
|
4059
4059
|
* cdef inline int import_ufunc() except -1:
|
|
4060
4060
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4070,7 +4070,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4070
4070
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4071
4071
|
/*try:*/ {
|
|
4072
4072
|
|
|
4073
|
-
/* "../../build-env-
|
|
4073
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":994
|
|
4074
4074
|
* cdef inline int import_ufunc() except -1:
|
|
4075
4075
|
* try:
|
|
4076
4076
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4079,7 +4079,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4079
4079
|
*/
|
|
4080
4080
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 994, __pyx_L3_error)
|
|
4081
4081
|
|
|
4082
|
-
/* "../../build-env-
|
|
4082
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
|
|
4083
4083
|
*
|
|
4084
4084
|
* cdef inline int import_ufunc() except -1:
|
|
4085
4085
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4093,7 +4093,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4093
4093
|
goto __pyx_L8_try_end;
|
|
4094
4094
|
__pyx_L3_error:;
|
|
4095
4095
|
|
|
4096
|
-
/* "../../build-env-
|
|
4096
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
|
|
4097
4097
|
* try:
|
|
4098
4098
|
* _import_umath()
|
|
4099
4099
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4108,7 +4108,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4108
4108
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4109
4109
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4110
4110
|
|
|
4111
|
-
/* "../../build-env-
|
|
4111
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
|
|
4112
4112
|
* _import_umath()
|
|
4113
4113
|
* except Exception:
|
|
4114
4114
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4133,7 +4133,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4133
4133
|
}
|
|
4134
4134
|
goto __pyx_L5_except_error;
|
|
4135
4135
|
|
|
4136
|
-
/* "../../build-env-
|
|
4136
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
|
|
4137
4137
|
*
|
|
4138
4138
|
* cdef inline int import_ufunc() except -1:
|
|
4139
4139
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4149,7 +4149,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4149
4149
|
__pyx_L8_try_end:;
|
|
4150
4150
|
}
|
|
4151
4151
|
|
|
4152
|
-
/* "../../build-env-
|
|
4152
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
|
|
4153
4153
|
* raise ImportError("numpy.core.umath failed to import")
|
|
4154
4154
|
*
|
|
4155
4155
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4174,7 +4174,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4174
4174
|
return __pyx_r;
|
|
4175
4175
|
}
|
|
4176
4176
|
|
|
4177
|
-
/* "../../build-env-
|
|
4177
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
|
|
4178
4178
|
*
|
|
4179
4179
|
*
|
|
4180
4180
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -4185,7 +4185,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4185
4185
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
4186
4186
|
int __pyx_r;
|
|
4187
4187
|
|
|
4188
|
-
/* "../../build-env-
|
|
4188
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1011
|
|
4189
4189
|
* bool
|
|
4190
4190
|
* """
|
|
4191
4191
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4195,7 +4195,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4195
4195
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
4196
4196
|
goto __pyx_L0;
|
|
4197
4197
|
|
|
4198
|
-
/* "../../build-env-
|
|
4198
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
|
|
4199
4199
|
*
|
|
4200
4200
|
*
|
|
4201
4201
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -4208,7 +4208,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4208
4208
|
return __pyx_r;
|
|
4209
4209
|
}
|
|
4210
4210
|
|
|
4211
|
-
/* "../../build-env-
|
|
4211
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4212
4212
|
*
|
|
4213
4213
|
*
|
|
4214
4214
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -4219,7 +4219,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4219
4219
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
4220
4220
|
int __pyx_r;
|
|
4221
4221
|
|
|
4222
|
-
/* "../../build-env-
|
|
4222
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1026
|
|
4223
4223
|
* bool
|
|
4224
4224
|
* """
|
|
4225
4225
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4229,7 +4229,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4229
4229
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
4230
4230
|
goto __pyx_L0;
|
|
4231
4231
|
|
|
4232
|
-
/* "../../build-env-
|
|
4232
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4233
4233
|
*
|
|
4234
4234
|
*
|
|
4235
4235
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -4242,7 +4242,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4242
4242
|
return __pyx_r;
|
|
4243
4243
|
}
|
|
4244
4244
|
|
|
4245
|
-
/* "../../build-env-
|
|
4245
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4246
4246
|
*
|
|
4247
4247
|
*
|
|
4248
4248
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -4253,7 +4253,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4253
4253
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
4254
4254
|
npy_datetime __pyx_r;
|
|
4255
4255
|
|
|
4256
|
-
/* "../../build-env-
|
|
4256
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1036
|
|
4257
4257
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
4258
4258
|
* """
|
|
4259
4259
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4263,7 +4263,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4263
4263
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
4264
4264
|
goto __pyx_L0;
|
|
4265
4265
|
|
|
4266
|
-
/* "../../build-env-
|
|
4266
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4267
4267
|
*
|
|
4268
4268
|
*
|
|
4269
4269
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -4276,7 +4276,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4276
4276
|
return __pyx_r;
|
|
4277
4277
|
}
|
|
4278
4278
|
|
|
4279
|
-
/* "../../build-env-
|
|
4279
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
4280
4280
|
*
|
|
4281
4281
|
*
|
|
4282
4282
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -4287,7 +4287,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4287
4287
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
4288
4288
|
npy_timedelta __pyx_r;
|
|
4289
4289
|
|
|
4290
|
-
/* "../../build-env-
|
|
4290
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1043
|
|
4291
4291
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
4292
4292
|
* """
|
|
4293
4293
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4297,7 +4297,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4297
4297
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
4298
4298
|
goto __pyx_L0;
|
|
4299
4299
|
|
|
4300
|
-
/* "../../build-env-
|
|
4300
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
4301
4301
|
*
|
|
4302
4302
|
*
|
|
4303
4303
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -4310,7 +4310,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4310
4310
|
return __pyx_r;
|
|
4311
4311
|
}
|
|
4312
4312
|
|
|
4313
|
-
/* "../../build-env-
|
|
4313
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
4314
4314
|
*
|
|
4315
4315
|
*
|
|
4316
4316
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -4321,7 +4321,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4321
4321
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
4322
4322
|
NPY_DATETIMEUNIT __pyx_r;
|
|
4323
4323
|
|
|
4324
|
-
/* "../../build-env-
|
|
4324
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1050
|
|
4325
4325
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
4326
4326
|
* """
|
|
4327
4327
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -4329,7 +4329,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
4329
4329
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
4330
4330
|
goto __pyx_L0;
|
|
4331
4331
|
|
|
4332
|
-
/* "../../build-env-
|
|
4332
|
+
/* "../../build-env-rp61ueya/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
4333
4333
|
*
|
|
4334
4334
|
*
|
|
4335
4335
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|