sequenzo 0.1.19__cp39-cp39-win_amd64.whl → 0.1.21__cp39-cp39-win_amd64.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.
Potentially problematic release.
This version of sequenzo might be problematic. Click here for more details.
- sequenzo/big_data/clara/utils/get_weighted_diss.c +194 -193
- sequenzo/big_data/clara/utils/get_weighted_diss.cp39-win_amd64.pyd +0 -0
- sequenzo/clustering/clustering_c_code.cp39-win_amd64.pyd +0 -0
- sequenzo/clustering/hierarchical_clustering.py +2 -2
- sequenzo/define_sequence_data.py +4 -4
- sequenzo/dissimilarity_measures/c_code.cp39-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/get_distance_matrix.py +1 -1
- sequenzo/dissimilarity_measures/get_substitution_cost_matrix.py +1 -1
- sequenzo/dissimilarity_measures/utils/get_sm_trate_substitution_cost_matrix.c +171 -171
- sequenzo/dissimilarity_measures/utils/get_sm_trate_substitution_cost_matrix.cp39-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqconc.c +233 -232
- sequenzo/dissimilarity_measures/utils/seqconc.cp39-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqdss.c +326 -325
- sequenzo/dissimilarity_measures/utils/seqdss.cp39-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqdur.c +326 -325
- sequenzo/dissimilarity_measures/utils/seqdur.cp39-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqlength.c +226 -224
- sequenzo/dissimilarity_measures/utils/seqlength.cp39-win_amd64.pyd +0 -0
- sequenzo/multidomain/association_between_domains.py +1 -1
- sequenzo/multidomain/combt.py +4 -4
- sequenzo/multidomain/dat.py +11 -3
- sequenzo/multidomain/idcd.py +0 -2
- sequenzo/multidomain/linked_polyad.py +3 -4
- sequenzo/prefix_tree/__init__.py +1 -1
- sequenzo/prefix_tree/individual_level_indicators.py +2 -2
- sequenzo/sequence_characteristics/overall_cross_sectional_entropy.py +2 -2
- sequenzo/sequence_characteristics/plot_characteristics.py +2 -2
- sequenzo/sequence_characteristics/simple_characteristics.py +2 -2
- sequenzo/suffix_tree/__init__.py +1 -1
- sequenzo/suffix_tree/individual_level_indicators.py +3 -3
- sequenzo/visualization/plot_single_medoid.py +2 -2
- sequenzo/visualization/plot_transition_matrix.py +1 -1
- sequenzo/visualization/utils/utils.py +2 -2
- sequenzo/with_event_history_analysis/sequence_analysis_multi_state_model.py +1 -1
- {sequenzo-0.1.19.dist-info → sequenzo-0.1.21.dist-info}/METADATA +37 -6
- {sequenzo-0.1.19.dist-info → sequenzo-0.1.21.dist-info}/RECORD +39 -45
- sequenzo/big_data/clara/utils/get_weighted_diss.pyx +0 -16
- sequenzo/dissimilarity_measures/utils/get_sm_trate_substitution_cost_matrix.pyx +0 -95
- sequenzo/dissimilarity_measures/utils/seqconc.pyx +0 -26
- sequenzo/dissimilarity_measures/utils/seqdss.pyx +0 -33
- sequenzo/dissimilarity_measures/utils/seqdur.pyx +0 -34
- sequenzo/dissimilarity_measures/utils/seqlength.pyx +0 -19
- {sequenzo-0.1.19.dist-info → sequenzo-0.1.21.dist-info}/WHEEL +0 -0
- {sequenzo-0.1.19.dist-info → sequenzo-0.1.21.dist-info}/licenses/LICENSE +0 -0
- {sequenzo-0.1.19.dist-info → sequenzo-0.1.21.dist-info}/top_level.txt +0 -0
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
"define_macros": [
|
|
7
7
|
[
|
|
8
8
|
"NPY_NO_DEPRECATED_API",
|
|
9
|
-
"
|
|
9
|
+
"NPY_1_7_API_VERSION"
|
|
10
10
|
]
|
|
11
11
|
],
|
|
12
12
|
"depends": [
|
|
13
|
-
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-
|
|
14
|
-
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-
|
|
15
|
-
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-
|
|
16
|
-
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-
|
|
17
|
-
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-
|
|
13
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-4xiaq35t\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\arrayobject.h",
|
|
14
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-4xiaq35t\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\arrayscalars.h",
|
|
15
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-4xiaq35t\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\ndarrayobject.h",
|
|
16
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-4xiaq35t\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\ndarraytypes.h",
|
|
17
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-4xiaq35t\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\ufuncobject.h"
|
|
18
18
|
],
|
|
19
19
|
"extra_compile_args": [
|
|
20
20
|
"/W1",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"/O2"
|
|
24
24
|
],
|
|
25
25
|
"include_dirs": [
|
|
26
|
-
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-
|
|
27
|
-
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-
|
|
28
|
-
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-
|
|
26
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-4xiaq35t\\overlay\\Lib\\site-packages\\pybind11\\include",
|
|
27
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-4xiaq35t\\overlay\\Lib\\site-packages\\pybind11\\include",
|
|
28
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-4xiaq35t\\overlay\\Lib\\site-packages\\numpy\\_core\\include",
|
|
29
29
|
"sequenzo/dissimilarity_measures/src/",
|
|
30
30
|
"D:\\a\\Sequenzo\\Sequenzo\\sequenzo\\dissimilarity_measures\\src\\xsimd\\include",
|
|
31
31
|
"sequenzo/clustering/src/"
|
|
@@ -1398,7 +1398,7 @@ static const char *__pyx_filename;
|
|
|
1398
1398
|
|
|
1399
1399
|
static const char* const __pyx_f[] = {
|
|
1400
1400
|
"sequenzo/dissimilarity_measures/utils/seqconc.pyx",
|
|
1401
|
-
"C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1401
|
+
"C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd",
|
|
1402
1402
|
"cpython/type.pxd",
|
|
1403
1403
|
};
|
|
1404
1404
|
/* #### Code section: utility_code_proto_before_types ### */
|
|
@@ -1598,7 +1598,7 @@ typedef struct {
|
|
|
1598
1598
|
|
|
1599
1599
|
/* #### Code section: numeric_typedefs ### */
|
|
1600
1600
|
|
|
1601
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1601
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
|
|
1602
1602
|
* # in Cython to enable them only on the right systems.
|
|
1603
1603
|
*
|
|
1604
1604
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1607,7 +1607,7 @@ typedef struct {
|
|
|
1607
1607
|
*/
|
|
1608
1608
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1609
1609
|
|
|
1610
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1610
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1611
1611
|
*
|
|
1612
1612
|
* ctypedef npy_int8 int8_t
|
|
1613
1613
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1616,7 +1616,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1616
1616
|
*/
|
|
1617
1617
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1618
1618
|
|
|
1619
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1619
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1620
1620
|
* ctypedef npy_int8 int8_t
|
|
1621
1621
|
* ctypedef npy_int16 int16_t
|
|
1622
1622
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1625,7 +1625,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1625
1625
|
*/
|
|
1626
1626
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1627
1627
|
|
|
1628
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1628
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1629
1629
|
* ctypedef npy_int16 int16_t
|
|
1630
1630
|
* ctypedef npy_int32 int32_t
|
|
1631
1631
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1634,7 +1634,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1634
1634
|
*/
|
|
1635
1635
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1636
1636
|
|
|
1637
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1637
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
1638
1638
|
* #ctypedef npy_int128 int128_t
|
|
1639
1639
|
*
|
|
1640
1640
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1643,7 +1643,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1643
1643
|
*/
|
|
1644
1644
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1645
1645
|
|
|
1646
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1646
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
|
|
1647
1647
|
*
|
|
1648
1648
|
* ctypedef npy_uint8 uint8_t
|
|
1649
1649
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1652,7 +1652,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1652
1652
|
*/
|
|
1653
1653
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1654
1654
|
|
|
1655
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1655
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
1656
1656
|
* ctypedef npy_uint8 uint8_t
|
|
1657
1657
|
* ctypedef npy_uint16 uint16_t
|
|
1658
1658
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1661,7 +1661,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1661
1661
|
*/
|
|
1662
1662
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1663
1663
|
|
|
1664
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1664
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
1665
1665
|
* ctypedef npy_uint16 uint16_t
|
|
1666
1666
|
* ctypedef npy_uint32 uint32_t
|
|
1667
1667
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1670,7 +1670,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1670
1670
|
*/
|
|
1671
1671
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1672
1672
|
|
|
1673
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1673
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
|
|
1674
1674
|
* #ctypedef npy_uint128 uint128_t
|
|
1675
1675
|
*
|
|
1676
1676
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1679,7 +1679,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1679
1679
|
*/
|
|
1680
1680
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1681
1681
|
|
|
1682
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1682
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
1683
1683
|
*
|
|
1684
1684
|
* ctypedef npy_float32 float32_t
|
|
1685
1685
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1688,7 +1688,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1688
1688
|
*/
|
|
1689
1689
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1690
1690
|
|
|
1691
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1691
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
1692
1692
|
* ctypedef double complex complex128_t
|
|
1693
1693
|
*
|
|
1694
1694
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1697,7 +1697,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1697
1697
|
*/
|
|
1698
1698
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1699
1699
|
|
|
1700
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1700
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
1701
1701
|
*
|
|
1702
1702
|
* ctypedef npy_longlong longlong_t
|
|
1703
1703
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1706,7 +1706,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1706
1706
|
*/
|
|
1707
1707
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1708
1708
|
|
|
1709
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1709
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
|
|
1710
1710
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1711
1711
|
*
|
|
1712
1712
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1715,7 +1715,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1715
1715
|
*/
|
|
1716
1716
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1717
1717
|
|
|
1718
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1718
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
|
|
1719
1719
|
*
|
|
1720
1720
|
* ctypedef npy_intp intp_t
|
|
1721
1721
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1724,7 +1724,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1724
1724
|
*/
|
|
1725
1725
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1726
1726
|
|
|
1727
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1727
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":798
|
|
1728
1728
|
* ctypedef npy_uintp uintp_t
|
|
1729
1729
|
*
|
|
1730
1730
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1733,7 +1733,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1733
1733
|
*/
|
|
1734
1734
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1735
1735
|
|
|
1736
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1736
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":799
|
|
1737
1737
|
*
|
|
1738
1738
|
* ctypedef npy_double float_t
|
|
1739
1739
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1742,7 +1742,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1742
1742
|
*/
|
|
1743
1743
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1744
1744
|
|
|
1745
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1745
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":800
|
|
1746
1746
|
* ctypedef npy_double float_t
|
|
1747
1747
|
* ctypedef npy_double double_t
|
|
1748
1748
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1791,7 +1791,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
|
1791
1791
|
|
|
1792
1792
|
/*--- Type declarations ---*/
|
|
1793
1793
|
|
|
1794
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1794
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1096
|
|
1795
1795
|
*
|
|
1796
1796
|
* # Iterator API added in v1.6
|
|
1797
1797
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil # <<<<<<<<<<<<<<
|
|
@@ -1800,7 +1800,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
|
1800
1800
|
*/
|
|
1801
1801
|
typedef int (*__pyx_t_5numpy_NpyIter_IterNextFunc)(NpyIter *);
|
|
1802
1802
|
|
|
1803
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1803
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1097
|
|
1804
1804
|
* # Iterator API added in v1.6
|
|
1805
1805
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil
|
|
1806
1806
|
* ctypedef void (*NpyIter_GetMultiIndexFunc)(NpyIter* it, npy_intp* outcoords) noexcept nogil # <<<<<<<<<<<<<<
|
|
@@ -3087,7 +3087,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
3087
3087
|
#endif
|
|
3088
3088
|
/* #### Code section: module_code ### */
|
|
3089
3089
|
|
|
3090
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3090
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
3091
3091
|
* cdef int type_num
|
|
3092
3092
|
*
|
|
3093
3093
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3098,7 +3098,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
3098
3098
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
|
3099
3099
|
npy_intp __pyx_r;
|
|
3100
3100
|
|
|
3101
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3101
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":287
|
|
3102
3102
|
* @property
|
|
3103
3103
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
|
3104
3104
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3108,7 +3108,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
3108
3108
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
|
3109
3109
|
goto __pyx_L0;
|
|
3110
3110
|
|
|
3111
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3111
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
3112
3112
|
* cdef int type_num
|
|
3113
3113
|
*
|
|
3114
3114
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3121,7 +3121,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
3121
3121
|
return __pyx_r;
|
|
3122
3122
|
}
|
|
3123
3123
|
|
|
3124
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3124
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":289
|
|
3125
3125
|
* return PyDataType_ELSIZE(self)
|
|
3126
3126
|
*
|
|
3127
3127
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3132,7 +3132,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
3132
3132
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
|
3133
3133
|
npy_intp __pyx_r;
|
|
3134
3134
|
|
|
3135
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3135
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
|
|
3136
3136
|
* @property
|
|
3137
3137
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
|
3138
3138
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
|
@@ -3142,7 +3142,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
3142
3142
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
|
3143
3143
|
goto __pyx_L0;
|
|
3144
3144
|
|
|
3145
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3145
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":289
|
|
3146
3146
|
* return PyDataType_ELSIZE(self)
|
|
3147
3147
|
*
|
|
3148
3148
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3155,7 +3155,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
3155
3155
|
return __pyx_r;
|
|
3156
3156
|
}
|
|
3157
3157
|
|
|
3158
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3158
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":295
|
|
3159
3159
|
* # Use fields/names with care as they may be NULL. You must check
|
|
3160
3160
|
* # for this using PyDataType_HASFIELDS.
|
|
3161
3161
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3169,7 +3169,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3169
3169
|
PyObject *__pyx_t_1;
|
|
3170
3170
|
__Pyx_RefNannySetupContext("fields", 0);
|
|
3171
3171
|
|
|
3172
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3172
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":297
|
|
3173
3173
|
* @property
|
|
3174
3174
|
* cdef inline object fields(self):
|
|
3175
3175
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
|
@@ -3182,7 +3182,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3182
3182
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
|
3183
3183
|
goto __pyx_L0;
|
|
3184
3184
|
|
|
3185
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3185
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":295
|
|
3186
3186
|
* # Use fields/names with care as they may be NULL. You must check
|
|
3187
3187
|
* # for this using PyDataType_HASFIELDS.
|
|
3188
3188
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3197,7 +3197,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3197
3197
|
return __pyx_r;
|
|
3198
3198
|
}
|
|
3199
3199
|
|
|
3200
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3200
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":299
|
|
3201
3201
|
* return <object>PyDataType_FIELDS(self)
|
|
3202
3202
|
*
|
|
3203
3203
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3211,7 +3211,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3211
3211
|
PyObject *__pyx_t_1;
|
|
3212
3212
|
__Pyx_RefNannySetupContext("names", 0);
|
|
3213
3213
|
|
|
3214
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3214
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":301
|
|
3215
3215
|
* @property
|
|
3216
3216
|
* cdef inline tuple names(self):
|
|
3217
3217
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
|
@@ -3224,7 +3224,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3224
3224
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
|
3225
3225
|
goto __pyx_L0;
|
|
3226
3226
|
|
|
3227
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3227
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":299
|
|
3228
3228
|
* return <object>PyDataType_FIELDS(self)
|
|
3229
3229
|
*
|
|
3230
3230
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3239,7 +3239,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3239
3239
|
return __pyx_r;
|
|
3240
3240
|
}
|
|
3241
3241
|
|
|
3242
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3242
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":306
|
|
3243
3243
|
* # valid (the pointer can be NULL). Most users should access
|
|
3244
3244
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
3245
3245
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3250,7 +3250,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3250
3250
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
|
3251
3251
|
PyArray_ArrayDescr *__pyx_r;
|
|
3252
3252
|
|
|
3253
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3253
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":308
|
|
3254
3254
|
* @property
|
|
3255
3255
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
|
3256
3256
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
|
@@ -3260,7 +3260,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3260
3260
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
|
3261
3261
|
goto __pyx_L0;
|
|
3262
3262
|
|
|
3263
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3263
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":306
|
|
3264
3264
|
* # valid (the pointer can be NULL). Most users should access
|
|
3265
3265
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
3266
3266
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3273,7 +3273,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3273
3273
|
return __pyx_r;
|
|
3274
3274
|
}
|
|
3275
3275
|
|
|
3276
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3276
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":310
|
|
3277
3277
|
* return PyDataType_SUBARRAY(self)
|
|
3278
3278
|
*
|
|
3279
3279
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3284,7 +3284,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3284
3284
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
|
3285
3285
|
npy_uint64 __pyx_r;
|
|
3286
3286
|
|
|
3287
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3287
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":313
|
|
3288
3288
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
|
3289
3289
|
* """The data types flags."""
|
|
3290
3290
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
|
@@ -3294,7 +3294,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3294
3294
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
|
3295
3295
|
goto __pyx_L0;
|
|
3296
3296
|
|
|
3297
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3297
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":310
|
|
3298
3298
|
* return PyDataType_SUBARRAY(self)
|
|
3299
3299
|
*
|
|
3300
3300
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3307,7 +3307,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3307
3307
|
return __pyx_r;
|
|
3308
3308
|
}
|
|
3309
3309
|
|
|
3310
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3310
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":322
|
|
3311
3311
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
3312
3312
|
*
|
|
3313
3313
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3318,7 +3318,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3318
3318
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3319
3319
|
int __pyx_r;
|
|
3320
3320
|
|
|
3321
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3321
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":325
|
|
3322
3322
|
* cdef inline int numiter(self) noexcept nogil:
|
|
3323
3323
|
* """The number of arrays that need to be broadcast to the same shape."""
|
|
3324
3324
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
|
@@ -3328,7 +3328,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3328
3328
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
|
3329
3329
|
goto __pyx_L0;
|
|
3330
3330
|
|
|
3331
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3331
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":322
|
|
3332
3332
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
3333
3333
|
*
|
|
3334
3334
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3341,7 +3341,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3341
3341
|
return __pyx_r;
|
|
3342
3342
|
}
|
|
3343
3343
|
|
|
3344
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3344
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":327
|
|
3345
3345
|
* return PyArray_MultiIter_NUMITER(self)
|
|
3346
3346
|
*
|
|
3347
3347
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3352,7 +3352,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3352
3352
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3353
3353
|
npy_intp __pyx_r;
|
|
3354
3354
|
|
|
3355
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3355
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":330
|
|
3356
3356
|
* cdef inline npy_intp size(self) noexcept nogil:
|
|
3357
3357
|
* """The total broadcasted size."""
|
|
3358
3358
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3362,7 +3362,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3362
3362
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
|
3363
3363
|
goto __pyx_L0;
|
|
3364
3364
|
|
|
3365
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3365
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":327
|
|
3366
3366
|
* return PyArray_MultiIter_NUMITER(self)
|
|
3367
3367
|
*
|
|
3368
3368
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3375,7 +3375,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3375
3375
|
return __pyx_r;
|
|
3376
3376
|
}
|
|
3377
3377
|
|
|
3378
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3378
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":332
|
|
3379
3379
|
* return PyArray_MultiIter_SIZE(self)
|
|
3380
3380
|
*
|
|
3381
3381
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3386,7 +3386,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3386
3386
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3387
3387
|
npy_intp __pyx_r;
|
|
3388
3388
|
|
|
3389
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3389
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":335
|
|
3390
3390
|
* cdef inline npy_intp index(self) noexcept nogil:
|
|
3391
3391
|
* """The current (1-d) index into the broadcasted result."""
|
|
3392
3392
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
|
@@ -3396,7 +3396,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3396
3396
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
|
3397
3397
|
goto __pyx_L0;
|
|
3398
3398
|
|
|
3399
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3399
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":332
|
|
3400
3400
|
* return PyArray_MultiIter_SIZE(self)
|
|
3401
3401
|
*
|
|
3402
3402
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3409,7 +3409,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3409
3409
|
return __pyx_r;
|
|
3410
3410
|
}
|
|
3411
3411
|
|
|
3412
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3412
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":337
|
|
3413
3413
|
* return PyArray_MultiIter_INDEX(self)
|
|
3414
3414
|
*
|
|
3415
3415
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3420,7 +3420,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3420
3420
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3421
3421
|
int __pyx_r;
|
|
3422
3422
|
|
|
3423
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3423
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":340
|
|
3424
3424
|
* cdef inline int nd(self) noexcept nogil:
|
|
3425
3425
|
* """The number of dimensions in the broadcasted result."""
|
|
3426
3426
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3430,7 +3430,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3430
3430
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
|
3431
3431
|
goto __pyx_L0;
|
|
3432
3432
|
|
|
3433
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3433
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":337
|
|
3434
3434
|
* return PyArray_MultiIter_INDEX(self)
|
|
3435
3435
|
*
|
|
3436
3436
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3443,7 +3443,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3443
3443
|
return __pyx_r;
|
|
3444
3444
|
}
|
|
3445
3445
|
|
|
3446
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3446
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":342
|
|
3447
3447
|
* return PyArray_MultiIter_NDIM(self)
|
|
3448
3448
|
*
|
|
3449
3449
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3454,7 +3454,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3454
3454
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3455
3455
|
npy_intp *__pyx_r;
|
|
3456
3456
|
|
|
3457
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3457
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":345
|
|
3458
3458
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
|
3459
3459
|
* """The shape of the broadcasted result."""
|
|
3460
3460
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3464,7 +3464,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3464
3464
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
|
3465
3465
|
goto __pyx_L0;
|
|
3466
3466
|
|
|
3467
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3467
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":342
|
|
3468
3468
|
* return PyArray_MultiIter_NDIM(self)
|
|
3469
3469
|
*
|
|
3470
3470
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3477,7 +3477,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3477
3477
|
return __pyx_r;
|
|
3478
3478
|
}
|
|
3479
3479
|
|
|
3480
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3480
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":347
|
|
3481
3481
|
* return PyArray_MultiIter_DIMS(self)
|
|
3482
3482
|
*
|
|
3483
3483
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3488,7 +3488,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3488
3488
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3489
3489
|
void **__pyx_r;
|
|
3490
3490
|
|
|
3491
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3491
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":351
|
|
3492
3492
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
|
3493
3493
|
* On return, the iterators are adjusted for broadcasting."""
|
|
3494
3494
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
|
@@ -3498,7 +3498,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3498
3498
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
|
3499
3499
|
goto __pyx_L0;
|
|
3500
3500
|
|
|
3501
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3501
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":347
|
|
3502
3502
|
* return PyArray_MultiIter_DIMS(self)
|
|
3503
3503
|
*
|
|
3504
3504
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3511,7 +3511,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3511
3511
|
return __pyx_r;
|
|
3512
3512
|
}
|
|
3513
3513
|
|
|
3514
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3514
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":365
|
|
3515
3515
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3516
3516
|
*
|
|
3517
3517
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3522,7 +3522,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3522
3522
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
3523
3523
|
PyObject *__pyx_r;
|
|
3524
3524
|
|
|
3525
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3525
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":369
|
|
3526
3526
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
3527
3527
|
* """
|
|
3528
3528
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -3532,7 +3532,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3532
3532
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
3533
3533
|
goto __pyx_L0;
|
|
3534
3534
|
|
|
3535
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3535
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":365
|
|
3536
3536
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3537
3537
|
*
|
|
3538
3538
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3545,7 +3545,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3545
3545
|
return __pyx_r;
|
|
3546
3546
|
}
|
|
3547
3547
|
|
|
3548
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3548
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":371
|
|
3549
3549
|
* return PyArray_BASE(self)
|
|
3550
3550
|
*
|
|
3551
3551
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3559,7 +3559,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3559
3559
|
PyArray_Descr *__pyx_t_1;
|
|
3560
3560
|
__Pyx_RefNannySetupContext("descr", 0);
|
|
3561
3561
|
|
|
3562
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3562
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":375
|
|
3563
3563
|
* """Returns an owned reference to the dtype of the array.
|
|
3564
3564
|
* """
|
|
3565
3565
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -3572,7 +3572,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3572
3572
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
3573
3573
|
goto __pyx_L0;
|
|
3574
3574
|
|
|
3575
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3575
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":371
|
|
3576
3576
|
* return PyArray_BASE(self)
|
|
3577
3577
|
*
|
|
3578
3578
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3587,7 +3587,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3587
3587
|
return __pyx_r;
|
|
3588
3588
|
}
|
|
3589
3589
|
|
|
3590
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3590
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":377
|
|
3591
3591
|
* return <dtype>PyArray_DESCR(self)
|
|
3592
3592
|
*
|
|
3593
3593
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3598,7 +3598,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3598
3598
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
3599
3599
|
int __pyx_r;
|
|
3600
3600
|
|
|
3601
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3601
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":381
|
|
3602
3602
|
* """Returns the number of dimensions in the array.
|
|
3603
3603
|
* """
|
|
3604
3604
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3608,7 +3608,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3608
3608
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
3609
3609
|
goto __pyx_L0;
|
|
3610
3610
|
|
|
3611
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3611
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":377
|
|
3612
3612
|
* return <dtype>PyArray_DESCR(self)
|
|
3613
3613
|
*
|
|
3614
3614
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3621,7 +3621,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3621
3621
|
return __pyx_r;
|
|
3622
3622
|
}
|
|
3623
3623
|
|
|
3624
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3624
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":383
|
|
3625
3625
|
* return PyArray_NDIM(self)
|
|
3626
3626
|
*
|
|
3627
3627
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3632,7 +3632,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3632
3632
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
3633
3633
|
npy_intp *__pyx_r;
|
|
3634
3634
|
|
|
3635
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3635
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":389
|
|
3636
3636
|
* Can return NULL for 0-dimensional arrays.
|
|
3637
3637
|
* """
|
|
3638
3638
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3642,7 +3642,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3642
3642
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
3643
3643
|
goto __pyx_L0;
|
|
3644
3644
|
|
|
3645
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3645
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":383
|
|
3646
3646
|
* return PyArray_NDIM(self)
|
|
3647
3647
|
*
|
|
3648
3648
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3655,7 +3655,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3655
3655
|
return __pyx_r;
|
|
3656
3656
|
}
|
|
3657
3657
|
|
|
3658
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3658
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":391
|
|
3659
3659
|
* return PyArray_DIMS(self)
|
|
3660
3660
|
*
|
|
3661
3661
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3666,7 +3666,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3666
3666
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
3667
3667
|
npy_intp *__pyx_r;
|
|
3668
3668
|
|
|
3669
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3669
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":396
|
|
3670
3670
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
3671
3671
|
* """
|
|
3672
3672
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -3676,7 +3676,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3676
3676
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
3677
3677
|
goto __pyx_L0;
|
|
3678
3678
|
|
|
3679
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3679
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":391
|
|
3680
3680
|
* return PyArray_DIMS(self)
|
|
3681
3681
|
*
|
|
3682
3682
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3689,7 +3689,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3689
3689
|
return __pyx_r;
|
|
3690
3690
|
}
|
|
3691
3691
|
|
|
3692
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3692
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":398
|
|
3693
3693
|
* return PyArray_STRIDES(self)
|
|
3694
3694
|
*
|
|
3695
3695
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3700,7 +3700,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3700
3700
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
3701
3701
|
npy_intp __pyx_r;
|
|
3702
3702
|
|
|
3703
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3703
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":402
|
|
3704
3704
|
* """Returns the total size (in number of elements) of the array.
|
|
3705
3705
|
* """
|
|
3706
3706
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3710,7 +3710,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3710
3710
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
3711
3711
|
goto __pyx_L0;
|
|
3712
3712
|
|
|
3713
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3713
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":398
|
|
3714
3714
|
* return PyArray_STRIDES(self)
|
|
3715
3715
|
*
|
|
3716
3716
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3723,7 +3723,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3723
3723
|
return __pyx_r;
|
|
3724
3724
|
}
|
|
3725
3725
|
|
|
3726
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3726
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":404
|
|
3727
3727
|
* return PyArray_SIZE(self)
|
|
3728
3728
|
*
|
|
3729
3729
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3734,7 +3734,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3734
3734
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
3735
3735
|
char *__pyx_r;
|
|
3736
3736
|
|
|
3737
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3737
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":411
|
|
3738
3738
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
3739
3739
|
* """
|
|
3740
3740
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -3744,7 +3744,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3744
3744
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
3745
3745
|
goto __pyx_L0;
|
|
3746
3746
|
|
|
3747
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3747
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":404
|
|
3748
3748
|
* return PyArray_SIZE(self)
|
|
3749
3749
|
*
|
|
3750
3750
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3757,7 +3757,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3757
3757
|
return __pyx_r;
|
|
3758
3758
|
}
|
|
3759
3759
|
|
|
3760
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3760
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":807
|
|
3761
3761
|
* ctypedef long double complex clongdouble_t
|
|
3762
3762
|
*
|
|
3763
3763
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3774,7 +3774,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3774
3774
|
int __pyx_clineno = 0;
|
|
3775
3775
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
|
3776
3776
|
|
|
3777
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3777
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":808
|
|
3778
3778
|
*
|
|
3779
3779
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
3780
3780
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -3788,7 +3788,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3788
3788
|
__pyx_t_1 = 0;
|
|
3789
3789
|
goto __pyx_L0;
|
|
3790
3790
|
|
|
3791
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3791
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":807
|
|
3792
3792
|
* ctypedef long double complex clongdouble_t
|
|
3793
3793
|
*
|
|
3794
3794
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3807,7 +3807,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3807
3807
|
return __pyx_r;
|
|
3808
3808
|
}
|
|
3809
3809
|
|
|
3810
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3810
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":810
|
|
3811
3811
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3812
3812
|
*
|
|
3813
3813
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3824,7 +3824,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3824
3824
|
int __pyx_clineno = 0;
|
|
3825
3825
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
|
3826
3826
|
|
|
3827
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3827
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":811
|
|
3828
3828
|
*
|
|
3829
3829
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
3830
3830
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -3838,7 +3838,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3838
3838
|
__pyx_t_1 = 0;
|
|
3839
3839
|
goto __pyx_L0;
|
|
3840
3840
|
|
|
3841
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3841
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":810
|
|
3842
3842
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3843
3843
|
*
|
|
3844
3844
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3857,7 +3857,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3857
3857
|
return __pyx_r;
|
|
3858
3858
|
}
|
|
3859
3859
|
|
|
3860
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3860
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":813
|
|
3861
3861
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3862
3862
|
*
|
|
3863
3863
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3874,7 +3874,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3874
3874
|
int __pyx_clineno = 0;
|
|
3875
3875
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
|
3876
3876
|
|
|
3877
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3877
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":814
|
|
3878
3878
|
*
|
|
3879
3879
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
3880
3880
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -3888,7 +3888,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3888
3888
|
__pyx_t_1 = 0;
|
|
3889
3889
|
goto __pyx_L0;
|
|
3890
3890
|
|
|
3891
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3891
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":813
|
|
3892
3892
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3893
3893
|
*
|
|
3894
3894
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3907,7 +3907,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3907
3907
|
return __pyx_r;
|
|
3908
3908
|
}
|
|
3909
3909
|
|
|
3910
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3910
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":816
|
|
3911
3911
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3912
3912
|
*
|
|
3913
3913
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3924,7 +3924,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3924
3924
|
int __pyx_clineno = 0;
|
|
3925
3925
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
|
3926
3926
|
|
|
3927
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3927
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":817
|
|
3928
3928
|
*
|
|
3929
3929
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
3930
3930
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -3938,7 +3938,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3938
3938
|
__pyx_t_1 = 0;
|
|
3939
3939
|
goto __pyx_L0;
|
|
3940
3940
|
|
|
3941
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3941
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":816
|
|
3942
3942
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3943
3943
|
*
|
|
3944
3944
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3957,7 +3957,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3957
3957
|
return __pyx_r;
|
|
3958
3958
|
}
|
|
3959
3959
|
|
|
3960
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3960
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":819
|
|
3961
3961
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3962
3962
|
*
|
|
3963
3963
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -3974,7 +3974,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3974
3974
|
int __pyx_clineno = 0;
|
|
3975
3975
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
|
3976
3976
|
|
|
3977
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3977
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":820
|
|
3978
3978
|
*
|
|
3979
3979
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
3980
3980
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -3988,7 +3988,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3988
3988
|
__pyx_t_1 = 0;
|
|
3989
3989
|
goto __pyx_L0;
|
|
3990
3990
|
|
|
3991
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3991
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":819
|
|
3992
3992
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3993
3993
|
*
|
|
3994
3994
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -4007,7 +4007,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
4007
4007
|
return __pyx_r;
|
|
4008
4008
|
}
|
|
4009
4009
|
|
|
4010
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4010
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":822
|
|
4011
4011
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
4012
4012
|
*
|
|
4013
4013
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -4022,7 +4022,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4022
4022
|
PyObject *__pyx_t_2;
|
|
4023
4023
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
|
4024
4024
|
|
|
4025
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4025
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":823
|
|
4026
4026
|
*
|
|
4027
4027
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
4028
4028
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -4032,7 +4032,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4032
4032
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
4033
4033
|
if (__pyx_t_1) {
|
|
4034
4034
|
|
|
4035
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4035
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":824
|
|
4036
4036
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
4037
4037
|
* if PyDataType_HASSUBARRAY(d):
|
|
4038
4038
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -4045,7 +4045,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4045
4045
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
|
4046
4046
|
goto __pyx_L0;
|
|
4047
4047
|
|
|
4048
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4048
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":823
|
|
4049
4049
|
*
|
|
4050
4050
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
4051
4051
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -4054,7 +4054,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4054
4054
|
*/
|
|
4055
4055
|
}
|
|
4056
4056
|
|
|
4057
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4057
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":826
|
|
4058
4058
|
* return <tuple>d.subarray.shape
|
|
4059
4059
|
* else:
|
|
4060
4060
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -4068,7 +4068,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4068
4068
|
goto __pyx_L0;
|
|
4069
4069
|
}
|
|
4070
4070
|
|
|
4071
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4071
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":822
|
|
4072
4072
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
4073
4073
|
*
|
|
4074
4074
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -4083,7 +4083,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4083
4083
|
return __pyx_r;
|
|
4084
4084
|
}
|
|
4085
4085
|
|
|
4086
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4086
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
4087
4087
|
* int _import_umath() except -1
|
|
4088
4088
|
*
|
|
4089
4089
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -4097,7 +4097,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4097
4097
|
const char *__pyx_filename = NULL;
|
|
4098
4098
|
int __pyx_clineno = 0;
|
|
4099
4099
|
|
|
4100
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4100
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
|
|
4101
4101
|
*
|
|
4102
4102
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
4103
4103
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -4106,7 +4106,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4106
4106
|
*/
|
|
4107
4107
|
Py_INCREF(__pyx_v_base);
|
|
4108
4108
|
|
|
4109
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4109
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1012
|
|
4110
4110
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
4111
4111
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
4112
4112
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -4115,7 +4115,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4115
4115
|
*/
|
|
4116
4116
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 1012, __pyx_L1_error)
|
|
4117
4117
|
|
|
4118
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4118
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
4119
4119
|
* int _import_umath() except -1
|
|
4120
4120
|
*
|
|
4121
4121
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -4130,7 +4130,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4130
4130
|
__pyx_L0:;
|
|
4131
4131
|
}
|
|
4132
4132
|
|
|
4133
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4133
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4134
4134
|
* PyArray_SetBaseObject(arr, base)
|
|
4135
4135
|
*
|
|
4136
4136
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -4145,7 +4145,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4145
4145
|
int __pyx_t_1;
|
|
4146
4146
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
|
4147
4147
|
|
|
4148
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4148
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1015
|
|
4149
4149
|
*
|
|
4150
4150
|
* cdef inline object get_array_base(ndarray arr):
|
|
4151
4151
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -4154,7 +4154,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4154
4154
|
*/
|
|
4155
4155
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
4156
4156
|
|
|
4157
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4157
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
4158
4158
|
* cdef inline object get_array_base(ndarray arr):
|
|
4159
4159
|
* base = PyArray_BASE(arr)
|
|
4160
4160
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -4164,7 +4164,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4164
4164
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
4165
4165
|
if (__pyx_t_1) {
|
|
4166
4166
|
|
|
4167
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4167
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
4168
4168
|
* base = PyArray_BASE(arr)
|
|
4169
4169
|
* if base is NULL:
|
|
4170
4170
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -4175,7 +4175,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4175
4175
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
4176
4176
|
goto __pyx_L0;
|
|
4177
4177
|
|
|
4178
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4178
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
4179
4179
|
* cdef inline object get_array_base(ndarray arr):
|
|
4180
4180
|
* base = PyArray_BASE(arr)
|
|
4181
4181
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -4184,7 +4184,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4184
4184
|
*/
|
|
4185
4185
|
}
|
|
4186
4186
|
|
|
4187
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4187
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1018
|
|
4188
4188
|
* if base is NULL:
|
|
4189
4189
|
* return None
|
|
4190
4190
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -4196,7 +4196,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4196
4196
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
4197
4197
|
goto __pyx_L0;
|
|
4198
4198
|
|
|
4199
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4199
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4200
4200
|
* PyArray_SetBaseObject(arr, base)
|
|
4201
4201
|
*
|
|
4202
4202
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -4211,7 +4211,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4211
4211
|
return __pyx_r;
|
|
4212
4212
|
}
|
|
4213
4213
|
|
|
4214
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4214
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
4215
4215
|
* # Versions of the import_* functions which are more suitable for
|
|
4216
4216
|
* # Cython code.
|
|
4217
4217
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4238,7 +4238,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4238
4238
|
int __pyx_clineno = 0;
|
|
4239
4239
|
__Pyx_RefNannySetupContext("import_array", 0);
|
|
4240
4240
|
|
|
4241
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4241
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4242
4242
|
* # Cython code.
|
|
4243
4243
|
* cdef inline int import_array() except -1:
|
|
4244
4244
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4254,7 +4254,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4254
4254
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4255
4255
|
/*try:*/ {
|
|
4256
4256
|
|
|
4257
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4257
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1024
|
|
4258
4258
|
* cdef inline int import_array() except -1:
|
|
4259
4259
|
* try:
|
|
4260
4260
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -4263,7 +4263,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4263
4263
|
*/
|
|
4264
4264
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1024, __pyx_L3_error)
|
|
4265
4265
|
|
|
4266
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4266
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4267
4267
|
* # Cython code.
|
|
4268
4268
|
* cdef inline int import_array() except -1:
|
|
4269
4269
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4277,7 +4277,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4277
4277
|
goto __pyx_L8_try_end;
|
|
4278
4278
|
__pyx_L3_error:;
|
|
4279
4279
|
|
|
4280
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4280
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1025
|
|
4281
4281
|
* try:
|
|
4282
4282
|
* __pyx_import_array()
|
|
4283
4283
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4292,7 +4292,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4292
4292
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4293
4293
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4294
4294
|
|
|
4295
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4295
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
|
|
4296
4296
|
* __pyx_import_array()
|
|
4297
4297
|
* except Exception:
|
|
4298
4298
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4317,7 +4317,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4317
4317
|
}
|
|
4318
4318
|
goto __pyx_L5_except_error;
|
|
4319
4319
|
|
|
4320
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4320
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4321
4321
|
* # Cython code.
|
|
4322
4322
|
* cdef inline int import_array() except -1:
|
|
4323
4323
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4333,7 +4333,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4333
4333
|
__pyx_L8_try_end:;
|
|
4334
4334
|
}
|
|
4335
4335
|
|
|
4336
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4336
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
4337
4337
|
* # Versions of the import_* functions which are more suitable for
|
|
4338
4338
|
* # Cython code.
|
|
4339
4339
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4358,7 +4358,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4358
4358
|
return __pyx_r;
|
|
4359
4359
|
}
|
|
4360
4360
|
|
|
4361
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4361
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
4362
4362
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
4363
4363
|
*
|
|
4364
4364
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4385,7 +4385,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4385
4385
|
int __pyx_clineno = 0;
|
|
4386
4386
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
|
4387
4387
|
|
|
4388
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4388
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4389
4389
|
*
|
|
4390
4390
|
* cdef inline int import_umath() except -1:
|
|
4391
4391
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4401,7 +4401,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4401
4401
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4402
4402
|
/*try:*/ {
|
|
4403
4403
|
|
|
4404
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4404
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1030
|
|
4405
4405
|
* cdef inline int import_umath() except -1:
|
|
4406
4406
|
* try:
|
|
4407
4407
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4410,7 +4410,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4410
4410
|
*/
|
|
4411
4411
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1030, __pyx_L3_error)
|
|
4412
4412
|
|
|
4413
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4413
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4414
4414
|
*
|
|
4415
4415
|
* cdef inline int import_umath() except -1:
|
|
4416
4416
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4424,7 +4424,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4424
4424
|
goto __pyx_L8_try_end;
|
|
4425
4425
|
__pyx_L3_error:;
|
|
4426
4426
|
|
|
4427
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4427
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
4428
4428
|
* try:
|
|
4429
4429
|
* _import_umath()
|
|
4430
4430
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4439,7 +4439,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4439
4439
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4440
4440
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4441
4441
|
|
|
4442
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4442
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
4443
4443
|
* _import_umath()
|
|
4444
4444
|
* except Exception:
|
|
4445
4445
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4464,7 +4464,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4464
4464
|
}
|
|
4465
4465
|
goto __pyx_L5_except_error;
|
|
4466
4466
|
|
|
4467
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4467
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4468
4468
|
*
|
|
4469
4469
|
* cdef inline int import_umath() except -1:
|
|
4470
4470
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4480,7 +4480,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4480
4480
|
__pyx_L8_try_end:;
|
|
4481
4481
|
}
|
|
4482
4482
|
|
|
4483
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4483
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
4484
4484
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
4485
4485
|
*
|
|
4486
4486
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4505,7 +4505,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4505
4505
|
return __pyx_r;
|
|
4506
4506
|
}
|
|
4507
4507
|
|
|
4508
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4508
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1034
|
|
4509
4509
|
* raise ImportError("numpy._core.umath failed to import")
|
|
4510
4510
|
*
|
|
4511
4511
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4532,7 +4532,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4532
4532
|
int __pyx_clineno = 0;
|
|
4533
4533
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
|
4534
4534
|
|
|
4535
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4535
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4536
4536
|
*
|
|
4537
4537
|
* cdef inline int import_ufunc() except -1:
|
|
4538
4538
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4548,7 +4548,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4548
4548
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4549
4549
|
/*try:*/ {
|
|
4550
4550
|
|
|
4551
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4551
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
|
|
4552
4552
|
* cdef inline int import_ufunc() except -1:
|
|
4553
4553
|
* try:
|
|
4554
4554
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4557,7 +4557,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4557
4557
|
*/
|
|
4558
4558
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1036, __pyx_L3_error)
|
|
4559
4559
|
|
|
4560
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4560
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4561
4561
|
*
|
|
4562
4562
|
* cdef inline int import_ufunc() except -1:
|
|
4563
4563
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4571,7 +4571,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4571
4571
|
goto __pyx_L8_try_end;
|
|
4572
4572
|
__pyx_L3_error:;
|
|
4573
4573
|
|
|
4574
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4574
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1037
|
|
4575
4575
|
* try:
|
|
4576
4576
|
* _import_umath()
|
|
4577
4577
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4586,7 +4586,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4586
4586
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4587
4587
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4588
4588
|
|
|
4589
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4589
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
|
|
4590
4590
|
* _import_umath()
|
|
4591
4591
|
* except Exception:
|
|
4592
4592
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4611,7 +4611,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4611
4611
|
}
|
|
4612
4612
|
goto __pyx_L5_except_error;
|
|
4613
4613
|
|
|
4614
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4614
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4615
4615
|
*
|
|
4616
4616
|
* cdef inline int import_ufunc() except -1:
|
|
4617
4617
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4627,7 +4627,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4627
4627
|
__pyx_L8_try_end:;
|
|
4628
4628
|
}
|
|
4629
4629
|
|
|
4630
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4630
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1034
|
|
4631
4631
|
* raise ImportError("numpy._core.umath failed to import")
|
|
4632
4632
|
*
|
|
4633
4633
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4652,7 +4652,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4652
4652
|
return __pyx_r;
|
|
4653
4653
|
}
|
|
4654
4654
|
|
|
4655
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4655
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
4656
4656
|
*
|
|
4657
4657
|
*
|
|
4658
4658
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4663,7 +4663,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4663
4663
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
4664
4664
|
int __pyx_r;
|
|
4665
4665
|
|
|
4666
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4666
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
4667
4667
|
* bool
|
|
4668
4668
|
* """
|
|
4669
4669
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4673,7 +4673,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4673
4673
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
4674
4674
|
goto __pyx_L0;
|
|
4675
4675
|
|
|
4676
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4676
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
4677
4677
|
*
|
|
4678
4678
|
*
|
|
4679
4679
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4686,7 +4686,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4686
4686
|
return __pyx_r;
|
|
4687
4687
|
}
|
|
4688
4688
|
|
|
4689
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4689
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1056
|
|
4690
4690
|
*
|
|
4691
4691
|
*
|
|
4692
4692
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4697,7 +4697,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4697
4697
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
4698
4698
|
int __pyx_r;
|
|
4699
4699
|
|
|
4700
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4700
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1068
|
|
4701
4701
|
* bool
|
|
4702
4702
|
* """
|
|
4703
4703
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4707,7 +4707,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4707
4707
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
4708
4708
|
goto __pyx_L0;
|
|
4709
4709
|
|
|
4710
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4710
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1056
|
|
4711
4711
|
*
|
|
4712
4712
|
*
|
|
4713
4713
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4720,7 +4720,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4720
4720
|
return __pyx_r;
|
|
4721
4721
|
}
|
|
4722
4722
|
|
|
4723
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4723
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1071
|
|
4724
4724
|
*
|
|
4725
4725
|
*
|
|
4726
4726
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4731,7 +4731,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4731
4731
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
4732
4732
|
npy_datetime __pyx_r;
|
|
4733
4733
|
|
|
4734
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4734
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1078
|
|
4735
4735
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
4736
4736
|
* """
|
|
4737
4737
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4741,7 +4741,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4741
4741
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
4742
4742
|
goto __pyx_L0;
|
|
4743
4743
|
|
|
4744
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4744
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1071
|
|
4745
4745
|
*
|
|
4746
4746
|
*
|
|
4747
4747
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4754,7 +4754,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4754
4754
|
return __pyx_r;
|
|
4755
4755
|
}
|
|
4756
4756
|
|
|
4757
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4757
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1081
|
|
4758
4758
|
*
|
|
4759
4759
|
*
|
|
4760
4760
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4765,7 +4765,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4765
4765
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
4766
4766
|
npy_timedelta __pyx_r;
|
|
4767
4767
|
|
|
4768
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4768
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1085
|
|
4769
4769
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
4770
4770
|
* """
|
|
4771
4771
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4775,7 +4775,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4775
4775
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
4776
4776
|
goto __pyx_L0;
|
|
4777
4777
|
|
|
4778
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4778
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1081
|
|
4779
4779
|
*
|
|
4780
4780
|
*
|
|
4781
4781
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4788,7 +4788,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4788
4788
|
return __pyx_r;
|
|
4789
4789
|
}
|
|
4790
4790
|
|
|
4791
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4791
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1088
|
|
4792
4792
|
*
|
|
4793
4793
|
*
|
|
4794
4794
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4799,7 +4799,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4799
4799
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
4800
4800
|
NPY_DATETIMEUNIT __pyx_r;
|
|
4801
4801
|
|
|
4802
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4802
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1092
|
|
4803
4803
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
4804
4804
|
* """
|
|
4805
4805
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -4809,7 +4809,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
4809
4809
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
4810
4810
|
goto __pyx_L0;
|
|
4811
4811
|
|
|
4812
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4812
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4xiaq35t/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1088
|
|
4813
4813
|
*
|
|
4814
4814
|
*
|
|
4815
4815
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4822,7 +4822,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
4822
4822
|
return __pyx_r;
|
|
4823
4823
|
}
|
|
4824
4824
|
|
|
4825
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4825
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":8
|
|
4826
4826
|
* from libc.string cimport strcmp
|
|
4827
4827
|
*
|
|
4828
4828
|
* cdef str sconc_np(cnp.ndarray[int32_t, ndim=1] seqdata, str sep): # <<<<<<<<<<<<<<
|
|
@@ -4858,11 +4858,11 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
4858
4858
|
__pyx_pybuffernd_seqdata.rcbuffer = &__pyx_pybuffer_seqdata;
|
|
4859
4859
|
{
|
|
4860
4860
|
__Pyx_BufFmt_StackElem __pyx_stack[1];
|
|
4861
|
-
if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_seqdata.rcbuffer->pybuffer, (PyObject*)__pyx_v_seqdata, &__Pyx_TypeInfo_nn_int32_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) __PYX_ERR(0,
|
|
4861
|
+
if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_seqdata.rcbuffer->pybuffer, (PyObject*)__pyx_v_seqdata, &__Pyx_TypeInfo_nn_int32_t, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) __PYX_ERR(0, 8, __pyx_L1_error)
|
|
4862
4862
|
}
|
|
4863
4863
|
__pyx_pybuffernd_seqdata.diminfo[0].strides = __pyx_pybuffernd_seqdata.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_seqdata.diminfo[0].shape = __pyx_pybuffernd_seqdata.rcbuffer->pybuffer.shape[0];
|
|
4864
4864
|
|
|
4865
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4865
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":9
|
|
4866
4866
|
*
|
|
4867
4867
|
* cdef str sconc_np(cnp.ndarray[int32_t, ndim=1] seqdata, str sep):
|
|
4868
4868
|
* cdef int i, size = seqdata.shape[0] # <<<<<<<<<<<<<<
|
|
@@ -4871,19 +4871,19 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
4871
4871
|
*/
|
|
4872
4872
|
__pyx_v_size = (__pyx_f_5numpy_7ndarray_5shape_shape(((PyArrayObject *)__pyx_v_seqdata))[0]);
|
|
4873
4873
|
|
|
4874
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4874
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":10
|
|
4875
4875
|
* cdef str sconc_np(cnp.ndarray[int32_t, ndim=1] seqdata, str sep):
|
|
4876
4876
|
* cdef int i, size = seqdata.shape[0]
|
|
4877
4877
|
* cdef list valid_values = [] # <<<<<<<<<<<<<<
|
|
4878
4878
|
* cdef bytes result = b""
|
|
4879
4879
|
*
|
|
4880
4880
|
*/
|
|
4881
|
-
__pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0,
|
|
4881
|
+
__pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 10, __pyx_L1_error)
|
|
4882
4882
|
__Pyx_GOTREF(__pyx_t_1);
|
|
4883
4883
|
__pyx_v_valid_values = ((PyObject*)__pyx_t_1);
|
|
4884
4884
|
__pyx_t_1 = 0;
|
|
4885
4885
|
|
|
4886
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4886
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":11
|
|
4887
4887
|
* cdef int i, size = seqdata.shape[0]
|
|
4888
4888
|
* cdef list valid_values = []
|
|
4889
4889
|
* cdef bytes result = b"" # <<<<<<<<<<<<<<
|
|
@@ -4893,7 +4893,7 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
4893
4893
|
__Pyx_INCREF(__pyx_mstate_global->__pyx_kp_b_);
|
|
4894
4894
|
__pyx_v_result = __pyx_mstate_global->__pyx_kp_b_;
|
|
4895
4895
|
|
|
4896
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4896
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":13
|
|
4897
4897
|
* cdef bytes result = b""
|
|
4898
4898
|
*
|
|
4899
4899
|
* for i in range(size): # <<<<<<<<<<<<<<
|
|
@@ -4905,7 +4905,7 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
4905
4905
|
for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) {
|
|
4906
4906
|
__pyx_v_i = __pyx_t_4;
|
|
4907
4907
|
|
|
4908
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4908
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":14
|
|
4909
4909
|
*
|
|
4910
4910
|
* for i in range(size):
|
|
4911
4911
|
* if seqdata[i] >= 0: # <<<<<<<<<<<<<<
|
|
@@ -4920,12 +4920,12 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
4920
4920
|
} else if (unlikely(__pyx_t_5 >= __pyx_pybuffernd_seqdata.diminfo[0].shape)) __pyx_t_6 = 0;
|
|
4921
4921
|
if (unlikely(__pyx_t_6 != -1)) {
|
|
4922
4922
|
__Pyx_RaiseBufferIndexError(__pyx_t_6);
|
|
4923
|
-
__PYX_ERR(0,
|
|
4923
|
+
__PYX_ERR(0, 14, __pyx_L1_error)
|
|
4924
4924
|
}
|
|
4925
4925
|
__pyx_t_7 = ((*__Pyx_BufPtrStrided1d(int32_t *, __pyx_pybuffernd_seqdata.rcbuffer->pybuffer.buf, __pyx_t_5, __pyx_pybuffernd_seqdata.diminfo[0].strides)) >= 0);
|
|
4926
4926
|
if (__pyx_t_7) {
|
|
4927
4927
|
|
|
4928
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4928
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":15
|
|
4929
4929
|
* for i in range(size):
|
|
4930
4930
|
* if seqdata[i] >= 0:
|
|
4931
4931
|
* valid_values.append(str(seqdata[i])) # <<<<<<<<<<<<<<
|
|
@@ -4940,17 +4940,17 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
4940
4940
|
} else if (unlikely(__pyx_t_5 >= __pyx_pybuffernd_seqdata.diminfo[0].shape)) __pyx_t_6 = 0;
|
|
4941
4941
|
if (unlikely(__pyx_t_6 != -1)) {
|
|
4942
4942
|
__Pyx_RaiseBufferIndexError(__pyx_t_6);
|
|
4943
|
-
__PYX_ERR(0,
|
|
4943
|
+
__PYX_ERR(0, 15, __pyx_L1_error)
|
|
4944
4944
|
}
|
|
4945
|
-
__pyx_t_1 = __Pyx_PyLong_From_int32_t((*__Pyx_BufPtrStrided1d(int32_t *, __pyx_pybuffernd_seqdata.rcbuffer->pybuffer.buf, __pyx_t_5, __pyx_pybuffernd_seqdata.diminfo[0].strides))); if (unlikely(!__pyx_t_1)) __PYX_ERR(0,
|
|
4945
|
+
__pyx_t_1 = __Pyx_PyLong_From_int32_t((*__Pyx_BufPtrStrided1d(int32_t *, __pyx_pybuffernd_seqdata.rcbuffer->pybuffer.buf, __pyx_t_5, __pyx_pybuffernd_seqdata.diminfo[0].strides))); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 15, __pyx_L1_error)
|
|
4946
4946
|
__Pyx_GOTREF(__pyx_t_1);
|
|
4947
|
-
__pyx_t_8 = __Pyx_PyObject_Unicode(__pyx_t_1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0,
|
|
4947
|
+
__pyx_t_8 = __Pyx_PyObject_Unicode(__pyx_t_1); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 15, __pyx_L1_error)
|
|
4948
4948
|
__Pyx_GOTREF(__pyx_t_8);
|
|
4949
4949
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
4950
|
-
__pyx_t_9 = __Pyx_PyList_Append(__pyx_v_valid_values, __pyx_t_8); if (unlikely(__pyx_t_9 == ((int)-1))) __PYX_ERR(0,
|
|
4950
|
+
__pyx_t_9 = __Pyx_PyList_Append(__pyx_v_valid_values, __pyx_t_8); if (unlikely(__pyx_t_9 == ((int)-1))) __PYX_ERR(0, 15, __pyx_L1_error)
|
|
4951
4951
|
__Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
|
|
4952
4952
|
|
|
4953
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4953
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":14
|
|
4954
4954
|
*
|
|
4955
4955
|
* for i in range(size):
|
|
4956
4956
|
* if seqdata[i] >= 0: # <<<<<<<<<<<<<<
|
|
@@ -4960,7 +4960,7 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
4960
4960
|
}
|
|
4961
4961
|
}
|
|
4962
4962
|
|
|
4963
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4963
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":17
|
|
4964
4964
|
* valid_values.append(str(seqdata[i]))
|
|
4965
4965
|
*
|
|
4966
4966
|
* if valid_values: # <<<<<<<<<<<<<<
|
|
@@ -4969,13 +4969,13 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
4969
4969
|
*/
|
|
4970
4970
|
{
|
|
4971
4971
|
Py_ssize_t __pyx_temp = __Pyx_PyList_GET_SIZE(__pyx_v_valid_values);
|
|
4972
|
-
if (unlikely(((!CYTHON_ASSUME_SAFE_SIZE) && __pyx_temp < 0))) __PYX_ERR(0,
|
|
4972
|
+
if (unlikely(((!CYTHON_ASSUME_SAFE_SIZE) && __pyx_temp < 0))) __PYX_ERR(0, 17, __pyx_L1_error)
|
|
4973
4973
|
__pyx_t_7 = (__pyx_temp != 0);
|
|
4974
4974
|
}
|
|
4975
4975
|
|
|
4976
4976
|
if (__pyx_t_7) {
|
|
4977
4977
|
|
|
4978
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4978
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":18
|
|
4979
4979
|
*
|
|
4980
4980
|
* if valid_values:
|
|
4981
4981
|
* result = sep.join(valid_values).encode('utf-8') # <<<<<<<<<<<<<<
|
|
@@ -4984,17 +4984,17 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
4984
4984
|
*/
|
|
4985
4985
|
if (unlikely(__pyx_v_sep == Py_None)) {
|
|
4986
4986
|
PyErr_Format(PyExc_AttributeError, "'NoneType' object has no attribute '%.30s'", "join");
|
|
4987
|
-
__PYX_ERR(0,
|
|
4987
|
+
__PYX_ERR(0, 18, __pyx_L1_error)
|
|
4988
4988
|
}
|
|
4989
|
-
__pyx_t_8 = PyUnicode_Join(__pyx_v_sep, __pyx_v_valid_values); if (unlikely(!__pyx_t_8)) __PYX_ERR(0,
|
|
4989
|
+
__pyx_t_8 = PyUnicode_Join(__pyx_v_sep, __pyx_v_valid_values); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 18, __pyx_L1_error)
|
|
4990
4990
|
__Pyx_GOTREF(__pyx_t_8);
|
|
4991
|
-
__pyx_t_1 = PyUnicode_AsUTF8String(((PyObject*)__pyx_t_8)); if (unlikely(!__pyx_t_1)) __PYX_ERR(0,
|
|
4991
|
+
__pyx_t_1 = PyUnicode_AsUTF8String(((PyObject*)__pyx_t_8)); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 18, __pyx_L1_error)
|
|
4992
4992
|
__Pyx_GOTREF(__pyx_t_1);
|
|
4993
4993
|
__Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
|
|
4994
4994
|
__Pyx_DECREF_SET(__pyx_v_result, ((PyObject*)__pyx_t_1));
|
|
4995
4995
|
__pyx_t_1 = 0;
|
|
4996
4996
|
|
|
4997
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
4997
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":17
|
|
4998
4998
|
* valid_values.append(str(seqdata[i]))
|
|
4999
4999
|
*
|
|
5000
5000
|
* if valid_values: # <<<<<<<<<<<<<<
|
|
@@ -5003,7 +5003,7 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
5003
5003
|
*/
|
|
5004
5004
|
}
|
|
5005
5005
|
|
|
5006
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5006
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":20
|
|
5007
5007
|
* result = sep.join(valid_values).encode('utf-8')
|
|
5008
5008
|
*
|
|
5009
5009
|
* return result.decode('utf-8') # <<<<<<<<<<<<<<
|
|
@@ -5011,13 +5011,13 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
5011
5011
|
* def seqconc(cnp.ndarray[int32_t, ndim=2] data, str sep="-"):
|
|
5012
5012
|
*/
|
|
5013
5013
|
__Pyx_XDECREF(__pyx_r);
|
|
5014
|
-
__pyx_t_1 = __Pyx_decode_bytes(__pyx_v_result, 0, PY_SSIZE_T_MAX, NULL, NULL, PyUnicode_DecodeUTF8); if (unlikely(!__pyx_t_1)) __PYX_ERR(0,
|
|
5014
|
+
__pyx_t_1 = __Pyx_decode_bytes(__pyx_v_result, 0, PY_SSIZE_T_MAX, NULL, NULL, PyUnicode_DecodeUTF8); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 20, __pyx_L1_error)
|
|
5015
5015
|
__Pyx_GOTREF(__pyx_t_1);
|
|
5016
5016
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
|
5017
5017
|
__pyx_t_1 = 0;
|
|
5018
5018
|
goto __pyx_L0;
|
|
5019
5019
|
|
|
5020
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5020
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":8
|
|
5021
5021
|
* from libc.string cimport strcmp
|
|
5022
5022
|
*
|
|
5023
5023
|
* cdef str sconc_np(cnp.ndarray[int32_t, ndim=1] seqdata, str sep): # <<<<<<<<<<<<<<
|
|
@@ -5048,7 +5048,7 @@ static PyObject *__pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_scon
|
|
|
5048
5048
|
return __pyx_r;
|
|
5049
5049
|
}
|
|
5050
5050
|
|
|
5051
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5051
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":22
|
|
5052
5052
|
* return result.decode('utf-8')
|
|
5053
5053
|
*
|
|
5054
5054
|
* def seqconc(cnp.ndarray[int32_t, ndim=2] data, str sep="-"): # <<<<<<<<<<<<<<
|
|
@@ -5096,35 +5096,35 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
5096
5096
|
{
|
|
5097
5097
|
PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_data,&__pyx_mstate_global->__pyx_n_u_sep,0};
|
|
5098
5098
|
const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0;
|
|
5099
|
-
if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0,
|
|
5099
|
+
if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0, 22, __pyx_L3_error)
|
|
5100
5100
|
if (__pyx_kwds_len > 0) {
|
|
5101
5101
|
switch (__pyx_nargs) {
|
|
5102
5102
|
case 2:
|
|
5103
5103
|
values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
|
|
5104
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0,
|
|
5104
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 22, __pyx_L3_error)
|
|
5105
5105
|
CYTHON_FALLTHROUGH;
|
|
5106
5106
|
case 1:
|
|
5107
5107
|
values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
|
|
5108
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0,
|
|
5108
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 22, __pyx_L3_error)
|
|
5109
5109
|
CYTHON_FALLTHROUGH;
|
|
5110
5110
|
case 0: break;
|
|
5111
5111
|
default: goto __pyx_L5_argtuple_error;
|
|
5112
5112
|
}
|
|
5113
5113
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
5114
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "seqconc", 0) < 0) __PYX_ERR(0,
|
|
5114
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "seqconc", 0) < 0) __PYX_ERR(0, 22, __pyx_L3_error)
|
|
5115
5115
|
if (!values[1]) values[1] = __Pyx_NewRef(((PyObject*)((PyObject*)__pyx_mstate_global->__pyx_kp_u__2)));
|
|
5116
5116
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
5117
|
-
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("seqconc", 0, 1, 2, i); __PYX_ERR(0,
|
|
5117
|
+
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("seqconc", 0, 1, 2, i); __PYX_ERR(0, 22, __pyx_L3_error) }
|
|
5118
5118
|
}
|
|
5119
5119
|
} else {
|
|
5120
5120
|
switch (__pyx_nargs) {
|
|
5121
5121
|
case 2:
|
|
5122
5122
|
values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
|
|
5123
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0,
|
|
5123
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 22, __pyx_L3_error)
|
|
5124
5124
|
CYTHON_FALLTHROUGH;
|
|
5125
5125
|
case 1:
|
|
5126
5126
|
values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
|
|
5127
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0,
|
|
5127
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 22, __pyx_L3_error)
|
|
5128
5128
|
break;
|
|
5129
5129
|
default: goto __pyx_L5_argtuple_error;
|
|
5130
5130
|
}
|
|
@@ -5135,7 +5135,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
5135
5135
|
}
|
|
5136
5136
|
goto __pyx_L6_skip;
|
|
5137
5137
|
__pyx_L5_argtuple_error:;
|
|
5138
|
-
__Pyx_RaiseArgtupleInvalid("seqconc", 0, 1, 2, __pyx_nargs); __PYX_ERR(0,
|
|
5138
|
+
__Pyx_RaiseArgtupleInvalid("seqconc", 0, 1, 2, __pyx_nargs); __PYX_ERR(0, 22, __pyx_L3_error)
|
|
5139
5139
|
__pyx_L6_skip:;
|
|
5140
5140
|
goto __pyx_L4_argument_unpacking_done;
|
|
5141
5141
|
__pyx_L3_error:;
|
|
@@ -5146,8 +5146,8 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
5146
5146
|
__Pyx_RefNannyFinishContext();
|
|
5147
5147
|
return NULL;
|
|
5148
5148
|
__pyx_L4_argument_unpacking_done:;
|
|
5149
|
-
if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), __pyx_mstate_global->__pyx_ptype_5numpy_ndarray, 1, "data", 0))) __PYX_ERR(0,
|
|
5150
|
-
if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_sep), (&PyUnicode_Type), 1, "sep", 1))) __PYX_ERR(0,
|
|
5149
|
+
if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_data), __pyx_mstate_global->__pyx_ptype_5numpy_ndarray, 1, "data", 0))) __PYX_ERR(0, 22, __pyx_L1_error)
|
|
5150
|
+
if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_sep), (&PyUnicode_Type), 1, "sep", 1))) __PYX_ERR(0, 22, __pyx_L1_error)
|
|
5151
5151
|
__pyx_r = __pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seqconc(__pyx_self, __pyx_v_data, __pyx_v_sep);
|
|
5152
5152
|
|
|
5153
5153
|
/* function exit code */
|
|
@@ -5193,11 +5193,11 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5193
5193
|
__pyx_pybuffernd_data.rcbuffer = &__pyx_pybuffer_data;
|
|
5194
5194
|
{
|
|
5195
5195
|
__Pyx_BufFmt_StackElem __pyx_stack[1];
|
|
5196
|
-
if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_data.rcbuffer->pybuffer, (PyObject*)__pyx_v_data, &__Pyx_TypeInfo_nn_int32_t, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0,
|
|
5196
|
+
if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_data.rcbuffer->pybuffer, (PyObject*)__pyx_v_data, &__Pyx_TypeInfo_nn_int32_t, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 22, __pyx_L1_error)
|
|
5197
5197
|
}
|
|
5198
5198
|
__pyx_pybuffernd_data.diminfo[0].strides = __pyx_pybuffernd_data.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_data.diminfo[0].shape = __pyx_pybuffernd_data.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_data.diminfo[1].strides = __pyx_pybuffernd_data.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_data.diminfo[1].shape = __pyx_pybuffernd_data.rcbuffer->pybuffer.shape[1];
|
|
5199
5199
|
|
|
5200
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5200
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":23
|
|
5201
5201
|
*
|
|
5202
5202
|
* def seqconc(cnp.ndarray[int32_t, ndim=2] data, str sep="-"):
|
|
5203
5203
|
* if data.ndim == 1: # <<<<<<<<<<<<<<
|
|
@@ -5207,7 +5207,7 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5207
5207
|
__pyx_t_1 = (__pyx_f_5numpy_7ndarray_4ndim_ndim(((PyArrayObject *)__pyx_v_data)) == 1);
|
|
5208
5208
|
if (__pyx_t_1) {
|
|
5209
5209
|
|
|
5210
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5210
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":24
|
|
5211
5211
|
* def seqconc(cnp.ndarray[int32_t, ndim=2] data, str sep="-"):
|
|
5212
5212
|
* if data.ndim == 1:
|
|
5213
5213
|
* return sconc_np(data, sep) # <<<<<<<<<<<<<<
|
|
@@ -5215,13 +5215,13 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5215
5215
|
* return np.array([sconc_np(row, sep) for row in data])
|
|
5216
5216
|
*/
|
|
5217
5217
|
__Pyx_XDECREF(__pyx_r);
|
|
5218
|
-
__pyx_t_2 = __pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_sconc_np(((PyArrayObject *)__pyx_v_data), __pyx_v_sep); if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
|
5218
|
+
__pyx_t_2 = __pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_sconc_np(((PyArrayObject *)__pyx_v_data), __pyx_v_sep); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 24, __pyx_L1_error)
|
|
5219
5219
|
__Pyx_GOTREF(__pyx_t_2);
|
|
5220
5220
|
__pyx_r = __pyx_t_2;
|
|
5221
5221
|
__pyx_t_2 = 0;
|
|
5222
5222
|
goto __pyx_L0;
|
|
5223
5223
|
|
|
5224
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5224
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":23
|
|
5225
5225
|
*
|
|
5226
5226
|
* def seqconc(cnp.ndarray[int32_t, ndim=2] data, str sep="-"):
|
|
5227
5227
|
* if data.ndim == 1: # <<<<<<<<<<<<<<
|
|
@@ -5230,7 +5230,7 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5230
5230
|
*/
|
|
5231
5231
|
}
|
|
5232
5232
|
|
|
5233
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5233
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":25
|
|
5234
5234
|
* if data.ndim == 1:
|
|
5235
5235
|
* return sconc_np(data, sep)
|
|
5236
5236
|
* elif data.ndim == 2: # <<<<<<<<<<<<<<
|
|
@@ -5240,7 +5240,7 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5240
5240
|
__pyx_t_1 = (__pyx_f_5numpy_7ndarray_4ndim_ndim(((PyArrayObject *)__pyx_v_data)) == 2);
|
|
5241
5241
|
if (likely(__pyx_t_1)) {
|
|
5242
5242
|
|
|
5243
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5243
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":26
|
|
5244
5244
|
* return sconc_np(data, sep)
|
|
5245
5245
|
* elif data.ndim == 2:
|
|
5246
5246
|
* return np.array([sconc_np(row, sep) for row in data]) # <<<<<<<<<<<<<<
|
|
@@ -5249,22 +5249,22 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5249
5249
|
*/
|
|
5250
5250
|
__Pyx_XDECREF(__pyx_r);
|
|
5251
5251
|
__pyx_t_3 = NULL;
|
|
5252
|
-
__Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0,
|
|
5252
|
+
__Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 26, __pyx_L1_error)
|
|
5253
5253
|
__Pyx_GOTREF(__pyx_t_4);
|
|
5254
|
-
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_array); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
|
5254
|
+
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_array); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 26, __pyx_L1_error)
|
|
5255
5255
|
__Pyx_GOTREF(__pyx_t_5);
|
|
5256
5256
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
5257
5257
|
{ /* enter inner scope */
|
|
5258
|
-
__pyx_t_4 = PyList_New(0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0,
|
|
5258
|
+
__pyx_t_4 = PyList_New(0); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 26, __pyx_L6_error)
|
|
5259
5259
|
__Pyx_GOTREF(__pyx_t_4);
|
|
5260
5260
|
if (likely(PyList_CheckExact(((PyObject *)__pyx_v_data))) || PyTuple_CheckExact(((PyObject *)__pyx_v_data))) {
|
|
5261
5261
|
__pyx_t_6 = ((PyObject *)__pyx_v_data); __Pyx_INCREF(__pyx_t_6);
|
|
5262
5262
|
__pyx_t_7 = 0;
|
|
5263
5263
|
__pyx_t_8 = NULL;
|
|
5264
5264
|
} else {
|
|
5265
|
-
__pyx_t_7 = -1; __pyx_t_6 = PyObject_GetIter(((PyObject *)__pyx_v_data)); if (unlikely(!__pyx_t_6)) __PYX_ERR(0,
|
|
5265
|
+
__pyx_t_7 = -1; __pyx_t_6 = PyObject_GetIter(((PyObject *)__pyx_v_data)); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 26, __pyx_L6_error)
|
|
5266
5266
|
__Pyx_GOTREF(__pyx_t_6);
|
|
5267
|
-
__pyx_t_8 = (CYTHON_COMPILING_IN_LIMITED_API) ? PyIter_Next : __Pyx_PyObject_GetIterNextFunc(__pyx_t_6); if (unlikely(!__pyx_t_8)) __PYX_ERR(0,
|
|
5267
|
+
__pyx_t_8 = (CYTHON_COMPILING_IN_LIMITED_API) ? PyIter_Next : __Pyx_PyObject_GetIterNextFunc(__pyx_t_6); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 26, __pyx_L6_error)
|
|
5268
5268
|
}
|
|
5269
5269
|
for (;;) {
|
|
5270
5270
|
if (likely(!__pyx_t_8)) {
|
|
@@ -5272,7 +5272,7 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5272
5272
|
{
|
|
5273
5273
|
Py_ssize_t __pyx_temp = __Pyx_PyList_GET_SIZE(__pyx_t_6);
|
|
5274
5274
|
#if !CYTHON_ASSUME_SAFE_SIZE
|
|
5275
|
-
if (unlikely((__pyx_temp < 0))) __PYX_ERR(0,
|
|
5275
|
+
if (unlikely((__pyx_temp < 0))) __PYX_ERR(0, 26, __pyx_L6_error)
|
|
5276
5276
|
#endif
|
|
5277
5277
|
if (__pyx_t_7 >= __pyx_temp) break;
|
|
5278
5278
|
}
|
|
@@ -5282,7 +5282,7 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5282
5282
|
{
|
|
5283
5283
|
Py_ssize_t __pyx_temp = __Pyx_PyTuple_GET_SIZE(__pyx_t_6);
|
|
5284
5284
|
#if !CYTHON_ASSUME_SAFE_SIZE
|
|
5285
|
-
if (unlikely((__pyx_temp < 0))) __PYX_ERR(0,
|
|
5285
|
+
if (unlikely((__pyx_temp < 0))) __PYX_ERR(0, 26, __pyx_L6_error)
|
|
5286
5286
|
#endif
|
|
5287
5287
|
if (__pyx_t_7 >= __pyx_temp) break;
|
|
5288
5288
|
}
|
|
@@ -5293,13 +5293,13 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5293
5293
|
#endif
|
|
5294
5294
|
++__pyx_t_7;
|
|
5295
5295
|
}
|
|
5296
|
-
if (unlikely(!__pyx_t_9)) __PYX_ERR(0,
|
|
5296
|
+
if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 26, __pyx_L6_error)
|
|
5297
5297
|
} else {
|
|
5298
5298
|
__pyx_t_9 = __pyx_t_8(__pyx_t_6);
|
|
5299
5299
|
if (unlikely(!__pyx_t_9)) {
|
|
5300
5300
|
PyObject* exc_type = PyErr_Occurred();
|
|
5301
5301
|
if (exc_type) {
|
|
5302
|
-
if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) __PYX_ERR(0,
|
|
5302
|
+
if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))) __PYX_ERR(0, 26, __pyx_L6_error)
|
|
5303
5303
|
PyErr_Clear();
|
|
5304
5304
|
}
|
|
5305
5305
|
break;
|
|
@@ -5308,10 +5308,10 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5308
5308
|
__Pyx_GOTREF(__pyx_t_9);
|
|
5309
5309
|
__Pyx_XDECREF_SET(__pyx_7genexpr__pyx_v_row, __pyx_t_9);
|
|
5310
5310
|
__pyx_t_9 = 0;
|
|
5311
|
-
if (!(likely(((__pyx_7genexpr__pyx_v_row) == Py_None) || likely(__Pyx_TypeTest(__pyx_7genexpr__pyx_v_row, __pyx_mstate_global->__pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0,
|
|
5312
|
-
__pyx_t_9 = __pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_sconc_np(((PyArrayObject *)__pyx_7genexpr__pyx_v_row), __pyx_v_sep); if (unlikely(!__pyx_t_9)) __PYX_ERR(0,
|
|
5311
|
+
if (!(likely(((__pyx_7genexpr__pyx_v_row) == Py_None) || likely(__Pyx_TypeTest(__pyx_7genexpr__pyx_v_row, __pyx_mstate_global->__pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 26, __pyx_L6_error)
|
|
5312
|
+
__pyx_t_9 = __pyx_f_8sequenzo_22dissimilarity_measures_5utils_7seqconc_sconc_np(((PyArrayObject *)__pyx_7genexpr__pyx_v_row), __pyx_v_sep); if (unlikely(!__pyx_t_9)) __PYX_ERR(0, 26, __pyx_L6_error)
|
|
5313
5313
|
__Pyx_GOTREF(__pyx_t_9);
|
|
5314
|
-
if (unlikely(__Pyx_ListComp_Append(__pyx_t_4, (PyObject*)__pyx_t_9))) __PYX_ERR(0,
|
|
5314
|
+
if (unlikely(__Pyx_ListComp_Append(__pyx_t_4, (PyObject*)__pyx_t_9))) __PYX_ERR(0, 26, __pyx_L6_error)
|
|
5315
5315
|
__Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
|
|
5316
5316
|
}
|
|
5317
5317
|
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
|
|
@@ -5340,14 +5340,14 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5340
5340
|
__Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
5341
5341
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
5342
5342
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
5343
|
-
if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
|
5343
|
+
if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 26, __pyx_L1_error)
|
|
5344
5344
|
__Pyx_GOTREF(__pyx_t_2);
|
|
5345
5345
|
}
|
|
5346
5346
|
__pyx_r = __pyx_t_2;
|
|
5347
5347
|
__pyx_t_2 = 0;
|
|
5348
5348
|
goto __pyx_L0;
|
|
5349
5349
|
|
|
5350
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5350
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":25
|
|
5351
5351
|
* if data.ndim == 1:
|
|
5352
5352
|
* return sconc_np(data, sep)
|
|
5353
5353
|
* elif data.ndim == 2: # <<<<<<<<<<<<<<
|
|
@@ -5356,7 +5356,7 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5356
5356
|
*/
|
|
5357
5357
|
}
|
|
5358
5358
|
|
|
5359
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5359
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":28
|
|
5360
5360
|
* return np.array([sconc_np(row, sep) for row in data])
|
|
5361
5361
|
* else:
|
|
5362
5362
|
* raise ValueError("Only 1D and 2D arrays are supported.") # <<<<<<<<<<<<<<
|
|
@@ -5371,15 +5371,15 @@ static PyObject *__pyx_pf_8sequenzo_22dissimilarity_measures_5utils_7seqconc_seq
|
|
|
5371
5371
|
__pyx_t_2 = __Pyx_PyObject_FastCall(__pyx_t_4, __pyx_callargs+__pyx_t_10, (2-__pyx_t_10) | (__pyx_t_10*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET));
|
|
5372
5372
|
__Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
5373
5373
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
5374
|
-
if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
|
5374
|
+
if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 28, __pyx_L1_error)
|
|
5375
5375
|
__Pyx_GOTREF(__pyx_t_2);
|
|
5376
5376
|
}
|
|
5377
5377
|
__Pyx_Raise(__pyx_t_2, 0, 0, 0);
|
|
5378
5378
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
5379
|
-
__PYX_ERR(0,
|
|
5379
|
+
__PYX_ERR(0, 28, __pyx_L1_error)
|
|
5380
5380
|
}
|
|
5381
5381
|
|
|
5382
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5382
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":22
|
|
5383
5383
|
* return result.decode('utf-8')
|
|
5384
5384
|
*
|
|
5385
5385
|
* def seqconc(cnp.ndarray[int32_t, ndim=2] data, str sep="-"): # <<<<<<<<<<<<<<
|
|
@@ -5935,33 +5935,34 @@ __Pyx_RefNannySetupContext("PyInit_seqconc", 0);
|
|
|
5935
5935
|
(void)__Pyx_modinit_function_import_code(__pyx_mstate);
|
|
5936
5936
|
/*--- Execution code ---*/
|
|
5937
5937
|
|
|
5938
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5938
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":2
|
|
5939
|
+
* # cython: np_import_array=True
|
|
5939
5940
|
* import numpy as np # <<<<<<<<<<<<<<
|
|
5940
5941
|
* cimport numpy as cnp
|
|
5941
|
-
*
|
|
5942
|
+
*
|
|
5942
5943
|
*/
|
|
5943
|
-
__pyx_t_2 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
|
5944
|
+
__pyx_t_2 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 2, __pyx_L1_error)
|
|
5944
5945
|
__Pyx_GOTREF(__pyx_t_2);
|
|
5945
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_2) < 0) __PYX_ERR(0,
|
|
5946
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_2) < 0) __PYX_ERR(0, 2, __pyx_L1_error)
|
|
5946
5947
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
5947
5948
|
|
|
5948
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
5949
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":22
|
|
5949
5950
|
* return result.decode('utf-8')
|
|
5950
5951
|
*
|
|
5951
5952
|
* def seqconc(cnp.ndarray[int32_t, ndim=2] data, str sep="-"): # <<<<<<<<<<<<<<
|
|
5952
5953
|
* if data.ndim == 1:
|
|
5953
5954
|
* return sconc_np(data, sep)
|
|
5954
5955
|
*/
|
|
5955
|
-
__pyx_t_2 = __Pyx_CyFunction_New(&__pyx_mdef_8sequenzo_22dissimilarity_measures_5utils_7seqconc_1seqconc, 0, __pyx_mstate_global->__pyx_n_u_seqconc, NULL, __pyx_mstate_global->__pyx_n_u_sequenzo_dissimilarity_measures, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
|
5956
|
+
__pyx_t_2 = __Pyx_CyFunction_New(&__pyx_mdef_8sequenzo_22dissimilarity_measures_5utils_7seqconc_1seqconc, 0, __pyx_mstate_global->__pyx_n_u_seqconc, NULL, __pyx_mstate_global->__pyx_n_u_sequenzo_dissimilarity_measures, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 22, __pyx_L1_error)
|
|
5956
5957
|
__Pyx_GOTREF(__pyx_t_2);
|
|
5957
5958
|
__Pyx_CyFunction_SetDefaultsTuple(__pyx_t_2, __pyx_mstate_global->__pyx_tuple[0]);
|
|
5958
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_seqconc, __pyx_t_2) < 0) __PYX_ERR(0,
|
|
5959
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_seqconc, __pyx_t_2) < 0) __PYX_ERR(0, 22, __pyx_L1_error)
|
|
5959
5960
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
5960
5961
|
|
|
5961
5962
|
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":1
|
|
5962
|
-
*
|
|
5963
|
+
* # cython: np_import_array=True # <<<<<<<<<<<<<<
|
|
5964
|
+
* import numpy as np
|
|
5963
5965
|
* cimport numpy as cnp
|
|
5964
|
-
* from libc.stdint cimport int32_t
|
|
5965
5966
|
*/
|
|
5966
5967
|
__pyx_t_2 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
5967
5968
|
__Pyx_GOTREF(__pyx_t_2);
|
|
@@ -6068,8 +6069,8 @@ static int __Pyx_InitStrings(__Pyx_StringTabEntry const *t, PyObject **target, c
|
|
|
6068
6069
|
|
|
6069
6070
|
static int __Pyx_InitCachedBuiltins(__pyx_mstatetype *__pyx_mstate) {
|
|
6070
6071
|
CYTHON_UNUSED_VAR(__pyx_mstate);
|
|
6071
|
-
__pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_range); if (!__pyx_builtin_range) __PYX_ERR(0,
|
|
6072
|
-
__pyx_builtin_ValueError = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_ValueError); if (!__pyx_builtin_ValueError) __PYX_ERR(0,
|
|
6072
|
+
__pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_range); if (!__pyx_builtin_range) __PYX_ERR(0, 13, __pyx_L1_error)
|
|
6073
|
+
__pyx_builtin_ValueError = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_ValueError); if (!__pyx_builtin_ValueError) __PYX_ERR(0, 28, __pyx_L1_error)
|
|
6073
6074
|
__pyx_builtin_ImportError = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_ImportError); if (!__pyx_builtin_ImportError) __PYX_ERR(1, 1026, __pyx_L1_error)
|
|
6074
6075
|
return 0;
|
|
6075
6076
|
__pyx_L1_error:;
|
|
@@ -6082,14 +6083,14 @@ static int __Pyx_InitCachedConstants(__pyx_mstatetype *__pyx_mstate) {
|
|
|
6082
6083
|
CYTHON_UNUSED_VAR(__pyx_mstate);
|
|
6083
6084
|
__Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
|
|
6084
6085
|
|
|
6085
|
-
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":
|
|
6086
|
+
/* "sequenzo/dissimilarity_measures/utils/seqconc.pyx":22
|
|
6086
6087
|
* return result.decode('utf-8')
|
|
6087
6088
|
*
|
|
6088
6089
|
* def seqconc(cnp.ndarray[int32_t, ndim=2] data, str sep="-"): # <<<<<<<<<<<<<<
|
|
6089
6090
|
* if data.ndim == 1:
|
|
6090
6091
|
* return sconc_np(data, sep)
|
|
6091
6092
|
*/
|
|
6092
|
-
__pyx_mstate_global->__pyx_tuple[0] = PyTuple_Pack(1, ((PyObject*)__pyx_mstate_global->__pyx_kp_u__2)); if (unlikely(!__pyx_mstate_global->__pyx_tuple[0])) __PYX_ERR(0,
|
|
6093
|
+
__pyx_mstate_global->__pyx_tuple[0] = PyTuple_Pack(1, ((PyObject*)__pyx_mstate_global->__pyx_kp_u__2)); if (unlikely(!__pyx_mstate_global->__pyx_tuple[0])) __PYX_ERR(0, 22, __pyx_L1_error)
|
|
6093
6094
|
__Pyx_GOTREF(__pyx_mstate_global->__pyx_tuple[0]);
|
|
6094
6095
|
__Pyx_GIVEREF(__pyx_mstate_global->__pyx_tuple[0]);
|
|
6095
6096
|
__Pyx_RefNannyFinishContext();
|
|
@@ -6135,7 +6136,7 @@ static int __Pyx_CreateCodeObjects(__pyx_mstatetype *__pyx_mstate) {
|
|
|
6135
6136
|
PyObject* tuple_dedup_map = PyDict_New();
|
|
6136
6137
|
if (unlikely(!tuple_dedup_map)) return -1;
|
|
6137
6138
|
{
|
|
6138
|
-
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 3, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS),
|
|
6139
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 3, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 22, 70};
|
|
6139
6140
|
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_data, __pyx_mstate->__pyx_n_u_sep, __pyx_mstate->__pyx_n_u_row};
|
|
6140
6141
|
__pyx_mstate_global->__pyx_codeobj_tab[0] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_sequenzo_dissimilarity_measures_2, __pyx_mstate->__pyx_n_u_seqconc, __pyx_k_q_t6_A_xq_a_V3a_r_q_uD_q_j, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[0])) goto bad;
|
|
6141
6142
|
}
|