sequenzo 0.1.17__cp39-cp39-win_amd64.whl → 0.1.18__cp39-cp39-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of sequenzo might be problematic. Click here for more details.
- sequenzo/__init__.py +25 -1
- sequenzo/big_data/clara/clara.py +1 -1
- sequenzo/big_data/clara/utils/get_weighted_diss.c +156 -156
- sequenzo/big_data/clara/utils/get_weighted_diss.cp39-win_amd64.pyd +0 -0
- sequenzo/clustering/clustering_c_code.cp39-win_amd64.pyd +0 -0
- sequenzo/clustering/hierarchical_clustering.py +202 -8
- sequenzo/define_sequence_data.py +34 -2
- sequenzo/dissimilarity_measures/c_code.cp39-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/get_substitution_cost_matrix.py +1 -1
- sequenzo/dissimilarity_measures/src/DHDdistance.cpp +13 -37
- sequenzo/dissimilarity_measures/src/LCPdistance.cpp +13 -37
- sequenzo/dissimilarity_measures/src/OMdistance.cpp +12 -47
- sequenzo/dissimilarity_measures/src/OMspellDistance.cpp +103 -67
- sequenzo/dissimilarity_measures/src/dp_utils.h +160 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/common/xsimd_common_arithmetic.hpp +41 -16
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/common/xsimd_common_complex.hpp +4 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/common/xsimd_common_details.hpp +7 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/common/xsimd_common_logical.hpp +10 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/common/xsimd_common_math.hpp +127 -43
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/common/xsimd_common_memory.hpp +30 -2
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/common/xsimd_common_swizzle.hpp +174 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/common/xsimd_common_trigo.hpp +14 -5
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_avx.hpp +111 -54
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_avx2.hpp +131 -9
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_avx512bw.hpp +11 -113
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_avx512dq.hpp +39 -7
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_avx512f.hpp +336 -30
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_avx512vbmi.hpp +9 -37
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_avx512vbmi2.hpp +58 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_common.hpp +1 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_common_fwd.hpp +35 -2
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_constants.hpp +3 -1
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_emulated.hpp +17 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_fma3_avx.hpp +13 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_fma3_sse.hpp +18 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_fma4.hpp +13 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_isa.hpp +8 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_neon.hpp +363 -34
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_neon64.hpp +7 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_rvv.hpp +13 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_scalar.hpp +41 -4
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_sse2.hpp +252 -16
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_sse3.hpp +9 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_ssse3.hpp +12 -1
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_sve.hpp +7 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_vsx.hpp +892 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/arch/xsimd_wasm.hpp +78 -1
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/config/xsimd_arch.hpp +3 -1
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/config/xsimd_config.hpp +13 -2
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/config/xsimd_cpuid.hpp +5 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/config/xsimd_inline.hpp +5 -1
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/types/xsimd_all_registers.hpp +2 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/types/xsimd_api.hpp +64 -1
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/types/xsimd_batch.hpp +36 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/types/xsimd_rvv_register.hpp +40 -31
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/types/xsimd_traits.hpp +8 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/types/xsimd_vsx_register.hpp +77 -0
- sequenzo/dissimilarity_measures/src/xsimd/include/xsimd/xsimd.hpp +6 -0
- sequenzo/dissimilarity_measures/src/xsimd/test/test_basic_math.cpp +6 -0
- sequenzo/dissimilarity_measures/src/xsimd/test/test_batch.cpp +54 -2
- sequenzo/dissimilarity_measures/src/xsimd/test/test_batch_bool.cpp +8 -0
- sequenzo/dissimilarity_measures/src/xsimd/test/test_batch_cast.cpp +11 -4
- sequenzo/dissimilarity_measures/src/xsimd/test/test_batch_complex.cpp +18 -0
- sequenzo/dissimilarity_measures/src/xsimd/test/test_batch_int.cpp +8 -14
- sequenzo/dissimilarity_measures/src/xsimd/test/test_batch_manip.cpp +216 -173
- sequenzo/dissimilarity_measures/src/xsimd/test/test_load_store.cpp +6 -0
- sequenzo/dissimilarity_measures/src/xsimd/test/test_memory.cpp +1 -1
- sequenzo/dissimilarity_measures/src/xsimd/test/test_power.cpp +7 -4
- sequenzo/dissimilarity_measures/src/xsimd/test/test_select.cpp +6 -2
- sequenzo/dissimilarity_measures/src/xsimd/test/test_shuffle.cpp +32 -18
- sequenzo/dissimilarity_measures/src/xsimd/test/test_utils.hpp +21 -24
- sequenzo/dissimilarity_measures/src/xsimd/test/test_xsimd_api.cpp +69 -9
- sequenzo/dissimilarity_measures/utils/get_sm_trate_substitution_cost_matrix.c +156 -156
- sequenzo/dissimilarity_measures/utils/get_sm_trate_substitution_cost_matrix.cp39-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqconc.c +156 -156
- sequenzo/dissimilarity_measures/utils/seqconc.cp39-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqdss.c +156 -156
- sequenzo/dissimilarity_measures/utils/seqdss.cp39-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqdur.c +156 -156
- sequenzo/dissimilarity_measures/utils/seqdur.cp39-win_amd64.pyd +0 -0
- sequenzo/dissimilarity_measures/utils/seqlength.c +156 -156
- sequenzo/dissimilarity_measures/utils/seqlength.cp39-win_amd64.pyd +0 -0
- sequenzo/sequence_characteristics/__init__.py +4 -0
- sequenzo/sequence_characteristics/complexity_index.py +17 -57
- sequenzo/sequence_characteristics/overall_cross_sectional_entropy.py +177 -111
- sequenzo/sequence_characteristics/plot_characteristics.py +30 -11
- sequenzo/sequence_characteristics/simple_characteristics.py +1 -0
- sequenzo/sequence_characteristics/state_frequencies_and_entropy_per_sequence.py +9 -3
- sequenzo/sequence_characteristics/turbulence.py +47 -67
- sequenzo/sequence_characteristics/variance_of_spell_durations.py +19 -9
- sequenzo/sequence_characteristics/within_sequence_entropy.py +5 -58
- sequenzo/visualization/plot_sequence_index.py +58 -35
- sequenzo/visualization/plot_state_distribution.py +57 -36
- sequenzo/with_event_history_analysis/__init__.py +35 -0
- sequenzo/with_event_history_analysis/sequence_analysis_multi_state_model.py +850 -0
- sequenzo/with_event_history_analysis/sequence_history_analysis.py +283 -0
- {sequenzo-0.1.17.dist-info → sequenzo-0.1.18.dist-info}/METADATA +7 -6
- {sequenzo-0.1.17.dist-info → sequenzo-0.1.18.dist-info}/RECORD +101 -94
- {sequenzo-0.1.17.dist-info → sequenzo-0.1.18.dist-info}/WHEEL +0 -0
- {sequenzo-0.1.17.dist-info → sequenzo-0.1.18.dist-info}/licenses/LICENSE +0 -0
- {sequenzo-0.1.17.dist-info → sequenzo-0.1.18.dist-info}/top_level.txt +0 -0
|
@@ -10,11 +10,11 @@
|
|
|
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-qqaqwytc\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\arrayobject.h",
|
|
14
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-qqaqwytc\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\arrayscalars.h",
|
|
15
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-qqaqwytc\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\ndarrayobject.h",
|
|
16
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-qqaqwytc\\overlay\\Lib\\site-packages\\numpy\\_core\\include\\numpy\\ndarraytypes.h",
|
|
17
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-qqaqwytc\\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-qqaqwytc\\overlay\\Lib\\site-packages\\pybind11\\include",
|
|
27
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-qqaqwytc\\overlay\\Lib\\site-packages\\pybind11\\include",
|
|
28
|
+
"C:\\Users\\runneradmin\\AppData\\Local\\Temp\\pip-build-env-qqaqwytc\\overlay\\Lib\\site-packages\\numpy\\_core\\include",
|
|
29
29
|
"sequenzo/dissimilarity_measures/src/",
|
|
30
30
|
"D:\\a\\Sequenzo\\Sequenzo\\sequenzo\\dissimilarity_measures\\src\\xsimd\\include",
|
|
31
31
|
"sequenzo/clustering/src/"
|
|
@@ -1398,7 +1398,7 @@ static const char *__pyx_filename;
|
|
|
1398
1398
|
|
|
1399
1399
|
static const char* const __pyx_f[] = {
|
|
1400
1400
|
"sequenzo/dissimilarity_measures/utils/seqdss.pyx",
|
|
1401
|
-
"C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1401
|
+
"C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd",
|
|
1402
1402
|
"cpython/type.pxd",
|
|
1403
1403
|
};
|
|
1404
1404
|
/* #### Code section: utility_code_proto_before_types ### */
|
|
@@ -1598,7 +1598,7 @@ typedef struct {
|
|
|
1598
1598
|
|
|
1599
1599
|
/* #### Code section: numeric_typedefs ### */
|
|
1600
1600
|
|
|
1601
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1601
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
|
|
1602
1602
|
* # in Cython to enable them only on the right systems.
|
|
1603
1603
|
*
|
|
1604
1604
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1607,7 +1607,7 @@ typedef struct {
|
|
|
1607
1607
|
*/
|
|
1608
1608
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1609
1609
|
|
|
1610
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1610
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1611
1611
|
*
|
|
1612
1612
|
* ctypedef npy_int8 int8_t
|
|
1613
1613
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1616,7 +1616,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1616
1616
|
*/
|
|
1617
1617
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1618
1618
|
|
|
1619
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1619
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1620
1620
|
* ctypedef npy_int8 int8_t
|
|
1621
1621
|
* ctypedef npy_int16 int16_t
|
|
1622
1622
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1625,7 +1625,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1625
1625
|
*/
|
|
1626
1626
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1627
1627
|
|
|
1628
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1628
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1629
1629
|
* ctypedef npy_int16 int16_t
|
|
1630
1630
|
* ctypedef npy_int32 int32_t
|
|
1631
1631
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1634,7 +1634,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1634
1634
|
*/
|
|
1635
1635
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1636
1636
|
|
|
1637
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1637
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
1638
1638
|
* #ctypedef npy_int128 int128_t
|
|
1639
1639
|
*
|
|
1640
1640
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1643,7 +1643,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1643
1643
|
*/
|
|
1644
1644
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1645
1645
|
|
|
1646
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1646
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
|
|
1647
1647
|
*
|
|
1648
1648
|
* ctypedef npy_uint8 uint8_t
|
|
1649
1649
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1652,7 +1652,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1652
1652
|
*/
|
|
1653
1653
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1654
1654
|
|
|
1655
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1655
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
1656
1656
|
* ctypedef npy_uint8 uint8_t
|
|
1657
1657
|
* ctypedef npy_uint16 uint16_t
|
|
1658
1658
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1661,7 +1661,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1661
1661
|
*/
|
|
1662
1662
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1663
1663
|
|
|
1664
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1664
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
1665
1665
|
* ctypedef npy_uint16 uint16_t
|
|
1666
1666
|
* ctypedef npy_uint32 uint32_t
|
|
1667
1667
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1670,7 +1670,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1670
1670
|
*/
|
|
1671
1671
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1672
1672
|
|
|
1673
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1673
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
|
|
1674
1674
|
* #ctypedef npy_uint128 uint128_t
|
|
1675
1675
|
*
|
|
1676
1676
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1679,7 +1679,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1679
1679
|
*/
|
|
1680
1680
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1681
1681
|
|
|
1682
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1682
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
1683
1683
|
*
|
|
1684
1684
|
* ctypedef npy_float32 float32_t
|
|
1685
1685
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1688,7 +1688,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1688
1688
|
*/
|
|
1689
1689
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1690
1690
|
|
|
1691
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1691
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
1692
1692
|
* ctypedef double complex complex128_t
|
|
1693
1693
|
*
|
|
1694
1694
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1697,7 +1697,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1697
1697
|
*/
|
|
1698
1698
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1699
1699
|
|
|
1700
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1700
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
1701
1701
|
*
|
|
1702
1702
|
* ctypedef npy_longlong longlong_t
|
|
1703
1703
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1706,7 +1706,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1706
1706
|
*/
|
|
1707
1707
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1708
1708
|
|
|
1709
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1709
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
|
|
1710
1710
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1711
1711
|
*
|
|
1712
1712
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1715,7 +1715,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1715
1715
|
*/
|
|
1716
1716
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1717
1717
|
|
|
1718
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1718
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
|
|
1719
1719
|
*
|
|
1720
1720
|
* ctypedef npy_intp intp_t
|
|
1721
1721
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1724,7 +1724,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1724
1724
|
*/
|
|
1725
1725
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1726
1726
|
|
|
1727
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1727
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":798
|
|
1728
1728
|
* ctypedef npy_uintp uintp_t
|
|
1729
1729
|
*
|
|
1730
1730
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1733,7 +1733,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1733
1733
|
*/
|
|
1734
1734
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1735
1735
|
|
|
1736
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1736
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":799
|
|
1737
1737
|
*
|
|
1738
1738
|
* ctypedef npy_double float_t
|
|
1739
1739
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1742,7 +1742,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1742
1742
|
*/
|
|
1743
1743
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1744
1744
|
|
|
1745
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1745
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":800
|
|
1746
1746
|
* ctypedef npy_double float_t
|
|
1747
1747
|
* ctypedef npy_double double_t
|
|
1748
1748
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1792,7 +1792,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
|
1792
1792
|
/*--- Type declarations ---*/
|
|
1793
1793
|
struct __pyx_obj_8sequenzo_22dissimilarity_measures_5utils_6seqdss___pyx_scope_struct__genexpr;
|
|
1794
1794
|
|
|
1795
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1795
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1096
|
|
1796
1796
|
*
|
|
1797
1797
|
* # Iterator API added in v1.6
|
|
1798
1798
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil # <<<<<<<<<<<<<<
|
|
@@ -1801,7 +1801,7 @@ struct __pyx_obj_8sequenzo_22dissimilarity_measures_5utils_6seqdss___pyx_scope_s
|
|
|
1801
1801
|
*/
|
|
1802
1802
|
typedef int (*__pyx_t_5numpy_NpyIter_IterNextFunc)(NpyIter *);
|
|
1803
1803
|
|
|
1804
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1804
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1097
|
|
1805
1805
|
* # Iterator API added in v1.6
|
|
1806
1806
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil
|
|
1807
1807
|
* ctypedef void (*NpyIter_GetMultiIndexFunc)(NpyIter* it, npy_intp* outcoords) noexcept nogil # <<<<<<<<<<<<<<
|
|
@@ -3319,7 +3319,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
3319
3319
|
#endif
|
|
3320
3320
|
/* #### Code section: module_code ### */
|
|
3321
3321
|
|
|
3322
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3322
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
3323
3323
|
* cdef int type_num
|
|
3324
3324
|
*
|
|
3325
3325
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3330,7 +3330,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
3330
3330
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
|
3331
3331
|
npy_intp __pyx_r;
|
|
3332
3332
|
|
|
3333
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3333
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":287
|
|
3334
3334
|
* @property
|
|
3335
3335
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
|
3336
3336
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3340,7 +3340,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
3340
3340
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
|
3341
3341
|
goto __pyx_L0;
|
|
3342
3342
|
|
|
3343
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3343
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
3344
3344
|
* cdef int type_num
|
|
3345
3345
|
*
|
|
3346
3346
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3353,7 +3353,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
3353
3353
|
return __pyx_r;
|
|
3354
3354
|
}
|
|
3355
3355
|
|
|
3356
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3356
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":289
|
|
3357
3357
|
* return PyDataType_ELSIZE(self)
|
|
3358
3358
|
*
|
|
3359
3359
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3364,7 +3364,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
3364
3364
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
|
3365
3365
|
npy_intp __pyx_r;
|
|
3366
3366
|
|
|
3367
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3367
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
|
|
3368
3368
|
* @property
|
|
3369
3369
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
|
3370
3370
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
|
@@ -3374,7 +3374,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
3374
3374
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
|
3375
3375
|
goto __pyx_L0;
|
|
3376
3376
|
|
|
3377
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3377
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":289
|
|
3378
3378
|
* return PyDataType_ELSIZE(self)
|
|
3379
3379
|
*
|
|
3380
3380
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3387,7 +3387,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
3387
3387
|
return __pyx_r;
|
|
3388
3388
|
}
|
|
3389
3389
|
|
|
3390
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3390
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":295
|
|
3391
3391
|
* # Use fields/names with care as they may be NULL. You must check
|
|
3392
3392
|
* # for this using PyDataType_HASFIELDS.
|
|
3393
3393
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3401,7 +3401,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3401
3401
|
PyObject *__pyx_t_1;
|
|
3402
3402
|
__Pyx_RefNannySetupContext("fields", 0);
|
|
3403
3403
|
|
|
3404
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3404
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":297
|
|
3405
3405
|
* @property
|
|
3406
3406
|
* cdef inline object fields(self):
|
|
3407
3407
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
|
@@ -3414,7 +3414,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3414
3414
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
|
3415
3415
|
goto __pyx_L0;
|
|
3416
3416
|
|
|
3417
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3417
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":295
|
|
3418
3418
|
* # Use fields/names with care as they may be NULL. You must check
|
|
3419
3419
|
* # for this using PyDataType_HASFIELDS.
|
|
3420
3420
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3429,7 +3429,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3429
3429
|
return __pyx_r;
|
|
3430
3430
|
}
|
|
3431
3431
|
|
|
3432
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3432
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":299
|
|
3433
3433
|
* return <object>PyDataType_FIELDS(self)
|
|
3434
3434
|
*
|
|
3435
3435
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3443,7 +3443,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3443
3443
|
PyObject *__pyx_t_1;
|
|
3444
3444
|
__Pyx_RefNannySetupContext("names", 0);
|
|
3445
3445
|
|
|
3446
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3446
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":301
|
|
3447
3447
|
* @property
|
|
3448
3448
|
* cdef inline tuple names(self):
|
|
3449
3449
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
|
@@ -3456,7 +3456,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3456
3456
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
|
3457
3457
|
goto __pyx_L0;
|
|
3458
3458
|
|
|
3459
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3459
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":299
|
|
3460
3460
|
* return <object>PyDataType_FIELDS(self)
|
|
3461
3461
|
*
|
|
3462
3462
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3471,7 +3471,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3471
3471
|
return __pyx_r;
|
|
3472
3472
|
}
|
|
3473
3473
|
|
|
3474
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3474
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":306
|
|
3475
3475
|
* # valid (the pointer can be NULL). Most users should access
|
|
3476
3476
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
3477
3477
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3482,7 +3482,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3482
3482
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
|
3483
3483
|
PyArray_ArrayDescr *__pyx_r;
|
|
3484
3484
|
|
|
3485
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3485
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":308
|
|
3486
3486
|
* @property
|
|
3487
3487
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
|
3488
3488
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
|
@@ -3492,7 +3492,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3492
3492
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
|
3493
3493
|
goto __pyx_L0;
|
|
3494
3494
|
|
|
3495
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3495
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":306
|
|
3496
3496
|
* # valid (the pointer can be NULL). Most users should access
|
|
3497
3497
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
3498
3498
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3505,7 +3505,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3505
3505
|
return __pyx_r;
|
|
3506
3506
|
}
|
|
3507
3507
|
|
|
3508
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3508
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":310
|
|
3509
3509
|
* return PyDataType_SUBARRAY(self)
|
|
3510
3510
|
*
|
|
3511
3511
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3516,7 +3516,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3516
3516
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
|
3517
3517
|
npy_uint64 __pyx_r;
|
|
3518
3518
|
|
|
3519
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3519
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":313
|
|
3520
3520
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
|
3521
3521
|
* """The data types flags."""
|
|
3522
3522
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
|
@@ -3526,7 +3526,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3526
3526
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
|
3527
3527
|
goto __pyx_L0;
|
|
3528
3528
|
|
|
3529
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3529
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":310
|
|
3530
3530
|
* return PyDataType_SUBARRAY(self)
|
|
3531
3531
|
*
|
|
3532
3532
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3539,7 +3539,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3539
3539
|
return __pyx_r;
|
|
3540
3540
|
}
|
|
3541
3541
|
|
|
3542
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3542
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":322
|
|
3543
3543
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
3544
3544
|
*
|
|
3545
3545
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3550,7 +3550,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3550
3550
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3551
3551
|
int __pyx_r;
|
|
3552
3552
|
|
|
3553
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3553
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":325
|
|
3554
3554
|
* cdef inline int numiter(self) noexcept nogil:
|
|
3555
3555
|
* """The number of arrays that need to be broadcast to the same shape."""
|
|
3556
3556
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
|
@@ -3560,7 +3560,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3560
3560
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
|
3561
3561
|
goto __pyx_L0;
|
|
3562
3562
|
|
|
3563
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3563
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":322
|
|
3564
3564
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
3565
3565
|
*
|
|
3566
3566
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3573,7 +3573,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3573
3573
|
return __pyx_r;
|
|
3574
3574
|
}
|
|
3575
3575
|
|
|
3576
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3576
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":327
|
|
3577
3577
|
* return PyArray_MultiIter_NUMITER(self)
|
|
3578
3578
|
*
|
|
3579
3579
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3584,7 +3584,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3584
3584
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3585
3585
|
npy_intp __pyx_r;
|
|
3586
3586
|
|
|
3587
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3587
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":330
|
|
3588
3588
|
* cdef inline npy_intp size(self) noexcept nogil:
|
|
3589
3589
|
* """The total broadcasted size."""
|
|
3590
3590
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3594,7 +3594,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3594
3594
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
|
3595
3595
|
goto __pyx_L0;
|
|
3596
3596
|
|
|
3597
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3597
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":327
|
|
3598
3598
|
* return PyArray_MultiIter_NUMITER(self)
|
|
3599
3599
|
*
|
|
3600
3600
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3607,7 +3607,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3607
3607
|
return __pyx_r;
|
|
3608
3608
|
}
|
|
3609
3609
|
|
|
3610
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3610
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":332
|
|
3611
3611
|
* return PyArray_MultiIter_SIZE(self)
|
|
3612
3612
|
*
|
|
3613
3613
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3618,7 +3618,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3618
3618
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3619
3619
|
npy_intp __pyx_r;
|
|
3620
3620
|
|
|
3621
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3621
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":335
|
|
3622
3622
|
* cdef inline npy_intp index(self) noexcept nogil:
|
|
3623
3623
|
* """The current (1-d) index into the broadcasted result."""
|
|
3624
3624
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
|
@@ -3628,7 +3628,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3628
3628
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
|
3629
3629
|
goto __pyx_L0;
|
|
3630
3630
|
|
|
3631
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3631
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":332
|
|
3632
3632
|
* return PyArray_MultiIter_SIZE(self)
|
|
3633
3633
|
*
|
|
3634
3634
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3641,7 +3641,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3641
3641
|
return __pyx_r;
|
|
3642
3642
|
}
|
|
3643
3643
|
|
|
3644
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3644
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":337
|
|
3645
3645
|
* return PyArray_MultiIter_INDEX(self)
|
|
3646
3646
|
*
|
|
3647
3647
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3652,7 +3652,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3652
3652
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3653
3653
|
int __pyx_r;
|
|
3654
3654
|
|
|
3655
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3655
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":340
|
|
3656
3656
|
* cdef inline int nd(self) noexcept nogil:
|
|
3657
3657
|
* """The number of dimensions in the broadcasted result."""
|
|
3658
3658
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3662,7 +3662,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3662
3662
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
|
3663
3663
|
goto __pyx_L0;
|
|
3664
3664
|
|
|
3665
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3665
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":337
|
|
3666
3666
|
* return PyArray_MultiIter_INDEX(self)
|
|
3667
3667
|
*
|
|
3668
3668
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3675,7 +3675,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3675
3675
|
return __pyx_r;
|
|
3676
3676
|
}
|
|
3677
3677
|
|
|
3678
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3678
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":342
|
|
3679
3679
|
* return PyArray_MultiIter_NDIM(self)
|
|
3680
3680
|
*
|
|
3681
3681
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3686,7 +3686,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3686
3686
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3687
3687
|
npy_intp *__pyx_r;
|
|
3688
3688
|
|
|
3689
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3689
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":345
|
|
3690
3690
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
|
3691
3691
|
* """The shape of the broadcasted result."""
|
|
3692
3692
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3696,7 +3696,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3696
3696
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
|
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-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":342
|
|
3700
3700
|
* return PyArray_MultiIter_NDIM(self)
|
|
3701
3701
|
*
|
|
3702
3702
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3709,7 +3709,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3709
3709
|
return __pyx_r;
|
|
3710
3710
|
}
|
|
3711
3711
|
|
|
3712
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3712
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":347
|
|
3713
3713
|
* return PyArray_MultiIter_DIMS(self)
|
|
3714
3714
|
*
|
|
3715
3715
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3720,7 +3720,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3720
3720
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3721
3721
|
void **__pyx_r;
|
|
3722
3722
|
|
|
3723
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3723
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":351
|
|
3724
3724
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
|
3725
3725
|
* On return, the iterators are adjusted for broadcasting."""
|
|
3726
3726
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
|
@@ -3730,7 +3730,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3730
3730
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
|
3731
3731
|
goto __pyx_L0;
|
|
3732
3732
|
|
|
3733
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3733
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":347
|
|
3734
3734
|
* return PyArray_MultiIter_DIMS(self)
|
|
3735
3735
|
*
|
|
3736
3736
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3743,7 +3743,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3743
3743
|
return __pyx_r;
|
|
3744
3744
|
}
|
|
3745
3745
|
|
|
3746
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3746
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":365
|
|
3747
3747
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3748
3748
|
*
|
|
3749
3749
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3754,7 +3754,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3754
3754
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
3755
3755
|
PyObject *__pyx_r;
|
|
3756
3756
|
|
|
3757
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3757
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":369
|
|
3758
3758
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
3759
3759
|
* """
|
|
3760
3760
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -3764,7 +3764,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3764
3764
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
3765
3765
|
goto __pyx_L0;
|
|
3766
3766
|
|
|
3767
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3767
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":365
|
|
3768
3768
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3769
3769
|
*
|
|
3770
3770
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3777,7 +3777,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3777
3777
|
return __pyx_r;
|
|
3778
3778
|
}
|
|
3779
3779
|
|
|
3780
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3780
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":371
|
|
3781
3781
|
* return PyArray_BASE(self)
|
|
3782
3782
|
*
|
|
3783
3783
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3791,7 +3791,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3791
3791
|
PyArray_Descr *__pyx_t_1;
|
|
3792
3792
|
__Pyx_RefNannySetupContext("descr", 0);
|
|
3793
3793
|
|
|
3794
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3794
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":375
|
|
3795
3795
|
* """Returns an owned reference to the dtype of the array.
|
|
3796
3796
|
* """
|
|
3797
3797
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -3804,7 +3804,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3804
3804
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
3805
3805
|
goto __pyx_L0;
|
|
3806
3806
|
|
|
3807
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3807
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":371
|
|
3808
3808
|
* return PyArray_BASE(self)
|
|
3809
3809
|
*
|
|
3810
3810
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3819,7 +3819,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3819
3819
|
return __pyx_r;
|
|
3820
3820
|
}
|
|
3821
3821
|
|
|
3822
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3822
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":377
|
|
3823
3823
|
* return <dtype>PyArray_DESCR(self)
|
|
3824
3824
|
*
|
|
3825
3825
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3830,7 +3830,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3830
3830
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
3831
3831
|
int __pyx_r;
|
|
3832
3832
|
|
|
3833
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3833
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":381
|
|
3834
3834
|
* """Returns the number of dimensions in the array.
|
|
3835
3835
|
* """
|
|
3836
3836
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3840,7 +3840,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3840
3840
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
3841
3841
|
goto __pyx_L0;
|
|
3842
3842
|
|
|
3843
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3843
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":377
|
|
3844
3844
|
* return <dtype>PyArray_DESCR(self)
|
|
3845
3845
|
*
|
|
3846
3846
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3853,7 +3853,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3853
3853
|
return __pyx_r;
|
|
3854
3854
|
}
|
|
3855
3855
|
|
|
3856
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3856
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":383
|
|
3857
3857
|
* return PyArray_NDIM(self)
|
|
3858
3858
|
*
|
|
3859
3859
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3864,7 +3864,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3864
3864
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
3865
3865
|
npy_intp *__pyx_r;
|
|
3866
3866
|
|
|
3867
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3867
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":389
|
|
3868
3868
|
* Can return NULL for 0-dimensional arrays.
|
|
3869
3869
|
* """
|
|
3870
3870
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3874,7 +3874,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3874
3874
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
3875
3875
|
goto __pyx_L0;
|
|
3876
3876
|
|
|
3877
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3877
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":383
|
|
3878
3878
|
* return PyArray_NDIM(self)
|
|
3879
3879
|
*
|
|
3880
3880
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3887,7 +3887,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3887
3887
|
return __pyx_r;
|
|
3888
3888
|
}
|
|
3889
3889
|
|
|
3890
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3890
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":391
|
|
3891
3891
|
* return PyArray_DIMS(self)
|
|
3892
3892
|
*
|
|
3893
3893
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3898,7 +3898,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3898
3898
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
3899
3899
|
npy_intp *__pyx_r;
|
|
3900
3900
|
|
|
3901
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3901
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":396
|
|
3902
3902
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
3903
3903
|
* """
|
|
3904
3904
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -3908,7 +3908,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3908
3908
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
3909
3909
|
goto __pyx_L0;
|
|
3910
3910
|
|
|
3911
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3911
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":391
|
|
3912
3912
|
* return PyArray_DIMS(self)
|
|
3913
3913
|
*
|
|
3914
3914
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3921,7 +3921,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3921
3921
|
return __pyx_r;
|
|
3922
3922
|
}
|
|
3923
3923
|
|
|
3924
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3924
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":398
|
|
3925
3925
|
* return PyArray_STRIDES(self)
|
|
3926
3926
|
*
|
|
3927
3927
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3932,7 +3932,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3932
3932
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
3933
3933
|
npy_intp __pyx_r;
|
|
3934
3934
|
|
|
3935
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3935
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":402
|
|
3936
3936
|
* """Returns the total size (in number of elements) of the array.
|
|
3937
3937
|
* """
|
|
3938
3938
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3942,7 +3942,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3942
3942
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
3943
3943
|
goto __pyx_L0;
|
|
3944
3944
|
|
|
3945
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3945
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":398
|
|
3946
3946
|
* return PyArray_STRIDES(self)
|
|
3947
3947
|
*
|
|
3948
3948
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3955,7 +3955,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3955
3955
|
return __pyx_r;
|
|
3956
3956
|
}
|
|
3957
3957
|
|
|
3958
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3958
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":404
|
|
3959
3959
|
* return PyArray_SIZE(self)
|
|
3960
3960
|
*
|
|
3961
3961
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3966,7 +3966,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3966
3966
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
3967
3967
|
char *__pyx_r;
|
|
3968
3968
|
|
|
3969
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3969
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":411
|
|
3970
3970
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
3971
3971
|
* """
|
|
3972
3972
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -3976,7 +3976,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3976
3976
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
3977
3977
|
goto __pyx_L0;
|
|
3978
3978
|
|
|
3979
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3979
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":404
|
|
3980
3980
|
* return PyArray_SIZE(self)
|
|
3981
3981
|
*
|
|
3982
3982
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3989,7 +3989,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3989
3989
|
return __pyx_r;
|
|
3990
3990
|
}
|
|
3991
3991
|
|
|
3992
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3992
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":807
|
|
3993
3993
|
* ctypedef long double complex clongdouble_t
|
|
3994
3994
|
*
|
|
3995
3995
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -4006,7 +4006,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
4006
4006
|
int __pyx_clineno = 0;
|
|
4007
4007
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
|
4008
4008
|
|
|
4009
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4009
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":808
|
|
4010
4010
|
*
|
|
4011
4011
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
4012
4012
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -4020,7 +4020,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
4020
4020
|
__pyx_t_1 = 0;
|
|
4021
4021
|
goto __pyx_L0;
|
|
4022
4022
|
|
|
4023
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4023
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":807
|
|
4024
4024
|
* ctypedef long double complex clongdouble_t
|
|
4025
4025
|
*
|
|
4026
4026
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -4039,7 +4039,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
4039
4039
|
return __pyx_r;
|
|
4040
4040
|
}
|
|
4041
4041
|
|
|
4042
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4042
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":810
|
|
4043
4043
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
4044
4044
|
*
|
|
4045
4045
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -4056,7 +4056,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
4056
4056
|
int __pyx_clineno = 0;
|
|
4057
4057
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
|
4058
4058
|
|
|
4059
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4059
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":811
|
|
4060
4060
|
*
|
|
4061
4061
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
4062
4062
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -4070,7 +4070,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
4070
4070
|
__pyx_t_1 = 0;
|
|
4071
4071
|
goto __pyx_L0;
|
|
4072
4072
|
|
|
4073
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4073
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":810
|
|
4074
4074
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
4075
4075
|
*
|
|
4076
4076
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -4089,7 +4089,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
4089
4089
|
return __pyx_r;
|
|
4090
4090
|
}
|
|
4091
4091
|
|
|
4092
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4092
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":813
|
|
4093
4093
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
4094
4094
|
*
|
|
4095
4095
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -4106,7 +4106,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
4106
4106
|
int __pyx_clineno = 0;
|
|
4107
4107
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
|
4108
4108
|
|
|
4109
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4109
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":814
|
|
4110
4110
|
*
|
|
4111
4111
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
4112
4112
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -4120,7 +4120,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
4120
4120
|
__pyx_t_1 = 0;
|
|
4121
4121
|
goto __pyx_L0;
|
|
4122
4122
|
|
|
4123
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4123
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":813
|
|
4124
4124
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
4125
4125
|
*
|
|
4126
4126
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -4139,7 +4139,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
4139
4139
|
return __pyx_r;
|
|
4140
4140
|
}
|
|
4141
4141
|
|
|
4142
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4142
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":816
|
|
4143
4143
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
4144
4144
|
*
|
|
4145
4145
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -4156,7 +4156,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
4156
4156
|
int __pyx_clineno = 0;
|
|
4157
4157
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
|
4158
4158
|
|
|
4159
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4159
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":817
|
|
4160
4160
|
*
|
|
4161
4161
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
4162
4162
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -4170,7 +4170,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
4170
4170
|
__pyx_t_1 = 0;
|
|
4171
4171
|
goto __pyx_L0;
|
|
4172
4172
|
|
|
4173
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4173
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":816
|
|
4174
4174
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
4175
4175
|
*
|
|
4176
4176
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -4189,7 +4189,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
4189
4189
|
return __pyx_r;
|
|
4190
4190
|
}
|
|
4191
4191
|
|
|
4192
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4192
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":819
|
|
4193
4193
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
4194
4194
|
*
|
|
4195
4195
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -4206,7 +4206,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
4206
4206
|
int __pyx_clineno = 0;
|
|
4207
4207
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
|
4208
4208
|
|
|
4209
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4209
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":820
|
|
4210
4210
|
*
|
|
4211
4211
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
4212
4212
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -4220,7 +4220,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
4220
4220
|
__pyx_t_1 = 0;
|
|
4221
4221
|
goto __pyx_L0;
|
|
4222
4222
|
|
|
4223
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4223
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":819
|
|
4224
4224
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
4225
4225
|
*
|
|
4226
4226
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -4239,7 +4239,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
4239
4239
|
return __pyx_r;
|
|
4240
4240
|
}
|
|
4241
4241
|
|
|
4242
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4242
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":822
|
|
4243
4243
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
4244
4244
|
*
|
|
4245
4245
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -4254,7 +4254,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4254
4254
|
PyObject *__pyx_t_2;
|
|
4255
4255
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
|
4256
4256
|
|
|
4257
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4257
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":823
|
|
4258
4258
|
*
|
|
4259
4259
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
4260
4260
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -4264,7 +4264,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4264
4264
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
4265
4265
|
if (__pyx_t_1) {
|
|
4266
4266
|
|
|
4267
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4267
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":824
|
|
4268
4268
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
4269
4269
|
* if PyDataType_HASSUBARRAY(d):
|
|
4270
4270
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -4277,7 +4277,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4277
4277
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
|
4278
4278
|
goto __pyx_L0;
|
|
4279
4279
|
|
|
4280
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4280
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":823
|
|
4281
4281
|
*
|
|
4282
4282
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
4283
4283
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -4286,7 +4286,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4286
4286
|
*/
|
|
4287
4287
|
}
|
|
4288
4288
|
|
|
4289
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4289
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":826
|
|
4290
4290
|
* return <tuple>d.subarray.shape
|
|
4291
4291
|
* else:
|
|
4292
4292
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -4300,7 +4300,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4300
4300
|
goto __pyx_L0;
|
|
4301
4301
|
}
|
|
4302
4302
|
|
|
4303
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4303
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":822
|
|
4304
4304
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
4305
4305
|
*
|
|
4306
4306
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -4315,7 +4315,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4315
4315
|
return __pyx_r;
|
|
4316
4316
|
}
|
|
4317
4317
|
|
|
4318
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4318
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
4319
4319
|
* int _import_umath() except -1
|
|
4320
4320
|
*
|
|
4321
4321
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -4329,7 +4329,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4329
4329
|
const char *__pyx_filename = NULL;
|
|
4330
4330
|
int __pyx_clineno = 0;
|
|
4331
4331
|
|
|
4332
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4332
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
|
|
4333
4333
|
*
|
|
4334
4334
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
4335
4335
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -4338,7 +4338,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4338
4338
|
*/
|
|
4339
4339
|
Py_INCREF(__pyx_v_base);
|
|
4340
4340
|
|
|
4341
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4341
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1012
|
|
4342
4342
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
4343
4343
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
4344
4344
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -4347,7 +4347,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4347
4347
|
*/
|
|
4348
4348
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 1012, __pyx_L1_error)
|
|
4349
4349
|
|
|
4350
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4350
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
4351
4351
|
* int _import_umath() except -1
|
|
4352
4352
|
*
|
|
4353
4353
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -4362,7 +4362,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4362
4362
|
__pyx_L0:;
|
|
4363
4363
|
}
|
|
4364
4364
|
|
|
4365
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4365
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4366
4366
|
* PyArray_SetBaseObject(arr, base)
|
|
4367
4367
|
*
|
|
4368
4368
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -4377,7 +4377,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4377
4377
|
int __pyx_t_1;
|
|
4378
4378
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
|
4379
4379
|
|
|
4380
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4380
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1015
|
|
4381
4381
|
*
|
|
4382
4382
|
* cdef inline object get_array_base(ndarray arr):
|
|
4383
4383
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -4386,7 +4386,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4386
4386
|
*/
|
|
4387
4387
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
4388
4388
|
|
|
4389
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4389
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
4390
4390
|
* cdef inline object get_array_base(ndarray arr):
|
|
4391
4391
|
* base = PyArray_BASE(arr)
|
|
4392
4392
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -4396,7 +4396,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4396
4396
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
4397
4397
|
if (__pyx_t_1) {
|
|
4398
4398
|
|
|
4399
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4399
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
4400
4400
|
* base = PyArray_BASE(arr)
|
|
4401
4401
|
* if base is NULL:
|
|
4402
4402
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -4407,7 +4407,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4407
4407
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
4408
4408
|
goto __pyx_L0;
|
|
4409
4409
|
|
|
4410
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4410
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
4411
4411
|
* cdef inline object get_array_base(ndarray arr):
|
|
4412
4412
|
* base = PyArray_BASE(arr)
|
|
4413
4413
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -4416,7 +4416,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4416
4416
|
*/
|
|
4417
4417
|
}
|
|
4418
4418
|
|
|
4419
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4419
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1018
|
|
4420
4420
|
* if base is NULL:
|
|
4421
4421
|
* return None
|
|
4422
4422
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -4428,7 +4428,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4428
4428
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
4429
4429
|
goto __pyx_L0;
|
|
4430
4430
|
|
|
4431
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4431
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4432
4432
|
* PyArray_SetBaseObject(arr, base)
|
|
4433
4433
|
*
|
|
4434
4434
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -4443,7 +4443,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4443
4443
|
return __pyx_r;
|
|
4444
4444
|
}
|
|
4445
4445
|
|
|
4446
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4446
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
4447
4447
|
* # Versions of the import_* functions which are more suitable for
|
|
4448
4448
|
* # Cython code.
|
|
4449
4449
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4470,7 +4470,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4470
4470
|
int __pyx_clineno = 0;
|
|
4471
4471
|
__Pyx_RefNannySetupContext("import_array", 0);
|
|
4472
4472
|
|
|
4473
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4473
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4474
4474
|
* # Cython code.
|
|
4475
4475
|
* cdef inline int import_array() except -1:
|
|
4476
4476
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4486,7 +4486,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4486
4486
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4487
4487
|
/*try:*/ {
|
|
4488
4488
|
|
|
4489
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4489
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1024
|
|
4490
4490
|
* cdef inline int import_array() except -1:
|
|
4491
4491
|
* try:
|
|
4492
4492
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -4495,7 +4495,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4495
4495
|
*/
|
|
4496
4496
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1024, __pyx_L3_error)
|
|
4497
4497
|
|
|
4498
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4498
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4499
4499
|
* # Cython code.
|
|
4500
4500
|
* cdef inline int import_array() except -1:
|
|
4501
4501
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4509,7 +4509,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4509
4509
|
goto __pyx_L8_try_end;
|
|
4510
4510
|
__pyx_L3_error:;
|
|
4511
4511
|
|
|
4512
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4512
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1025
|
|
4513
4513
|
* try:
|
|
4514
4514
|
* __pyx_import_array()
|
|
4515
4515
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4524,7 +4524,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4524
4524
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4525
4525
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4526
4526
|
|
|
4527
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4527
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
|
|
4528
4528
|
* __pyx_import_array()
|
|
4529
4529
|
* except Exception:
|
|
4530
4530
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4549,7 +4549,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4549
4549
|
}
|
|
4550
4550
|
goto __pyx_L5_except_error;
|
|
4551
4551
|
|
|
4552
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4552
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4553
4553
|
* # Cython code.
|
|
4554
4554
|
* cdef inline int import_array() except -1:
|
|
4555
4555
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4565,7 +4565,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4565
4565
|
__pyx_L8_try_end:;
|
|
4566
4566
|
}
|
|
4567
4567
|
|
|
4568
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4568
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
4569
4569
|
* # Versions of the import_* functions which are more suitable for
|
|
4570
4570
|
* # Cython code.
|
|
4571
4571
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4590,7 +4590,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4590
4590
|
return __pyx_r;
|
|
4591
4591
|
}
|
|
4592
4592
|
|
|
4593
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4593
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
4594
4594
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
4595
4595
|
*
|
|
4596
4596
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4617,7 +4617,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4617
4617
|
int __pyx_clineno = 0;
|
|
4618
4618
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
|
4619
4619
|
|
|
4620
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4620
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4621
4621
|
*
|
|
4622
4622
|
* cdef inline int import_umath() except -1:
|
|
4623
4623
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4633,7 +4633,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4633
4633
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4634
4634
|
/*try:*/ {
|
|
4635
4635
|
|
|
4636
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4636
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1030
|
|
4637
4637
|
* cdef inline int import_umath() except -1:
|
|
4638
4638
|
* try:
|
|
4639
4639
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4642,7 +4642,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4642
4642
|
*/
|
|
4643
4643
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1030, __pyx_L3_error)
|
|
4644
4644
|
|
|
4645
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4645
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4646
4646
|
*
|
|
4647
4647
|
* cdef inline int import_umath() except -1:
|
|
4648
4648
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4656,7 +4656,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4656
4656
|
goto __pyx_L8_try_end;
|
|
4657
4657
|
__pyx_L3_error:;
|
|
4658
4658
|
|
|
4659
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4659
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
4660
4660
|
* try:
|
|
4661
4661
|
* _import_umath()
|
|
4662
4662
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4671,7 +4671,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4671
4671
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4672
4672
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4673
4673
|
|
|
4674
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4674
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
4675
4675
|
* _import_umath()
|
|
4676
4676
|
* except Exception:
|
|
4677
4677
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4696,7 +4696,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4696
4696
|
}
|
|
4697
4697
|
goto __pyx_L5_except_error;
|
|
4698
4698
|
|
|
4699
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4699
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4700
4700
|
*
|
|
4701
4701
|
* cdef inline int import_umath() except -1:
|
|
4702
4702
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4712,7 +4712,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4712
4712
|
__pyx_L8_try_end:;
|
|
4713
4713
|
}
|
|
4714
4714
|
|
|
4715
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4715
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
4716
4716
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
4717
4717
|
*
|
|
4718
4718
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4737,7 +4737,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4737
4737
|
return __pyx_r;
|
|
4738
4738
|
}
|
|
4739
4739
|
|
|
4740
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4740
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1034
|
|
4741
4741
|
* raise ImportError("numpy._core.umath failed to import")
|
|
4742
4742
|
*
|
|
4743
4743
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4764,7 +4764,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4764
4764
|
int __pyx_clineno = 0;
|
|
4765
4765
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
|
4766
4766
|
|
|
4767
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4767
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4768
4768
|
*
|
|
4769
4769
|
* cdef inline int import_ufunc() except -1:
|
|
4770
4770
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4780,7 +4780,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4780
4780
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4781
4781
|
/*try:*/ {
|
|
4782
4782
|
|
|
4783
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4783
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
|
|
4784
4784
|
* cdef inline int import_ufunc() except -1:
|
|
4785
4785
|
* try:
|
|
4786
4786
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4789,7 +4789,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4789
4789
|
*/
|
|
4790
4790
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1036, __pyx_L3_error)
|
|
4791
4791
|
|
|
4792
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4792
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4793
4793
|
*
|
|
4794
4794
|
* cdef inline int import_ufunc() except -1:
|
|
4795
4795
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4803,7 +4803,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4803
4803
|
goto __pyx_L8_try_end;
|
|
4804
4804
|
__pyx_L3_error:;
|
|
4805
4805
|
|
|
4806
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4806
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1037
|
|
4807
4807
|
* try:
|
|
4808
4808
|
* _import_umath()
|
|
4809
4809
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4818,7 +4818,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4818
4818
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4819
4819
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4820
4820
|
|
|
4821
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4821
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
|
|
4822
4822
|
* _import_umath()
|
|
4823
4823
|
* except Exception:
|
|
4824
4824
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4843,7 +4843,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4843
4843
|
}
|
|
4844
4844
|
goto __pyx_L5_except_error;
|
|
4845
4845
|
|
|
4846
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4846
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4847
4847
|
*
|
|
4848
4848
|
* cdef inline int import_ufunc() except -1:
|
|
4849
4849
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4859,7 +4859,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4859
4859
|
__pyx_L8_try_end:;
|
|
4860
4860
|
}
|
|
4861
4861
|
|
|
4862
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4862
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1034
|
|
4863
4863
|
* raise ImportError("numpy._core.umath failed to import")
|
|
4864
4864
|
*
|
|
4865
4865
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4884,7 +4884,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4884
4884
|
return __pyx_r;
|
|
4885
4885
|
}
|
|
4886
4886
|
|
|
4887
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4887
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
4888
4888
|
*
|
|
4889
4889
|
*
|
|
4890
4890
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4895,7 +4895,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4895
4895
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
4896
4896
|
int __pyx_r;
|
|
4897
4897
|
|
|
4898
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4898
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
4899
4899
|
* bool
|
|
4900
4900
|
* """
|
|
4901
4901
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4905,7 +4905,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4905
4905
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
4906
4906
|
goto __pyx_L0;
|
|
4907
4907
|
|
|
4908
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4908
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
4909
4909
|
*
|
|
4910
4910
|
*
|
|
4911
4911
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4918,7 +4918,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4918
4918
|
return __pyx_r;
|
|
4919
4919
|
}
|
|
4920
4920
|
|
|
4921
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4921
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1056
|
|
4922
4922
|
*
|
|
4923
4923
|
*
|
|
4924
4924
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4929,7 +4929,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4929
4929
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
4930
4930
|
int __pyx_r;
|
|
4931
4931
|
|
|
4932
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4932
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1068
|
|
4933
4933
|
* bool
|
|
4934
4934
|
* """
|
|
4935
4935
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4939,7 +4939,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4939
4939
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
4940
4940
|
goto __pyx_L0;
|
|
4941
4941
|
|
|
4942
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4942
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1056
|
|
4943
4943
|
*
|
|
4944
4944
|
*
|
|
4945
4945
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4952,7 +4952,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4952
4952
|
return __pyx_r;
|
|
4953
4953
|
}
|
|
4954
4954
|
|
|
4955
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4955
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1071
|
|
4956
4956
|
*
|
|
4957
4957
|
*
|
|
4958
4958
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4963,7 +4963,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4963
4963
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
4964
4964
|
npy_datetime __pyx_r;
|
|
4965
4965
|
|
|
4966
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4966
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1078
|
|
4967
4967
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
4968
4968
|
* """
|
|
4969
4969
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4973,7 +4973,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4973
4973
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
4974
4974
|
goto __pyx_L0;
|
|
4975
4975
|
|
|
4976
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4976
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1071
|
|
4977
4977
|
*
|
|
4978
4978
|
*
|
|
4979
4979
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4986,7 +4986,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4986
4986
|
return __pyx_r;
|
|
4987
4987
|
}
|
|
4988
4988
|
|
|
4989
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4989
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1081
|
|
4990
4990
|
*
|
|
4991
4991
|
*
|
|
4992
4992
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4997,7 +4997,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4997
4997
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
4998
4998
|
npy_timedelta __pyx_r;
|
|
4999
4999
|
|
|
5000
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
5000
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1085
|
|
5001
5001
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
5002
5002
|
* """
|
|
5003
5003
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -5007,7 +5007,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
5007
5007
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
5008
5008
|
goto __pyx_L0;
|
|
5009
5009
|
|
|
5010
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
5010
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1081
|
|
5011
5011
|
*
|
|
5012
5012
|
*
|
|
5013
5013
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -5020,7 +5020,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
5020
5020
|
return __pyx_r;
|
|
5021
5021
|
}
|
|
5022
5022
|
|
|
5023
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
5023
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1088
|
|
5024
5024
|
*
|
|
5025
5025
|
*
|
|
5026
5026
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -5031,7 +5031,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
5031
5031
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
5032
5032
|
NPY_DATETIMEUNIT __pyx_r;
|
|
5033
5033
|
|
|
5034
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
5034
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1092
|
|
5035
5035
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
5036
5036
|
* """
|
|
5037
5037
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -5041,7 +5041,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
5041
5041
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
5042
5042
|
goto __pyx_L0;
|
|
5043
5043
|
|
|
5044
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
5044
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1088
|
|
5045
5045
|
*
|
|
5046
5046
|
*
|
|
5047
5047
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|