sequenzo 0.1.19__cp311-cp311-win_amd64.whl → 0.1.21__cp311-cp311-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 +192 -191
- sequenzo/big_data/clara/utils/get_weighted_diss.cp311-win_amd64.pyd +0 -0
- sequenzo/clustering/clustering_c_code.cp311-win_amd64.pyd +0 -0
- sequenzo/clustering/hierarchical_clustering.py +2 -2
- sequenzo/define_sequence_data.py +4 -4
- sequenzo/dissimilarity_measures/c_code.cp311-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 +169 -169
- sequenzo/dissimilarity_measures/utils/get_sm_trate_substitution_cost_matrix.cp311-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqconc.c +231 -230
- sequenzo/dissimilarity_measures/utils/seqconc.cp311-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqdss.c +324 -323
- sequenzo/dissimilarity_measures/utils/seqdss.cp311-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqdur.c +324 -323
- sequenzo/dissimilarity_measures/utils/seqdur.cp311-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqlength.c +224 -222
- sequenzo/dissimilarity_measures/utils/seqlength.cp311-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-quwyv4g5\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\arrayobject.h",
|
|
14
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-quwyv4g5\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\arrayscalars.h",
|
|
15
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-quwyv4g5\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\ndarrayobject.h",
|
|
16
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-quwyv4g5\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\ndarraytypes.h",
|
|
17
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-quwyv4g5\\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-quwyv4g5\\overlay\\Lib\\site-packages\\pybind11\\include",
|
|
27
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-quwyv4g5\\overlay\\Lib\\site-packages\\pybind11\\include",
|
|
28
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-quwyv4g5\\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/"
|
|
@@ -1397,7 +1397,7 @@ static const char *__pyx_filename;
|
|
|
1397
1397
|
|
|
1398
1398
|
static const char* const __pyx_f[] = {
|
|
1399
1399
|
"sequenzo/big_data/clara/utils/get_weighted_diss.pyx",
|
|
1400
|
-
"C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1400
|
+
"C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd",
|
|
1401
1401
|
"cpython/type.pxd",
|
|
1402
1402
|
};
|
|
1403
1403
|
/* #### Code section: utility_code_proto_before_types ### */
|
|
@@ -1597,7 +1597,7 @@ typedef struct {
|
|
|
1597
1597
|
|
|
1598
1598
|
/* #### Code section: numeric_typedefs ### */
|
|
1599
1599
|
|
|
1600
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1600
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":743
|
|
1601
1601
|
* # in Cython to enable them only on the right systems.
|
|
1602
1602
|
*
|
|
1603
1603
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1606,7 +1606,7 @@ typedef struct {
|
|
|
1606
1606
|
*/
|
|
1607
1607
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1608
1608
|
|
|
1609
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1609
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
|
|
1610
1610
|
*
|
|
1611
1611
|
* ctypedef npy_int8 int8_t
|
|
1612
1612
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1615,7 +1615,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1615
1615
|
*/
|
|
1616
1616
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1617
1617
|
|
|
1618
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1618
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
|
|
1619
1619
|
* ctypedef npy_int8 int8_t
|
|
1620
1620
|
* ctypedef npy_int16 int16_t
|
|
1621
1621
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1624,7 +1624,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1624
1624
|
*/
|
|
1625
1625
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1626
1626
|
|
|
1627
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1627
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
|
|
1628
1628
|
* ctypedef npy_int16 int16_t
|
|
1629
1629
|
* ctypedef npy_int32 int32_t
|
|
1630
1630
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1633,7 +1633,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1633
1633
|
*/
|
|
1634
1634
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1635
1635
|
|
|
1636
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1636
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":748
|
|
1637
1637
|
* ctypedef npy_int64 int64_t
|
|
1638
1638
|
*
|
|
1639
1639
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1642,7 +1642,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1642
1642
|
*/
|
|
1643
1643
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1644
1644
|
|
|
1645
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1645
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":749
|
|
1646
1646
|
*
|
|
1647
1647
|
* ctypedef npy_uint8 uint8_t
|
|
1648
1648
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1651,7 +1651,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1651
1651
|
*/
|
|
1652
1652
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1653
1653
|
|
|
1654
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1654
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":750
|
|
1655
1655
|
* ctypedef npy_uint8 uint8_t
|
|
1656
1656
|
* ctypedef npy_uint16 uint16_t
|
|
1657
1657
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1660,7 +1660,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1660
1660
|
*/
|
|
1661
1661
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1662
1662
|
|
|
1663
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1663
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":751
|
|
1664
1664
|
* ctypedef npy_uint16 uint16_t
|
|
1665
1665
|
* ctypedef npy_uint32 uint32_t
|
|
1666
1666
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1669,7 +1669,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1669
1669
|
*/
|
|
1670
1670
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1671
1671
|
|
|
1672
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1672
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":753
|
|
1673
1673
|
* ctypedef npy_uint64 uint64_t
|
|
1674
1674
|
*
|
|
1675
1675
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1678,7 +1678,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1678
1678
|
*/
|
|
1679
1679
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1680
1680
|
|
|
1681
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1681
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
|
|
1682
1682
|
*
|
|
1683
1683
|
* ctypedef npy_float32 float32_t
|
|
1684
1684
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1687,7 +1687,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1687
1687
|
*/
|
|
1688
1688
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1689
1689
|
|
|
1690
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1690
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1691
1691
|
* ctypedef double complex complex128_t
|
|
1692
1692
|
*
|
|
1693
1693
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1696,7 +1696,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1696
1696
|
*/
|
|
1697
1697
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1698
1698
|
|
|
1699
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1699
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":762
|
|
1700
1700
|
*
|
|
1701
1701
|
* ctypedef npy_longlong longlong_t
|
|
1702
1702
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1705,7 +1705,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1705
1705
|
*/
|
|
1706
1706
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1707
1707
|
|
|
1708
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1708
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1709
1709
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1710
1710
|
*
|
|
1711
1711
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1714,7 +1714,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1714
1714
|
*/
|
|
1715
1715
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1716
1716
|
|
|
1717
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1717
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1718
1718
|
*
|
|
1719
1719
|
* ctypedef npy_intp intp_t
|
|
1720
1720
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1723,7 +1723,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1723
1723
|
*/
|
|
1724
1724
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1725
1725
|
|
|
1726
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1726
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1727
1727
|
* ctypedef npy_uintp uintp_t
|
|
1728
1728
|
*
|
|
1729
1729
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1732,7 +1732,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1732
1732
|
*/
|
|
1733
1733
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1734
1734
|
|
|
1735
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1735
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1736
1736
|
*
|
|
1737
1737
|
* ctypedef npy_double float_t
|
|
1738
1738
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1741,7 +1741,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1741
1741
|
*/
|
|
1742
1742
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1743
1743
|
|
|
1744
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1744
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1745
1745
|
* ctypedef npy_double float_t
|
|
1746
1746
|
* ctypedef npy_double double_t
|
|
1747
1747
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -2945,7 +2945,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
2945
2945
|
#endif
|
|
2946
2946
|
/* #### Code section: module_code ### */
|
|
2947
2947
|
|
|
2948
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
2948
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":242
|
|
2949
2949
|
* cdef int type_num
|
|
2950
2950
|
*
|
|
2951
2951
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -2956,7 +2956,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
2956
2956
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
|
2957
2957
|
npy_intp __pyx_r;
|
|
2958
2958
|
|
|
2959
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
2959
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":244
|
|
2960
2960
|
* @property
|
|
2961
2961
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
|
2962
2962
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -2966,7 +2966,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
2966
2966
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
|
2967
2967
|
goto __pyx_L0;
|
|
2968
2968
|
|
|
2969
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
2969
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":242
|
|
2970
2970
|
* cdef int type_num
|
|
2971
2971
|
*
|
|
2972
2972
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -2979,7 +2979,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
2979
2979
|
return __pyx_r;
|
|
2980
2980
|
}
|
|
2981
2981
|
|
|
2982
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
2982
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
2983
2983
|
* return PyDataType_ELSIZE(self)
|
|
2984
2984
|
*
|
|
2985
2985
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -2990,7 +2990,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
2990
2990
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
|
2991
2991
|
npy_intp __pyx_r;
|
|
2992
2992
|
|
|
2993
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
2993
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
|
|
2994
2994
|
* @property
|
|
2995
2995
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
|
2996
2996
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
|
@@ -3000,7 +3000,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
3000
3000
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
|
3001
3001
|
goto __pyx_L0;
|
|
3002
3002
|
|
|
3003
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3003
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
3004
3004
|
* return PyDataType_ELSIZE(self)
|
|
3005
3005
|
*
|
|
3006
3006
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3013,7 +3013,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
3013
3013
|
return __pyx_r;
|
|
3014
3014
|
}
|
|
3015
3015
|
|
|
3016
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3016
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
3017
3017
|
* # Use fields/names with care as they may be NULL. You must check
|
|
3018
3018
|
* # for this using PyDataType_HASFIELDS.
|
|
3019
3019
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3027,7 +3027,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3027
3027
|
PyObject *__pyx_t_1;
|
|
3028
3028
|
__Pyx_RefNannySetupContext("fields", 0);
|
|
3029
3029
|
|
|
3030
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3030
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
|
|
3031
3031
|
* @property
|
|
3032
3032
|
* cdef inline object fields(self):
|
|
3033
3033
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
|
@@ -3040,7 +3040,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3040
3040
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
|
3041
3041
|
goto __pyx_L0;
|
|
3042
3042
|
|
|
3043
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3043
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
3044
3044
|
* # Use fields/names with care as they may be NULL. You must check
|
|
3045
3045
|
* # for this using PyDataType_HASFIELDS.
|
|
3046
3046
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3055,7 +3055,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3055
3055
|
return __pyx_r;
|
|
3056
3056
|
}
|
|
3057
3057
|
|
|
3058
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3058
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":256
|
|
3059
3059
|
* return <object>PyDataType_FIELDS(self)
|
|
3060
3060
|
*
|
|
3061
3061
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3069,7 +3069,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3069
3069
|
PyObject *__pyx_t_1;
|
|
3070
3070
|
__Pyx_RefNannySetupContext("names", 0);
|
|
3071
3071
|
|
|
3072
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3072
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
3073
3073
|
* @property
|
|
3074
3074
|
* cdef inline tuple names(self):
|
|
3075
3075
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
|
@@ -3082,7 +3082,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3082
3082
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
|
3083
3083
|
goto __pyx_L0;
|
|
3084
3084
|
|
|
3085
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3085
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":256
|
|
3086
3086
|
* return <object>PyDataType_FIELDS(self)
|
|
3087
3087
|
*
|
|
3088
3088
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3097,7 +3097,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3097
3097
|
return __pyx_r;
|
|
3098
3098
|
}
|
|
3099
3099
|
|
|
3100
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3100
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
|
|
3101
3101
|
* # valid (the pointer can be NULL). Most users should access
|
|
3102
3102
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
3103
3103
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3108,7 +3108,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3108
3108
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
|
3109
3109
|
PyArray_ArrayDescr *__pyx_r;
|
|
3110
3110
|
|
|
3111
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3111
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":265
|
|
3112
3112
|
* @property
|
|
3113
3113
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
|
3114
3114
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
|
@@ -3118,7 +3118,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3118
3118
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
|
3119
3119
|
goto __pyx_L0;
|
|
3120
3120
|
|
|
3121
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3121
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
|
|
3122
3122
|
* # valid (the pointer can be NULL). Most users should access
|
|
3123
3123
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
3124
3124
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3131,7 +3131,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3131
3131
|
return __pyx_r;
|
|
3132
3132
|
}
|
|
3133
3133
|
|
|
3134
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3134
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":267
|
|
3135
3135
|
* return PyDataType_SUBARRAY(self)
|
|
3136
3136
|
*
|
|
3137
3137
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3142,7 +3142,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3142
3142
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
|
3143
3143
|
npy_uint64 __pyx_r;
|
|
3144
3144
|
|
|
3145
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3145
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":270
|
|
3146
3146
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
|
3147
3147
|
* """The data types flags."""
|
|
3148
3148
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
|
@@ -3152,7 +3152,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3152
3152
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
|
3153
3153
|
goto __pyx_L0;
|
|
3154
3154
|
|
|
3155
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3155
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":267
|
|
3156
3156
|
* return PyDataType_SUBARRAY(self)
|
|
3157
3157
|
*
|
|
3158
3158
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3165,7 +3165,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3165
3165
|
return __pyx_r;
|
|
3166
3166
|
}
|
|
3167
3167
|
|
|
3168
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3168
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
3169
3169
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
3170
3170
|
*
|
|
3171
3171
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3176,7 +3176,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3176
3176
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3177
3177
|
int __pyx_r;
|
|
3178
3178
|
|
|
3179
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3179
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
|
|
3180
3180
|
* cdef inline int numiter(self) noexcept nogil:
|
|
3181
3181
|
* """The number of arrays that need to be broadcast to the same shape."""
|
|
3182
3182
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
|
@@ -3186,7 +3186,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3186
3186
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
|
3187
3187
|
goto __pyx_L0;
|
|
3188
3188
|
|
|
3189
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3189
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
3190
3190
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
3191
3191
|
*
|
|
3192
3192
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3199,7 +3199,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3199
3199
|
return __pyx_r;
|
|
3200
3200
|
}
|
|
3201
3201
|
|
|
3202
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3202
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
|
|
3203
3203
|
* return PyArray_MultiIter_NUMITER(self)
|
|
3204
3204
|
*
|
|
3205
3205
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3210,7 +3210,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3210
3210
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3211
3211
|
npy_intp __pyx_r;
|
|
3212
3212
|
|
|
3213
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3213
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":287
|
|
3214
3214
|
* cdef inline npy_intp size(self) noexcept nogil:
|
|
3215
3215
|
* """The total broadcasted size."""
|
|
3216
3216
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3220,7 +3220,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3220
3220
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
|
3221
3221
|
goto __pyx_L0;
|
|
3222
3222
|
|
|
3223
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3223
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
|
|
3224
3224
|
* return PyArray_MultiIter_NUMITER(self)
|
|
3225
3225
|
*
|
|
3226
3226
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3233,7 +3233,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3233
3233
|
return __pyx_r;
|
|
3234
3234
|
}
|
|
3235
3235
|
|
|
3236
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3236
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":289
|
|
3237
3237
|
* return PyArray_MultiIter_SIZE(self)
|
|
3238
3238
|
*
|
|
3239
3239
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3244,7 +3244,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3244
3244
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3245
3245
|
npy_intp __pyx_r;
|
|
3246
3246
|
|
|
3247
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3247
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":292
|
|
3248
3248
|
* cdef inline npy_intp index(self) noexcept nogil:
|
|
3249
3249
|
* """The current (1-d) index into the broadcasted result."""
|
|
3250
3250
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
|
@@ -3254,7 +3254,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3254
3254
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
|
3255
3255
|
goto __pyx_L0;
|
|
3256
3256
|
|
|
3257
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3257
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":289
|
|
3258
3258
|
* return PyArray_MultiIter_SIZE(self)
|
|
3259
3259
|
*
|
|
3260
3260
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3267,7 +3267,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3267
3267
|
return __pyx_r;
|
|
3268
3268
|
}
|
|
3269
3269
|
|
|
3270
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3270
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":294
|
|
3271
3271
|
* return PyArray_MultiIter_INDEX(self)
|
|
3272
3272
|
*
|
|
3273
3273
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3278,7 +3278,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3278
3278
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3279
3279
|
int __pyx_r;
|
|
3280
3280
|
|
|
3281
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3281
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":297
|
|
3282
3282
|
* cdef inline int nd(self) noexcept nogil:
|
|
3283
3283
|
* """The number of dimensions in the broadcasted result."""
|
|
3284
3284
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3288,7 +3288,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3288
3288
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
|
3289
3289
|
goto __pyx_L0;
|
|
3290
3290
|
|
|
3291
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3291
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":294
|
|
3292
3292
|
* return PyArray_MultiIter_INDEX(self)
|
|
3293
3293
|
*
|
|
3294
3294
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3301,7 +3301,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3301
3301
|
return __pyx_r;
|
|
3302
3302
|
}
|
|
3303
3303
|
|
|
3304
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3304
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":299
|
|
3305
3305
|
* return PyArray_MultiIter_NDIM(self)
|
|
3306
3306
|
*
|
|
3307
3307
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3312,7 +3312,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3312
3312
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3313
3313
|
npy_intp *__pyx_r;
|
|
3314
3314
|
|
|
3315
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3315
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":302
|
|
3316
3316
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
|
3317
3317
|
* """The shape of the broadcasted result."""
|
|
3318
3318
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3322,7 +3322,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3322
3322
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
|
3323
3323
|
goto __pyx_L0;
|
|
3324
3324
|
|
|
3325
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3325
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":299
|
|
3326
3326
|
* return PyArray_MultiIter_NDIM(self)
|
|
3327
3327
|
*
|
|
3328
3328
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3335,7 +3335,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3335
3335
|
return __pyx_r;
|
|
3336
3336
|
}
|
|
3337
3337
|
|
|
3338
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3338
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":304
|
|
3339
3339
|
* return PyArray_MultiIter_DIMS(self)
|
|
3340
3340
|
*
|
|
3341
3341
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3346,7 +3346,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3346
3346
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3347
3347
|
void **__pyx_r;
|
|
3348
3348
|
|
|
3349
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3349
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":308
|
|
3350
3350
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
|
3351
3351
|
* On return, the iterators are adjusted for broadcasting."""
|
|
3352
3352
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
|
@@ -3356,7 +3356,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3356
3356
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
|
3357
3357
|
goto __pyx_L0;
|
|
3358
3358
|
|
|
3359
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3359
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":304
|
|
3360
3360
|
* return PyArray_MultiIter_DIMS(self)
|
|
3361
3361
|
*
|
|
3362
3362
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3369,7 +3369,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3369
3369
|
return __pyx_r;
|
|
3370
3370
|
}
|
|
3371
3371
|
|
|
3372
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3372
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":322
|
|
3373
3373
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3374
3374
|
*
|
|
3375
3375
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3380,7 +3380,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3380
3380
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
3381
3381
|
PyObject *__pyx_r;
|
|
3382
3382
|
|
|
3383
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3383
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":326
|
|
3384
3384
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
3385
3385
|
* """
|
|
3386
3386
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -3390,7 +3390,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3390
3390
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
3391
3391
|
goto __pyx_L0;
|
|
3392
3392
|
|
|
3393
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3393
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":322
|
|
3394
3394
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3395
3395
|
*
|
|
3396
3396
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3403,7 +3403,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3403
3403
|
return __pyx_r;
|
|
3404
3404
|
}
|
|
3405
3405
|
|
|
3406
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3406
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":328
|
|
3407
3407
|
* return PyArray_BASE(self)
|
|
3408
3408
|
*
|
|
3409
3409
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3417,7 +3417,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3417
3417
|
PyArray_Descr *__pyx_t_1;
|
|
3418
3418
|
__Pyx_RefNannySetupContext("descr", 0);
|
|
3419
3419
|
|
|
3420
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3420
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":332
|
|
3421
3421
|
* """Returns an owned reference to the dtype of the array.
|
|
3422
3422
|
* """
|
|
3423
3423
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -3430,7 +3430,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3430
3430
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
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-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":328
|
|
3434
3434
|
* return PyArray_BASE(self)
|
|
3435
3435
|
*
|
|
3436
3436
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3445,7 +3445,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3445
3445
|
return __pyx_r;
|
|
3446
3446
|
}
|
|
3447
3447
|
|
|
3448
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3448
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":334
|
|
3449
3449
|
* return <dtype>PyArray_DESCR(self)
|
|
3450
3450
|
*
|
|
3451
3451
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3456,7 +3456,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3456
3456
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
3457
3457
|
int __pyx_r;
|
|
3458
3458
|
|
|
3459
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3459
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":338
|
|
3460
3460
|
* """Returns the number of dimensions in the array.
|
|
3461
3461
|
* """
|
|
3462
3462
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3466,7 +3466,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3466
3466
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
3467
3467
|
goto __pyx_L0;
|
|
3468
3468
|
|
|
3469
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3469
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":334
|
|
3470
3470
|
* return <dtype>PyArray_DESCR(self)
|
|
3471
3471
|
*
|
|
3472
3472
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3479,7 +3479,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3479
3479
|
return __pyx_r;
|
|
3480
3480
|
}
|
|
3481
3481
|
|
|
3482
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3482
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":340
|
|
3483
3483
|
* return PyArray_NDIM(self)
|
|
3484
3484
|
*
|
|
3485
3485
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3490,7 +3490,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3490
3490
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
3491
3491
|
npy_intp *__pyx_r;
|
|
3492
3492
|
|
|
3493
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3493
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":346
|
|
3494
3494
|
* Can return NULL for 0-dimensional arrays.
|
|
3495
3495
|
* """
|
|
3496
3496
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3500,7 +3500,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3500
3500
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
3501
3501
|
goto __pyx_L0;
|
|
3502
3502
|
|
|
3503
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3503
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":340
|
|
3504
3504
|
* return PyArray_NDIM(self)
|
|
3505
3505
|
*
|
|
3506
3506
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3513,7 +3513,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3513
3513
|
return __pyx_r;
|
|
3514
3514
|
}
|
|
3515
3515
|
|
|
3516
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3516
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":348
|
|
3517
3517
|
* return PyArray_DIMS(self)
|
|
3518
3518
|
*
|
|
3519
3519
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3524,7 +3524,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3524
3524
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
3525
3525
|
npy_intp *__pyx_r;
|
|
3526
3526
|
|
|
3527
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3527
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":353
|
|
3528
3528
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
3529
3529
|
* """
|
|
3530
3530
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -3534,7 +3534,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3534
3534
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
3535
3535
|
goto __pyx_L0;
|
|
3536
3536
|
|
|
3537
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3537
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":348
|
|
3538
3538
|
* return PyArray_DIMS(self)
|
|
3539
3539
|
*
|
|
3540
3540
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3547,7 +3547,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3547
3547
|
return __pyx_r;
|
|
3548
3548
|
}
|
|
3549
3549
|
|
|
3550
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3550
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":355
|
|
3551
3551
|
* return PyArray_STRIDES(self)
|
|
3552
3552
|
*
|
|
3553
3553
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3558,7 +3558,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3558
3558
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
3559
3559
|
npy_intp __pyx_r;
|
|
3560
3560
|
|
|
3561
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3561
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":359
|
|
3562
3562
|
* """Returns the total size (in number of elements) of the array.
|
|
3563
3563
|
* """
|
|
3564
3564
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3568,7 +3568,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3568
3568
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
3569
3569
|
goto __pyx_L0;
|
|
3570
3570
|
|
|
3571
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3571
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":355
|
|
3572
3572
|
* return PyArray_STRIDES(self)
|
|
3573
3573
|
*
|
|
3574
3574
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3581,7 +3581,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3581
3581
|
return __pyx_r;
|
|
3582
3582
|
}
|
|
3583
3583
|
|
|
3584
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3584
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":361
|
|
3585
3585
|
* return PyArray_SIZE(self)
|
|
3586
3586
|
*
|
|
3587
3587
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3592,7 +3592,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3592
3592
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
3593
3593
|
char *__pyx_r;
|
|
3594
3594
|
|
|
3595
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3595
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":368
|
|
3596
3596
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
3597
3597
|
* """
|
|
3598
3598
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -3602,7 +3602,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3602
3602
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
3603
3603
|
goto __pyx_L0;
|
|
3604
3604
|
|
|
3605
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3605
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":361
|
|
3606
3606
|
* return PyArray_SIZE(self)
|
|
3607
3607
|
*
|
|
3608
3608
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3615,7 +3615,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3615
3615
|
return __pyx_r;
|
|
3616
3616
|
}
|
|
3617
3617
|
|
|
3618
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3618
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
|
|
3619
3619
|
* ctypedef long double complex clongdouble_t
|
|
3620
3620
|
*
|
|
3621
3621
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3632,7 +3632,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3632
3632
|
int __pyx_clineno = 0;
|
|
3633
3633
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
|
3634
3634
|
|
|
3635
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3635
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
3636
3636
|
*
|
|
3637
3637
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
3638
3638
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -3646,7 +3646,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3646
3646
|
__pyx_t_1 = 0;
|
|
3647
3647
|
goto __pyx_L0;
|
|
3648
3648
|
|
|
3649
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3649
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
|
|
3650
3650
|
* ctypedef long double complex clongdouble_t
|
|
3651
3651
|
*
|
|
3652
3652
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3665,7 +3665,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3665
3665
|
return __pyx_r;
|
|
3666
3666
|
}
|
|
3667
3667
|
|
|
3668
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3668
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
3669
3669
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3670
3670
|
*
|
|
3671
3671
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3682,7 +3682,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3682
3682
|
int __pyx_clineno = 0;
|
|
3683
3683
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
|
3684
3684
|
|
|
3685
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3685
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
3686
3686
|
*
|
|
3687
3687
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
3688
3688
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -3696,7 +3696,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3696
3696
|
__pyx_t_1 = 0;
|
|
3697
3697
|
goto __pyx_L0;
|
|
3698
3698
|
|
|
3699
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3699
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
3700
3700
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3701
3701
|
*
|
|
3702
3702
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3715,7 +3715,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3715
3715
|
return __pyx_r;
|
|
3716
3716
|
}
|
|
3717
3717
|
|
|
3718
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3718
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
|
|
3719
3719
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3720
3720
|
*
|
|
3721
3721
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3732,7 +3732,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3732
3732
|
int __pyx_clineno = 0;
|
|
3733
3733
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
|
3734
3734
|
|
|
3735
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3735
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
3736
3736
|
*
|
|
3737
3737
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
3738
3738
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -3746,7 +3746,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3746
3746
|
__pyx_t_1 = 0;
|
|
3747
3747
|
goto __pyx_L0;
|
|
3748
3748
|
|
|
3749
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3749
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
|
|
3750
3750
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3751
3751
|
*
|
|
3752
3752
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3765,7 +3765,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3765
3765
|
return __pyx_r;
|
|
3766
3766
|
}
|
|
3767
3767
|
|
|
3768
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3768
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
3769
3769
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3770
3770
|
*
|
|
3771
3771
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3782,7 +3782,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3782
3782
|
int __pyx_clineno = 0;
|
|
3783
3783
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
|
3784
3784
|
|
|
3785
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3785
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
3786
3786
|
*
|
|
3787
3787
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
3788
3788
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -3796,7 +3796,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3796
3796
|
__pyx_t_1 = 0;
|
|
3797
3797
|
goto __pyx_L0;
|
|
3798
3798
|
|
|
3799
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3799
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
3800
3800
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3801
3801
|
*
|
|
3802
3802
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3815,7 +3815,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3815
3815
|
return __pyx_r;
|
|
3816
3816
|
}
|
|
3817
3817
|
|
|
3818
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3818
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
|
|
3819
3819
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3820
3820
|
*
|
|
3821
3821
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -3832,7 +3832,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3832
3832
|
int __pyx_clineno = 0;
|
|
3833
3833
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
|
3834
3834
|
|
|
3835
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3835
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
3836
3836
|
*
|
|
3837
3837
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
3838
3838
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -3846,7 +3846,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3846
3846
|
__pyx_t_1 = 0;
|
|
3847
3847
|
goto __pyx_L0;
|
|
3848
3848
|
|
|
3849
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3849
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
|
|
3850
3850
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3851
3851
|
*
|
|
3852
3852
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -3865,7 +3865,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3865
3865
|
return __pyx_r;
|
|
3866
3866
|
}
|
|
3867
3867
|
|
|
3868
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3868
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
|
|
3869
3869
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
3870
3870
|
*
|
|
3871
3871
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -3880,7 +3880,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3880
3880
|
PyObject *__pyx_t_2;
|
|
3881
3881
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
|
3882
3882
|
|
|
3883
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3883
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
3884
3884
|
*
|
|
3885
3885
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3886
3886
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -3890,7 +3890,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3890
3890
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
3891
3891
|
if (__pyx_t_1) {
|
|
3892
3892
|
|
|
3893
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3893
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
3894
3894
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3895
3895
|
* if PyDataType_HASSUBARRAY(d):
|
|
3896
3896
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -3903,7 +3903,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3903
3903
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
|
3904
3904
|
goto __pyx_L0;
|
|
3905
3905
|
|
|
3906
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3906
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
3907
3907
|
*
|
|
3908
3908
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3909
3909
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -3912,7 +3912,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3912
3912
|
*/
|
|
3913
3913
|
}
|
|
3914
3914
|
|
|
3915
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3915
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
|
|
3916
3916
|
* return <tuple>d.subarray.shape
|
|
3917
3917
|
* else:
|
|
3918
3918
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -3926,7 +3926,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3926
3926
|
goto __pyx_L0;
|
|
3927
3927
|
}
|
|
3928
3928
|
|
|
3929
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3929
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
|
|
3930
3930
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
3931
3931
|
*
|
|
3932
3932
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -3941,7 +3941,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3941
3941
|
return __pyx_r;
|
|
3942
3942
|
}
|
|
3943
3943
|
|
|
3944
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3944
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
|
|
3945
3945
|
* int _import_umath() except -1
|
|
3946
3946
|
*
|
|
3947
3947
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -3955,7 +3955,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3955
3955
|
const char *__pyx_filename = NULL;
|
|
3956
3956
|
int __pyx_clineno = 0;
|
|
3957
3957
|
|
|
3958
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3958
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
3959
3959
|
*
|
|
3960
3960
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
3961
3961
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -3964,7 +3964,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3964
3964
|
*/
|
|
3965
3965
|
Py_INCREF(__pyx_v_base);
|
|
3966
3966
|
|
|
3967
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3967
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
3968
3968
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
3969
3969
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
3970
3970
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -3973,7 +3973,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3973
3973
|
*/
|
|
3974
3974
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 996, __pyx_L1_error)
|
|
3975
3975
|
|
|
3976
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3976
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
|
|
3977
3977
|
* int _import_umath() except -1
|
|
3978
3978
|
*
|
|
3979
3979
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -3988,7 +3988,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3988
3988
|
__pyx_L0:;
|
|
3989
3989
|
}
|
|
3990
3990
|
|
|
3991
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3991
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
|
|
3992
3992
|
* PyArray_SetBaseObject(arr, base)
|
|
3993
3993
|
*
|
|
3994
3994
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -4003,7 +4003,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4003
4003
|
int __pyx_t_1;
|
|
4004
4004
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
|
4005
4005
|
|
|
4006
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4006
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
4007
4007
|
*
|
|
4008
4008
|
* cdef inline object get_array_base(ndarray arr):
|
|
4009
4009
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -4012,7 +4012,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4012
4012
|
*/
|
|
4013
4013
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
4014
4014
|
|
|
4015
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4015
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1000
|
|
4016
4016
|
* cdef inline object get_array_base(ndarray arr):
|
|
4017
4017
|
* base = PyArray_BASE(arr)
|
|
4018
4018
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -4022,7 +4022,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4022
4022
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
4023
4023
|
if (__pyx_t_1) {
|
|
4024
4024
|
|
|
4025
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4025
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
4026
4026
|
* base = PyArray_BASE(arr)
|
|
4027
4027
|
* if base is NULL:
|
|
4028
4028
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -4033,7 +4033,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4033
4033
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
4034
4034
|
goto __pyx_L0;
|
|
4035
4035
|
|
|
4036
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4036
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1000
|
|
4037
4037
|
* cdef inline object get_array_base(ndarray arr):
|
|
4038
4038
|
* base = PyArray_BASE(arr)
|
|
4039
4039
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -4042,7 +4042,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4042
4042
|
*/
|
|
4043
4043
|
}
|
|
4044
4044
|
|
|
4045
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4045
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
4046
4046
|
* if base is NULL:
|
|
4047
4047
|
* return None
|
|
4048
4048
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -4054,7 +4054,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4054
4054
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
4055
4055
|
goto __pyx_L0;
|
|
4056
4056
|
|
|
4057
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4057
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
|
|
4058
4058
|
* PyArray_SetBaseObject(arr, base)
|
|
4059
4059
|
*
|
|
4060
4060
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -4069,7 +4069,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4069
4069
|
return __pyx_r;
|
|
4070
4070
|
}
|
|
4071
4071
|
|
|
4072
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4072
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1006
|
|
4073
4073
|
* # Versions of the import_* functions which are more suitable for
|
|
4074
4074
|
* # Cython code.
|
|
4075
4075
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4096,7 +4096,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4096
4096
|
int __pyx_clineno = 0;
|
|
4097
4097
|
__Pyx_RefNannySetupContext("import_array", 0);
|
|
4098
4098
|
|
|
4099
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4099
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1007
|
|
4100
4100
|
* # Cython code.
|
|
4101
4101
|
* cdef inline int import_array() except -1:
|
|
4102
4102
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4112,7 +4112,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4112
4112
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4113
4113
|
/*try:*/ {
|
|
4114
4114
|
|
|
4115
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4115
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1008
|
|
4116
4116
|
* cdef inline int import_array() except -1:
|
|
4117
4117
|
* try:
|
|
4118
4118
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -4121,7 +4121,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4121
4121
|
*/
|
|
4122
4122
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1008, __pyx_L3_error)
|
|
4123
4123
|
|
|
4124
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4124
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1007
|
|
4125
4125
|
* # Cython code.
|
|
4126
4126
|
* cdef inline int import_array() except -1:
|
|
4127
4127
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4135,7 +4135,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4135
4135
|
goto __pyx_L8_try_end;
|
|
4136
4136
|
__pyx_L3_error:;
|
|
4137
4137
|
|
|
4138
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4138
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1009
|
|
4139
4139
|
* try:
|
|
4140
4140
|
* __pyx_import_array()
|
|
4141
4141
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4150,7 +4150,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4150
4150
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4151
4151
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4152
4152
|
|
|
4153
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4153
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
4154
4154
|
* __pyx_import_array()
|
|
4155
4155
|
* except Exception:
|
|
4156
4156
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4175,7 +4175,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4175
4175
|
}
|
|
4176
4176
|
goto __pyx_L5_except_error;
|
|
4177
4177
|
|
|
4178
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4178
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1007
|
|
4179
4179
|
* # Cython code.
|
|
4180
4180
|
* cdef inline int import_array() except -1:
|
|
4181
4181
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4191,7 +4191,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4191
4191
|
__pyx_L8_try_end:;
|
|
4192
4192
|
}
|
|
4193
4193
|
|
|
4194
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4194
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1006
|
|
4195
4195
|
* # Versions of the import_* functions which are more suitable for
|
|
4196
4196
|
* # Cython code.
|
|
4197
4197
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4216,7 +4216,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4216
4216
|
return __pyx_r;
|
|
4217
4217
|
}
|
|
4218
4218
|
|
|
4219
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4219
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1012
|
|
4220
4220
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
4221
4221
|
*
|
|
4222
4222
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4243,7 +4243,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4243
4243
|
int __pyx_clineno = 0;
|
|
4244
4244
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
|
4245
4245
|
|
|
4246
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4246
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
4247
4247
|
*
|
|
4248
4248
|
* cdef inline int import_umath() except -1:
|
|
4249
4249
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4259,7 +4259,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4259
4259
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4260
4260
|
/*try:*/ {
|
|
4261
4261
|
|
|
4262
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4262
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4263
4263
|
* cdef inline int import_umath() except -1:
|
|
4264
4264
|
* try:
|
|
4265
4265
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4268,7 +4268,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4268
4268
|
*/
|
|
4269
4269
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1014, __pyx_L3_error)
|
|
4270
4270
|
|
|
4271
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4271
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
4272
4272
|
*
|
|
4273
4273
|
* cdef inline int import_umath() except -1:
|
|
4274
4274
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4282,7 +4282,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4282
4282
|
goto __pyx_L8_try_end;
|
|
4283
4283
|
__pyx_L3_error:;
|
|
4284
4284
|
|
|
4285
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4285
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1015
|
|
4286
4286
|
* try:
|
|
4287
4287
|
* _import_umath()
|
|
4288
4288
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4297,7 +4297,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4297
4297
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4298
4298
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4299
4299
|
|
|
4300
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4300
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
4301
4301
|
* _import_umath()
|
|
4302
4302
|
* except Exception:
|
|
4303
4303
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4322,7 +4322,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4322
4322
|
}
|
|
4323
4323
|
goto __pyx_L5_except_error;
|
|
4324
4324
|
|
|
4325
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4325
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
4326
4326
|
*
|
|
4327
4327
|
* cdef inline int import_umath() except -1:
|
|
4328
4328
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4338,7 +4338,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4338
4338
|
__pyx_L8_try_end:;
|
|
4339
4339
|
}
|
|
4340
4340
|
|
|
4341
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4341
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1012
|
|
4342
4342
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
4343
4343
|
*
|
|
4344
4344
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4363,7 +4363,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4363
4363
|
return __pyx_r;
|
|
4364
4364
|
}
|
|
4365
4365
|
|
|
4366
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4366
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1018
|
|
4367
4367
|
* raise ImportError("numpy._core.umath failed to import")
|
|
4368
4368
|
*
|
|
4369
4369
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4390,7 +4390,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4390
4390
|
int __pyx_clineno = 0;
|
|
4391
4391
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
|
4392
4392
|
|
|
4393
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4393
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1019
|
|
4394
4394
|
*
|
|
4395
4395
|
* cdef inline int import_ufunc() except -1:
|
|
4396
4396
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4406,7 +4406,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4406
4406
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4407
4407
|
/*try:*/ {
|
|
4408
4408
|
|
|
4409
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4409
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1020
|
|
4410
4410
|
* cdef inline int import_ufunc() except -1:
|
|
4411
4411
|
* try:
|
|
4412
4412
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4415,7 +4415,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4415
4415
|
*/
|
|
4416
4416
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1020, __pyx_L3_error)
|
|
4417
4417
|
|
|
4418
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4418
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1019
|
|
4419
4419
|
*
|
|
4420
4420
|
* cdef inline int import_ufunc() except -1:
|
|
4421
4421
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4429,7 +4429,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4429
4429
|
goto __pyx_L8_try_end;
|
|
4430
4430
|
__pyx_L3_error:;
|
|
4431
4431
|
|
|
4432
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4432
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1021
|
|
4433
4433
|
* try:
|
|
4434
4434
|
* _import_umath()
|
|
4435
4435
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4444,7 +4444,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4444
4444
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4445
4445
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4446
4446
|
|
|
4447
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4447
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
4448
4448
|
* _import_umath()
|
|
4449
4449
|
* except Exception:
|
|
4450
4450
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4469,7 +4469,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4469
4469
|
}
|
|
4470
4470
|
goto __pyx_L5_except_error;
|
|
4471
4471
|
|
|
4472
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4472
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1019
|
|
4473
4473
|
*
|
|
4474
4474
|
* cdef inline int import_ufunc() except -1:
|
|
4475
4475
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4485,7 +4485,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4485
4485
|
__pyx_L8_try_end:;
|
|
4486
4486
|
}
|
|
4487
4487
|
|
|
4488
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4488
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1018
|
|
4489
4489
|
* raise ImportError("numpy._core.umath failed to import")
|
|
4490
4490
|
*
|
|
4491
4491
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4510,7 +4510,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4510
4510
|
return __pyx_r;
|
|
4511
4511
|
}
|
|
4512
4512
|
|
|
4513
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4513
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1025
|
|
4514
4514
|
*
|
|
4515
4515
|
*
|
|
4516
4516
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4521,7 +4521,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4521
4521
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
4522
4522
|
int __pyx_r;
|
|
4523
4523
|
|
|
4524
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4524
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1037
|
|
4525
4525
|
* bool
|
|
4526
4526
|
* """
|
|
4527
4527
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4531,7 +4531,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4531
4531
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
4532
4532
|
goto __pyx_L0;
|
|
4533
4533
|
|
|
4534
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4534
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1025
|
|
4535
4535
|
*
|
|
4536
4536
|
*
|
|
4537
4537
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4544,7 +4544,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4544
4544
|
return __pyx_r;
|
|
4545
4545
|
}
|
|
4546
4546
|
|
|
4547
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4547
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1040
|
|
4548
4548
|
*
|
|
4549
4549
|
*
|
|
4550
4550
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4555,7 +4555,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4555
4555
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
4556
4556
|
int __pyx_r;
|
|
4557
4557
|
|
|
4558
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4558
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
|
|
4559
4559
|
* bool
|
|
4560
4560
|
* """
|
|
4561
4561
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4565,7 +4565,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4565
4565
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
4566
4566
|
goto __pyx_L0;
|
|
4567
4567
|
|
|
4568
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4568
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1040
|
|
4569
4569
|
*
|
|
4570
4570
|
*
|
|
4571
4571
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4578,7 +4578,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4578
4578
|
return __pyx_r;
|
|
4579
4579
|
}
|
|
4580
4580
|
|
|
4581
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4581
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1055
|
|
4582
4582
|
*
|
|
4583
4583
|
*
|
|
4584
4584
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4589,7 +4589,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4589
4589
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
4590
4590
|
npy_datetime __pyx_r;
|
|
4591
4591
|
|
|
4592
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4592
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1062
|
|
4593
4593
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
4594
4594
|
* """
|
|
4595
4595
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4599,7 +4599,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4599
4599
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
4600
4600
|
goto __pyx_L0;
|
|
4601
4601
|
|
|
4602
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4602
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1055
|
|
4603
4603
|
*
|
|
4604
4604
|
*
|
|
4605
4605
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4612,7 +4612,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4612
4612
|
return __pyx_r;
|
|
4613
4613
|
}
|
|
4614
4614
|
|
|
4615
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4615
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1065
|
|
4616
4616
|
*
|
|
4617
4617
|
*
|
|
4618
4618
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4623,7 +4623,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4623
4623
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
4624
4624
|
npy_timedelta __pyx_r;
|
|
4625
4625
|
|
|
4626
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4626
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1069
|
|
4627
4627
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
4628
4628
|
* """
|
|
4629
4629
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4633,7 +4633,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4633
4633
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
4634
4634
|
goto __pyx_L0;
|
|
4635
4635
|
|
|
4636
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4636
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1065
|
|
4637
4637
|
*
|
|
4638
4638
|
*
|
|
4639
4639
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4646,7 +4646,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4646
4646
|
return __pyx_r;
|
|
4647
4647
|
}
|
|
4648
4648
|
|
|
4649
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4649
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1072
|
|
4650
4650
|
*
|
|
4651
4651
|
*
|
|
4652
4652
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4657,7 +4657,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4657
4657
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
4658
4658
|
NPY_DATETIMEUNIT __pyx_r;
|
|
4659
4659
|
|
|
4660
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4660
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1076
|
|
4661
4661
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
4662
4662
|
* """
|
|
4663
4663
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -4667,7 +4667,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
4667
4667
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
4668
4668
|
goto __pyx_L0;
|
|
4669
4669
|
|
|
4670
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4670
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-quwyv4g5/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1072
|
|
4671
4671
|
*
|
|
4672
4672
|
*
|
|
4673
4673
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4680,7 +4680,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
4680
4680
|
return __pyx_r;
|
|
4681
4681
|
}
|
|
4682
4682
|
|
|
4683
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
4683
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":5
|
|
4684
4684
|
* cimport numpy as cnp
|
|
4685
4685
|
*
|
|
4686
4686
|
* def get_weighted_diss(cnp.ndarray[double, ndim=2] diss, # <<<<<<<<<<<<<<
|
|
@@ -4728,39 +4728,39 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
4728
4728
|
{
|
|
4729
4729
|
PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_diss,&__pyx_mstate_global->__pyx_n_u_weights,0};
|
|
4730
4730
|
const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0;
|
|
4731
|
-
if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0,
|
|
4731
|
+
if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0, 5, __pyx_L3_error)
|
|
4732
4732
|
if (__pyx_kwds_len > 0) {
|
|
4733
4733
|
switch (__pyx_nargs) {
|
|
4734
4734
|
case 2:
|
|
4735
4735
|
values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
|
|
4736
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0,
|
|
4736
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 5, __pyx_L3_error)
|
|
4737
4737
|
CYTHON_FALLTHROUGH;
|
|
4738
4738
|
case 1:
|
|
4739
4739
|
values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
|
|
4740
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0,
|
|
4740
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 5, __pyx_L3_error)
|
|
4741
4741
|
CYTHON_FALLTHROUGH;
|
|
4742
4742
|
case 0: break;
|
|
4743
4743
|
default: goto __pyx_L5_argtuple_error;
|
|
4744
4744
|
}
|
|
4745
4745
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
4746
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "get_weighted_diss", 0) < 0) __PYX_ERR(0,
|
|
4746
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "get_weighted_diss", 0) < 0) __PYX_ERR(0, 5, __pyx_L3_error)
|
|
4747
4747
|
for (Py_ssize_t i = __pyx_nargs; i < 2; i++) {
|
|
4748
|
-
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("get_weighted_diss", 1, 2, 2, i); __PYX_ERR(0,
|
|
4748
|
+
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("get_weighted_diss", 1, 2, 2, i); __PYX_ERR(0, 5, __pyx_L3_error) }
|
|
4749
4749
|
}
|
|
4750
4750
|
} else if (unlikely(__pyx_nargs != 2)) {
|
|
4751
4751
|
goto __pyx_L5_argtuple_error;
|
|
4752
4752
|
} else {
|
|
4753
4753
|
values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
|
|
4754
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0,
|
|
4754
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 5, __pyx_L3_error)
|
|
4755
4755
|
values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
|
|
4756
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0,
|
|
4756
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 5, __pyx_L3_error)
|
|
4757
4757
|
}
|
|
4758
4758
|
__pyx_v_diss = ((PyArrayObject *)values[0]);
|
|
4759
4759
|
__pyx_v_weights = ((PyArrayObject *)values[1]);
|
|
4760
4760
|
}
|
|
4761
4761
|
goto __pyx_L6_skip;
|
|
4762
4762
|
__pyx_L5_argtuple_error:;
|
|
4763
|
-
__Pyx_RaiseArgtupleInvalid("get_weighted_diss", 1, 2, 2, __pyx_nargs); __PYX_ERR(0,
|
|
4763
|
+
__Pyx_RaiseArgtupleInvalid("get_weighted_diss", 1, 2, 2, __pyx_nargs); __PYX_ERR(0, 5, __pyx_L3_error)
|
|
4764
4764
|
__pyx_L6_skip:;
|
|
4765
4765
|
goto __pyx_L4_argument_unpacking_done;
|
|
4766
4766
|
__pyx_L3_error:;
|
|
@@ -4771,8 +4771,8 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
4771
4771
|
__Pyx_RefNannyFinishContext();
|
|
4772
4772
|
return NULL;
|
|
4773
4773
|
__pyx_L4_argument_unpacking_done:;
|
|
4774
|
-
if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_diss), __pyx_mstate_global->__pyx_ptype_5numpy_ndarray, 1, "diss", 0))) __PYX_ERR(0,
|
|
4775
|
-
if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_weights), __pyx_mstate_global->__pyx_ptype_5numpy_ndarray, 1, "weights", 0))) __PYX_ERR(0,
|
|
4774
|
+
if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_diss), __pyx_mstate_global->__pyx_ptype_5numpy_ndarray, 1, "diss", 0))) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
4775
|
+
if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_weights), __pyx_mstate_global->__pyx_ptype_5numpy_ndarray, 1, "weights", 0))) __PYX_ERR(0, 6, __pyx_L1_error)
|
|
4776
4776
|
__pyx_r = __pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_get_weighted_diss(__pyx_self, __pyx_v_diss, __pyx_v_weights);
|
|
4777
4777
|
|
|
4778
4778
|
/* function exit code */
|
|
@@ -4828,16 +4828,16 @@ static PyObject *__pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_
|
|
|
4828
4828
|
__pyx_pybuffernd_weights.rcbuffer = &__pyx_pybuffer_weights;
|
|
4829
4829
|
{
|
|
4830
4830
|
__Pyx_BufFmt_StackElem __pyx_stack[1];
|
|
4831
|
-
if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_diss.rcbuffer->pybuffer, (PyObject*)__pyx_v_diss, &__Pyx_TypeInfo_double, PyBUF_FORMAT| PyBUF_STRIDES| PyBUF_WRITABLE, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0,
|
|
4831
|
+
if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_diss.rcbuffer->pybuffer, (PyObject*)__pyx_v_diss, &__Pyx_TypeInfo_double, PyBUF_FORMAT| PyBUF_STRIDES| PyBUF_WRITABLE, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
4832
4832
|
}
|
|
4833
4833
|
__pyx_pybuffernd_diss.diminfo[0].strides = __pyx_pybuffernd_diss.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_diss.diminfo[0].shape = __pyx_pybuffernd_diss.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_diss.diminfo[1].strides = __pyx_pybuffernd_diss.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_diss.diminfo[1].shape = __pyx_pybuffernd_diss.rcbuffer->pybuffer.shape[1];
|
|
4834
4834
|
{
|
|
4835
4835
|
__Pyx_BufFmt_StackElem __pyx_stack[1];
|
|
4836
|
-
if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_weights.rcbuffer->pybuffer, (PyObject*)__pyx_v_weights, &__Pyx_TypeInfo_double, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) __PYX_ERR(0,
|
|
4836
|
+
if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_weights.rcbuffer->pybuffer, (PyObject*)__pyx_v_weights, &__Pyx_TypeInfo_double, PyBUF_FORMAT| PyBUF_STRIDES, 1, 0, __pyx_stack) == -1)) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
4837
4837
|
}
|
|
4838
4838
|
__pyx_pybuffernd_weights.diminfo[0].strides = __pyx_pybuffernd_weights.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_weights.diminfo[0].shape = __pyx_pybuffernd_weights.rcbuffer->pybuffer.shape[0];
|
|
4839
4839
|
|
|
4840
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
4840
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":7
|
|
4841
4841
|
* def get_weighted_diss(cnp.ndarray[double, ndim=2] diss,
|
|
4842
4842
|
* cnp.ndarray[double, ndim=1] weights):
|
|
4843
4843
|
* cdef int n = weights.shape[0] # <<<<<<<<<<<<<<
|
|
@@ -4846,7 +4846,7 @@ static PyObject *__pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_
|
|
|
4846
4846
|
*/
|
|
4847
4847
|
__pyx_v_n = (__pyx_f_5numpy_7ndarray_5shape_shape(((PyArrayObject *)__pyx_v_weights))[0]);
|
|
4848
4848
|
|
|
4849
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
4849
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":11
|
|
4850
4850
|
* cdef double factor
|
|
4851
4851
|
*
|
|
4852
4852
|
* for i in range(n): # <<<<<<<<<<<<<<
|
|
@@ -4858,7 +4858,7 @@ static PyObject *__pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_
|
|
|
4858
4858
|
for (__pyx_t_3 = 0; __pyx_t_3 < __pyx_t_2; __pyx_t_3+=1) {
|
|
4859
4859
|
__pyx_v_i = __pyx_t_3;
|
|
4860
4860
|
|
|
4861
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
4861
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":12
|
|
4862
4862
|
*
|
|
4863
4863
|
* for i in range(n):
|
|
4864
4864
|
* for j in range(i + 1, n): # <<<<<<<<<<<<<<
|
|
@@ -4870,7 +4870,7 @@ static PyObject *__pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_
|
|
|
4870
4870
|
for (__pyx_t_6 = (__pyx_v_i + 1); __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) {
|
|
4871
4871
|
__pyx_v_j = __pyx_t_6;
|
|
4872
4872
|
|
|
4873
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
4873
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":13
|
|
4874
4874
|
* for i in range(n):
|
|
4875
4875
|
* for j in range(i + 1, n):
|
|
4876
4876
|
* factor = (weights[i] * weights[j]) ** 0.5 # <<<<<<<<<<<<<<
|
|
@@ -4885,7 +4885,7 @@ static PyObject *__pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_
|
|
|
4885
4885
|
} else if (unlikely(__pyx_t_7 >= __pyx_pybuffernd_weights.diminfo[0].shape)) __pyx_t_8 = 0;
|
|
4886
4886
|
if (unlikely(__pyx_t_8 != -1)) {
|
|
4887
4887
|
__Pyx_RaiseBufferIndexError(__pyx_t_8);
|
|
4888
|
-
__PYX_ERR(0,
|
|
4888
|
+
__PYX_ERR(0, 13, __pyx_L1_error)
|
|
4889
4889
|
}
|
|
4890
4890
|
__pyx_t_9 = __pyx_v_j;
|
|
4891
4891
|
__pyx_t_8 = -1;
|
|
@@ -4895,11 +4895,11 @@ static PyObject *__pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_
|
|
|
4895
4895
|
} else if (unlikely(__pyx_t_9 >= __pyx_pybuffernd_weights.diminfo[0].shape)) __pyx_t_8 = 0;
|
|
4896
4896
|
if (unlikely(__pyx_t_8 != -1)) {
|
|
4897
4897
|
__Pyx_RaiseBufferIndexError(__pyx_t_8);
|
|
4898
|
-
__PYX_ERR(0,
|
|
4898
|
+
__PYX_ERR(0, 13, __pyx_L1_error)
|
|
4899
4899
|
}
|
|
4900
4900
|
__pyx_v_factor = pow(((*__Pyx_BufPtrStrided1d(double *, __pyx_pybuffernd_weights.rcbuffer->pybuffer.buf, __pyx_t_7, __pyx_pybuffernd_weights.diminfo[0].strides)) * (*__Pyx_BufPtrStrided1d(double *, __pyx_pybuffernd_weights.rcbuffer->pybuffer.buf, __pyx_t_9, __pyx_pybuffernd_weights.diminfo[0].strides))), 0.5);
|
|
4901
4901
|
|
|
4902
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
4902
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":14
|
|
4903
4903
|
* for j in range(i + 1, n):
|
|
4904
4904
|
* factor = (weights[i] * weights[j]) ** 0.5
|
|
4905
4905
|
* diss[i, j] *= factor # <<<<<<<<<<<<<<
|
|
@@ -4919,11 +4919,11 @@ static PyObject *__pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_
|
|
|
4919
4919
|
} else if (unlikely(__pyx_t_7 >= __pyx_pybuffernd_diss.diminfo[1].shape)) __pyx_t_8 = 1;
|
|
4920
4920
|
if (unlikely(__pyx_t_8 != -1)) {
|
|
4921
4921
|
__Pyx_RaiseBufferIndexError(__pyx_t_8);
|
|
4922
|
-
__PYX_ERR(0,
|
|
4922
|
+
__PYX_ERR(0, 14, __pyx_L1_error)
|
|
4923
4923
|
}
|
|
4924
4924
|
*__Pyx_BufPtrStrided2d(double *, __pyx_pybuffernd_diss.rcbuffer->pybuffer.buf, __pyx_t_9, __pyx_pybuffernd_diss.diminfo[0].strides, __pyx_t_7, __pyx_pybuffernd_diss.diminfo[1].strides) *= __pyx_v_factor;
|
|
4925
4925
|
|
|
4926
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
4926
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":15
|
|
4927
4927
|
* factor = (weights[i] * weights[j]) ** 0.5
|
|
4928
4928
|
* diss[i, j] *= factor
|
|
4929
4929
|
* diss[j, i] = diss[i, j] # <<<<<<<<<<<<<<
|
|
@@ -4943,7 +4943,7 @@ static PyObject *__pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_
|
|
|
4943
4943
|
} else if (unlikely(__pyx_t_9 >= __pyx_pybuffernd_diss.diminfo[1].shape)) __pyx_t_8 = 1;
|
|
4944
4944
|
if (unlikely(__pyx_t_8 != -1)) {
|
|
4945
4945
|
__Pyx_RaiseBufferIndexError(__pyx_t_8);
|
|
4946
|
-
__PYX_ERR(0,
|
|
4946
|
+
__PYX_ERR(0, 15, __pyx_L1_error)
|
|
4947
4947
|
}
|
|
4948
4948
|
__pyx_t_10 = __pyx_v_j;
|
|
4949
4949
|
__pyx_t_11 = __pyx_v_i;
|
|
@@ -4958,13 +4958,13 @@ static PyObject *__pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_
|
|
|
4958
4958
|
} else if (unlikely(__pyx_t_11 >= __pyx_pybuffernd_diss.diminfo[1].shape)) __pyx_t_8 = 1;
|
|
4959
4959
|
if (unlikely(__pyx_t_8 != -1)) {
|
|
4960
4960
|
__Pyx_RaiseBufferIndexError(__pyx_t_8);
|
|
4961
|
-
__PYX_ERR(0,
|
|
4961
|
+
__PYX_ERR(0, 15, __pyx_L1_error)
|
|
4962
4962
|
}
|
|
4963
4963
|
*__Pyx_BufPtrStrided2d(double *, __pyx_pybuffernd_diss.rcbuffer->pybuffer.buf, __pyx_t_10, __pyx_pybuffernd_diss.diminfo[0].strides, __pyx_t_11, __pyx_pybuffernd_diss.diminfo[1].strides) = (*__Pyx_BufPtrStrided2d(double *, __pyx_pybuffernd_diss.rcbuffer->pybuffer.buf, __pyx_t_7, __pyx_pybuffernd_diss.diminfo[0].strides, __pyx_t_9, __pyx_pybuffernd_diss.diminfo[1].strides));
|
|
4964
4964
|
}
|
|
4965
4965
|
}
|
|
4966
4966
|
|
|
4967
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
4967
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":17
|
|
4968
4968
|
* diss[j, i] = diss[i, j]
|
|
4969
4969
|
*
|
|
4970
4970
|
* return diss # <<<<<<<<<<<<<<
|
|
@@ -4974,7 +4974,7 @@ static PyObject *__pyx_pf_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_
|
|
|
4974
4974
|
__pyx_r = ((PyObject *)__pyx_v_diss);
|
|
4975
4975
|
goto __pyx_L0;
|
|
4976
4976
|
|
|
4977
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
4977
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":5
|
|
4978
4978
|
* cimport numpy as cnp
|
|
4979
4979
|
*
|
|
4980
4980
|
* def get_weighted_diss(cnp.ndarray[double, ndim=2] diss, # <<<<<<<<<<<<<<
|
|
@@ -5525,32 +5525,33 @@ __Pyx_RefNannySetupContext("PyInit_get_weighted_diss", 0);
|
|
|
5525
5525
|
(void)__Pyx_modinit_function_import_code(__pyx_mstate);
|
|
5526
5526
|
/*--- Execution code ---*/
|
|
5527
5527
|
|
|
5528
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
5528
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":2
|
|
5529
|
+
* # cython: np_import_array=True
|
|
5529
5530
|
* import numpy as np # <<<<<<<<<<<<<<
|
|
5530
5531
|
* cimport numpy as cnp
|
|
5531
5532
|
*
|
|
5532
5533
|
*/
|
|
5533
|
-
__pyx_t_2 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
|
5534
|
+
__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)
|
|
5534
5535
|
__Pyx_GOTREF(__pyx_t_2);
|
|
5535
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_2) < 0) __PYX_ERR(0,
|
|
5536
|
+
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)
|
|
5536
5537
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
5537
5538
|
|
|
5538
|
-
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":
|
|
5539
|
+
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":5
|
|
5539
5540
|
* cimport numpy as cnp
|
|
5540
5541
|
*
|
|
5541
5542
|
* def get_weighted_diss(cnp.ndarray[double, ndim=2] diss, # <<<<<<<<<<<<<<
|
|
5542
5543
|
* cnp.ndarray[double, ndim=1] weights):
|
|
5543
5544
|
* cdef int n = weights.shape[0]
|
|
5544
5545
|
*/
|
|
5545
|
-
__pyx_t_2 = __Pyx_CyFunction_New(&__pyx_mdef_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_1get_weighted_diss, 0, __pyx_mstate_global->__pyx_n_u_get_weighted_diss, NULL, __pyx_mstate_global->__pyx_n_u_sequenzo_big_data_clara_utils_ge, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
|
5546
|
+
__pyx_t_2 = __Pyx_CyFunction_New(&__pyx_mdef_8sequenzo_8big_data_5clara_5utils_17get_weighted_diss_1get_weighted_diss, 0, __pyx_mstate_global->__pyx_n_u_get_weighted_diss, NULL, __pyx_mstate_global->__pyx_n_u_sequenzo_big_data_clara_utils_ge, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[0])); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
5546
5547
|
__Pyx_GOTREF(__pyx_t_2);
|
|
5547
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_get_weighted_diss, __pyx_t_2) < 0) __PYX_ERR(0,
|
|
5548
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_get_weighted_diss, __pyx_t_2) < 0) __PYX_ERR(0, 5, __pyx_L1_error)
|
|
5548
5549
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
5549
5550
|
|
|
5550
5551
|
/* "sequenzo/big_data/clara/utils/get_weighted_diss.pyx":1
|
|
5551
|
-
*
|
|
5552
|
+
* # cython: np_import_array=True # <<<<<<<<<<<<<<
|
|
5553
|
+
* import numpy as np
|
|
5552
5554
|
* cimport numpy as cnp
|
|
5553
|
-
*
|
|
5554
5555
|
*/
|
|
5555
5556
|
__pyx_t_2 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
5556
5557
|
__Pyx_GOTREF(__pyx_t_2);
|
|
@@ -5655,7 +5656,7 @@ static int __Pyx_InitStrings(__Pyx_StringTabEntry const *t, PyObject **target, c
|
|
|
5655
5656
|
|
|
5656
5657
|
static int __Pyx_InitCachedBuiltins(__pyx_mstatetype *__pyx_mstate) {
|
|
5657
5658
|
CYTHON_UNUSED_VAR(__pyx_mstate);
|
|
5658
|
-
__pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_range); if (!__pyx_builtin_range) __PYX_ERR(0,
|
|
5659
|
+
__pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_range); if (!__pyx_builtin_range) __PYX_ERR(0, 11, __pyx_L1_error)
|
|
5659
5660
|
__pyx_builtin_ImportError = __Pyx_GetBuiltinName(__pyx_mstate->__pyx_n_u_ImportError); if (!__pyx_builtin_ImportError) __PYX_ERR(1, 1010, __pyx_L1_error)
|
|
5660
5661
|
return 0;
|
|
5661
5662
|
__pyx_L1_error:;
|
|
@@ -5707,7 +5708,7 @@ static int __Pyx_CreateCodeObjects(__pyx_mstatetype *__pyx_mstate) {
|
|
|
5707
5708
|
PyObject* tuple_dedup_map = PyDict_New();
|
|
5708
5709
|
if (unlikely(!tuple_dedup_map)) return -1;
|
|
5709
5710
|
{
|
|
5710
|
-
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 6, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS),
|
|
5711
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 6, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 5, 97};
|
|
5711
5712
|
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_diss, __pyx_mstate->__pyx_n_u_weights, __pyx_mstate->__pyx_n_u_n, __pyx_mstate->__pyx_n_u_i, __pyx_mstate->__pyx_n_u_j, __pyx_mstate->__pyx_n_u_factor};
|
|
5712
5713
|
__pyx_mstate_global->__pyx_codeobj_tab[0] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_sequenzo_big_data_clara_utils_ge_2, __pyx_mstate->__pyx_n_u_get_weighted_diss, __pyx_k_aq_U_1_E_ar_3a_gQc_7_4s_F_E_Qc, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[0])) goto bad;
|
|
5713
5714
|
}
|