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/"
|
|
@@ -1397,7 +1397,7 @@ static const char *__pyx_filename;
|
|
|
1397
1397
|
|
|
1398
1398
|
static const char* const __pyx_f[] = {
|
|
1399
1399
|
"sequenzo/big_data/clara/utils/get_weighted_diss.pyx",
|
|
1400
|
-
"C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1400
|
+
"C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd",
|
|
1401
1401
|
"cpython/type.pxd",
|
|
1402
1402
|
};
|
|
1403
1403
|
/* #### Code section: utility_code_proto_before_types ### */
|
|
@@ -1597,7 +1597,7 @@ typedef struct {
|
|
|
1597
1597
|
|
|
1598
1598
|
/* #### Code section: numeric_typedefs ### */
|
|
1599
1599
|
|
|
1600
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1600
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
|
|
1601
1601
|
* # in Cython to enable them only on the right systems.
|
|
1602
1602
|
*
|
|
1603
1603
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1606,7 +1606,7 @@ typedef struct {
|
|
|
1606
1606
|
*/
|
|
1607
1607
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1608
1608
|
|
|
1609
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1609
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1610
1610
|
*
|
|
1611
1611
|
* ctypedef npy_int8 int8_t
|
|
1612
1612
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1615,7 +1615,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1615
1615
|
*/
|
|
1616
1616
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1617
1617
|
|
|
1618
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1618
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1619
1619
|
* ctypedef npy_int8 int8_t
|
|
1620
1620
|
* ctypedef npy_int16 int16_t
|
|
1621
1621
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1624,7 +1624,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1624
1624
|
*/
|
|
1625
1625
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1626
1626
|
|
|
1627
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1627
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1628
1628
|
* ctypedef npy_int16 int16_t
|
|
1629
1629
|
* ctypedef npy_int32 int32_t
|
|
1630
1630
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1633,7 +1633,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1633
1633
|
*/
|
|
1634
1634
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1635
1635
|
|
|
1636
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1636
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
1637
1637
|
* #ctypedef npy_int128 int128_t
|
|
1638
1638
|
*
|
|
1639
1639
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1642,7 +1642,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1642
1642
|
*/
|
|
1643
1643
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1644
1644
|
|
|
1645
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1645
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
|
|
1646
1646
|
*
|
|
1647
1647
|
* ctypedef npy_uint8 uint8_t
|
|
1648
1648
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1651,7 +1651,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1651
1651
|
*/
|
|
1652
1652
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1653
1653
|
|
|
1654
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1654
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
1655
1655
|
* ctypedef npy_uint8 uint8_t
|
|
1656
1656
|
* ctypedef npy_uint16 uint16_t
|
|
1657
1657
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1660,7 +1660,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1660
1660
|
*/
|
|
1661
1661
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1662
1662
|
|
|
1663
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1663
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
1664
1664
|
* ctypedef npy_uint16 uint16_t
|
|
1665
1665
|
* ctypedef npy_uint32 uint32_t
|
|
1666
1666
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1669,7 +1669,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1669
1669
|
*/
|
|
1670
1670
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1671
1671
|
|
|
1672
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1672
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
|
|
1673
1673
|
* #ctypedef npy_uint128 uint128_t
|
|
1674
1674
|
*
|
|
1675
1675
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1678,7 +1678,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1678
1678
|
*/
|
|
1679
1679
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1680
1680
|
|
|
1681
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1681
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
1682
1682
|
*
|
|
1683
1683
|
* ctypedef npy_float32 float32_t
|
|
1684
1684
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1687,7 +1687,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1687
1687
|
*/
|
|
1688
1688
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1689
1689
|
|
|
1690
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1690
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
1691
1691
|
* ctypedef double complex complex128_t
|
|
1692
1692
|
*
|
|
1693
1693
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1696,7 +1696,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1696
1696
|
*/
|
|
1697
1697
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1698
1698
|
|
|
1699
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1699
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
1700
1700
|
*
|
|
1701
1701
|
* ctypedef npy_longlong longlong_t
|
|
1702
1702
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1705,7 +1705,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1705
1705
|
*/
|
|
1706
1706
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1707
1707
|
|
|
1708
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1708
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
|
|
1709
1709
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1710
1710
|
*
|
|
1711
1711
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1714,7 +1714,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1714
1714
|
*/
|
|
1715
1715
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1716
1716
|
|
|
1717
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1717
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
|
|
1718
1718
|
*
|
|
1719
1719
|
* ctypedef npy_intp intp_t
|
|
1720
1720
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1723,7 +1723,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1723
1723
|
*/
|
|
1724
1724
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1725
1725
|
|
|
1726
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1726
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":798
|
|
1727
1727
|
* ctypedef npy_uintp uintp_t
|
|
1728
1728
|
*
|
|
1729
1729
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1732,7 +1732,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1732
1732
|
*/
|
|
1733
1733
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1734
1734
|
|
|
1735
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1735
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":799
|
|
1736
1736
|
*
|
|
1737
1737
|
* ctypedef npy_double float_t
|
|
1738
1738
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1741,7 +1741,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1741
1741
|
*/
|
|
1742
1742
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1743
1743
|
|
|
1744
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1744
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":800
|
|
1745
1745
|
* ctypedef npy_double float_t
|
|
1746
1746
|
* ctypedef npy_double double_t
|
|
1747
1747
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1790,7 +1790,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
|
1790
1790
|
|
|
1791
1791
|
/*--- Type declarations ---*/
|
|
1792
1792
|
|
|
1793
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1793
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1096
|
|
1794
1794
|
*
|
|
1795
1795
|
* # Iterator API added in v1.6
|
|
1796
1796
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil # <<<<<<<<<<<<<<
|
|
@@ -1799,7 +1799,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
|
1799
1799
|
*/
|
|
1800
1800
|
typedef int (*__pyx_t_5numpy_NpyIter_IterNextFunc)(NpyIter *);
|
|
1801
1801
|
|
|
1802
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1802
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1097
|
|
1803
1803
|
* # Iterator API added in v1.6
|
|
1804
1804
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil
|
|
1805
1805
|
* ctypedef void (*NpyIter_GetMultiIndexFunc)(NpyIter* it, npy_intp* outcoords) noexcept nogil # <<<<<<<<<<<<<<
|
|
@@ -2963,7 +2963,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
2963
2963
|
#endif
|
|
2964
2964
|
/* #### Code section: module_code ### */
|
|
2965
2965
|
|
|
2966
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
2966
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
2967
2967
|
* cdef int type_num
|
|
2968
2968
|
*
|
|
2969
2969
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -2974,7 +2974,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
2974
2974
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
|
2975
2975
|
npy_intp __pyx_r;
|
|
2976
2976
|
|
|
2977
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
2977
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":287
|
|
2978
2978
|
* @property
|
|
2979
2979
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
|
2980
2980
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -2984,7 +2984,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
2984
2984
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
|
2985
2985
|
goto __pyx_L0;
|
|
2986
2986
|
|
|
2987
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
2987
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
2988
2988
|
* cdef int type_num
|
|
2989
2989
|
*
|
|
2990
2990
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -2997,7 +2997,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
2997
2997
|
return __pyx_r;
|
|
2998
2998
|
}
|
|
2999
2999
|
|
|
3000
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3000
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":289
|
|
3001
3001
|
* return PyDataType_ELSIZE(self)
|
|
3002
3002
|
*
|
|
3003
3003
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3008,7 +3008,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
3008
3008
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
|
3009
3009
|
npy_intp __pyx_r;
|
|
3010
3010
|
|
|
3011
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3011
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
|
|
3012
3012
|
* @property
|
|
3013
3013
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
|
3014
3014
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
|
@@ -3018,7 +3018,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
3018
3018
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
|
3019
3019
|
goto __pyx_L0;
|
|
3020
3020
|
|
|
3021
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3021
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":289
|
|
3022
3022
|
* return PyDataType_ELSIZE(self)
|
|
3023
3023
|
*
|
|
3024
3024
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3031,7 +3031,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
3031
3031
|
return __pyx_r;
|
|
3032
3032
|
}
|
|
3033
3033
|
|
|
3034
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3034
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":295
|
|
3035
3035
|
* # Use fields/names with care as they may be NULL. You must check
|
|
3036
3036
|
* # for this using PyDataType_HASFIELDS.
|
|
3037
3037
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3045,7 +3045,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3045
3045
|
PyObject *__pyx_t_1;
|
|
3046
3046
|
__Pyx_RefNannySetupContext("fields", 0);
|
|
3047
3047
|
|
|
3048
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3048
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":297
|
|
3049
3049
|
* @property
|
|
3050
3050
|
* cdef inline object fields(self):
|
|
3051
3051
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
|
@@ -3058,7 +3058,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3058
3058
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
|
3059
3059
|
goto __pyx_L0;
|
|
3060
3060
|
|
|
3061
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3061
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":295
|
|
3062
3062
|
* # Use fields/names with care as they may be NULL. You must check
|
|
3063
3063
|
* # for this using PyDataType_HASFIELDS.
|
|
3064
3064
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3073,7 +3073,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3073
3073
|
return __pyx_r;
|
|
3074
3074
|
}
|
|
3075
3075
|
|
|
3076
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3076
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":299
|
|
3077
3077
|
* return <object>PyDataType_FIELDS(self)
|
|
3078
3078
|
*
|
|
3079
3079
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3087,7 +3087,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3087
3087
|
PyObject *__pyx_t_1;
|
|
3088
3088
|
__Pyx_RefNannySetupContext("names", 0);
|
|
3089
3089
|
|
|
3090
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3090
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":301
|
|
3091
3091
|
* @property
|
|
3092
3092
|
* cdef inline tuple names(self):
|
|
3093
3093
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
|
@@ -3100,7 +3100,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3100
3100
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
|
3101
3101
|
goto __pyx_L0;
|
|
3102
3102
|
|
|
3103
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3103
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":299
|
|
3104
3104
|
* return <object>PyDataType_FIELDS(self)
|
|
3105
3105
|
*
|
|
3106
3106
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3115,7 +3115,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3115
3115
|
return __pyx_r;
|
|
3116
3116
|
}
|
|
3117
3117
|
|
|
3118
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3118
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":306
|
|
3119
3119
|
* # valid (the pointer can be NULL). Most users should access
|
|
3120
3120
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
3121
3121
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3126,7 +3126,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3126
3126
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
|
3127
3127
|
PyArray_ArrayDescr *__pyx_r;
|
|
3128
3128
|
|
|
3129
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3129
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":308
|
|
3130
3130
|
* @property
|
|
3131
3131
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
|
3132
3132
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
|
@@ -3136,7 +3136,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3136
3136
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
|
3137
3137
|
goto __pyx_L0;
|
|
3138
3138
|
|
|
3139
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3139
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":306
|
|
3140
3140
|
* # valid (the pointer can be NULL). Most users should access
|
|
3141
3141
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
3142
3142
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3149,7 +3149,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3149
3149
|
return __pyx_r;
|
|
3150
3150
|
}
|
|
3151
3151
|
|
|
3152
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3152
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":310
|
|
3153
3153
|
* return PyDataType_SUBARRAY(self)
|
|
3154
3154
|
*
|
|
3155
3155
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3160,7 +3160,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3160
3160
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
|
3161
3161
|
npy_uint64 __pyx_r;
|
|
3162
3162
|
|
|
3163
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3163
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":313
|
|
3164
3164
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
|
3165
3165
|
* """The data types flags."""
|
|
3166
3166
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
|
@@ -3170,7 +3170,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3170
3170
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
|
3171
3171
|
goto __pyx_L0;
|
|
3172
3172
|
|
|
3173
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3173
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":310
|
|
3174
3174
|
* return PyDataType_SUBARRAY(self)
|
|
3175
3175
|
*
|
|
3176
3176
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3183,7 +3183,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3183
3183
|
return __pyx_r;
|
|
3184
3184
|
}
|
|
3185
3185
|
|
|
3186
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3186
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":322
|
|
3187
3187
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
3188
3188
|
*
|
|
3189
3189
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3194,7 +3194,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3194
3194
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3195
3195
|
int __pyx_r;
|
|
3196
3196
|
|
|
3197
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3197
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":325
|
|
3198
3198
|
* cdef inline int numiter(self) noexcept nogil:
|
|
3199
3199
|
* """The number of arrays that need to be broadcast to the same shape."""
|
|
3200
3200
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
|
@@ -3204,7 +3204,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3204
3204
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
|
3205
3205
|
goto __pyx_L0;
|
|
3206
3206
|
|
|
3207
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3207
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":322
|
|
3208
3208
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
3209
3209
|
*
|
|
3210
3210
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3217,7 +3217,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3217
3217
|
return __pyx_r;
|
|
3218
3218
|
}
|
|
3219
3219
|
|
|
3220
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3220
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":327
|
|
3221
3221
|
* return PyArray_MultiIter_NUMITER(self)
|
|
3222
3222
|
*
|
|
3223
3223
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3228,7 +3228,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3228
3228
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3229
3229
|
npy_intp __pyx_r;
|
|
3230
3230
|
|
|
3231
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3231
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":330
|
|
3232
3232
|
* cdef inline npy_intp size(self) noexcept nogil:
|
|
3233
3233
|
* """The total broadcasted size."""
|
|
3234
3234
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3238,7 +3238,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3238
3238
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
|
3239
3239
|
goto __pyx_L0;
|
|
3240
3240
|
|
|
3241
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3241
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":327
|
|
3242
3242
|
* return PyArray_MultiIter_NUMITER(self)
|
|
3243
3243
|
*
|
|
3244
3244
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3251,7 +3251,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3251
3251
|
return __pyx_r;
|
|
3252
3252
|
}
|
|
3253
3253
|
|
|
3254
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3254
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":332
|
|
3255
3255
|
* return PyArray_MultiIter_SIZE(self)
|
|
3256
3256
|
*
|
|
3257
3257
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3262,7 +3262,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3262
3262
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3263
3263
|
npy_intp __pyx_r;
|
|
3264
3264
|
|
|
3265
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3265
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":335
|
|
3266
3266
|
* cdef inline npy_intp index(self) noexcept nogil:
|
|
3267
3267
|
* """The current (1-d) index into the broadcasted result."""
|
|
3268
3268
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
|
@@ -3272,7 +3272,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3272
3272
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
|
3273
3273
|
goto __pyx_L0;
|
|
3274
3274
|
|
|
3275
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3275
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":332
|
|
3276
3276
|
* return PyArray_MultiIter_SIZE(self)
|
|
3277
3277
|
*
|
|
3278
3278
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3285,7 +3285,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3285
3285
|
return __pyx_r;
|
|
3286
3286
|
}
|
|
3287
3287
|
|
|
3288
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3288
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":337
|
|
3289
3289
|
* return PyArray_MultiIter_INDEX(self)
|
|
3290
3290
|
*
|
|
3291
3291
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3296,7 +3296,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3296
3296
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3297
3297
|
int __pyx_r;
|
|
3298
3298
|
|
|
3299
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3299
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":340
|
|
3300
3300
|
* cdef inline int nd(self) noexcept nogil:
|
|
3301
3301
|
* """The number of dimensions in the broadcasted result."""
|
|
3302
3302
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3306,7 +3306,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3306
3306
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
|
3307
3307
|
goto __pyx_L0;
|
|
3308
3308
|
|
|
3309
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3309
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":337
|
|
3310
3310
|
* return PyArray_MultiIter_INDEX(self)
|
|
3311
3311
|
*
|
|
3312
3312
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3319,7 +3319,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3319
3319
|
return __pyx_r;
|
|
3320
3320
|
}
|
|
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":342
|
|
3323
3323
|
* return PyArray_MultiIter_NDIM(self)
|
|
3324
3324
|
*
|
|
3325
3325
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3330,7 +3330,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3330
3330
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__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":345
|
|
3334
3334
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
|
3335
3335
|
* """The shape of the broadcasted result."""
|
|
3336
3336
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3340,7 +3340,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3340
3340
|
__pyx_r = PyArray_MultiIter_DIMS(__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":342
|
|
3344
3344
|
* return PyArray_MultiIter_NDIM(self)
|
|
3345
3345
|
*
|
|
3346
3346
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3353,7 +3353,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
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":347
|
|
3357
3357
|
* return PyArray_MultiIter_DIMS(self)
|
|
3358
3358
|
*
|
|
3359
3359
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3364,7 +3364,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3364
3364
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3365
3365
|
void **__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":351
|
|
3368
3368
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
|
3369
3369
|
* On return, the iterators are adjusted for broadcasting."""
|
|
3370
3370
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
|
@@ -3374,7 +3374,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3374
3374
|
__pyx_r = PyArray_MultiIter_ITERS(__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":347
|
|
3378
3378
|
* return PyArray_MultiIter_DIMS(self)
|
|
3379
3379
|
*
|
|
3380
3380
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3387,7 +3387,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
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":365
|
|
3391
3391
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3392
3392
|
*
|
|
3393
3393
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3398,7 +3398,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3398
3398
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
3399
3399
|
PyObject *__pyx_r;
|
|
3400
3400
|
|
|
3401
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3401
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":369
|
|
3402
3402
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
3403
3403
|
* """
|
|
3404
3404
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -3408,7 +3408,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3408
3408
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
3409
3409
|
goto __pyx_L0;
|
|
3410
3410
|
|
|
3411
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3411
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":365
|
|
3412
3412
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3413
3413
|
*
|
|
3414
3414
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3421,7 +3421,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3421
3421
|
return __pyx_r;
|
|
3422
3422
|
}
|
|
3423
3423
|
|
|
3424
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3424
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":371
|
|
3425
3425
|
* return PyArray_BASE(self)
|
|
3426
3426
|
*
|
|
3427
3427
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3435,7 +3435,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3435
3435
|
PyArray_Descr *__pyx_t_1;
|
|
3436
3436
|
__Pyx_RefNannySetupContext("descr", 0);
|
|
3437
3437
|
|
|
3438
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3438
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":375
|
|
3439
3439
|
* """Returns an owned reference to the dtype of the array.
|
|
3440
3440
|
* """
|
|
3441
3441
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -3448,7 +3448,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3448
3448
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
3449
3449
|
goto __pyx_L0;
|
|
3450
3450
|
|
|
3451
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3451
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":371
|
|
3452
3452
|
* return PyArray_BASE(self)
|
|
3453
3453
|
*
|
|
3454
3454
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3463,7 +3463,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3463
3463
|
return __pyx_r;
|
|
3464
3464
|
}
|
|
3465
3465
|
|
|
3466
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3466
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":377
|
|
3467
3467
|
* return <dtype>PyArray_DESCR(self)
|
|
3468
3468
|
*
|
|
3469
3469
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3474,7 +3474,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3474
3474
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
3475
3475
|
int __pyx_r;
|
|
3476
3476
|
|
|
3477
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3477
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":381
|
|
3478
3478
|
* """Returns the number of dimensions in the array.
|
|
3479
3479
|
* """
|
|
3480
3480
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3484,7 +3484,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3484
3484
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
3485
3485
|
goto __pyx_L0;
|
|
3486
3486
|
|
|
3487
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3487
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":377
|
|
3488
3488
|
* return <dtype>PyArray_DESCR(self)
|
|
3489
3489
|
*
|
|
3490
3490
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3497,7 +3497,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3497
3497
|
return __pyx_r;
|
|
3498
3498
|
}
|
|
3499
3499
|
|
|
3500
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3500
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":383
|
|
3501
3501
|
* return PyArray_NDIM(self)
|
|
3502
3502
|
*
|
|
3503
3503
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3508,7 +3508,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3508
3508
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
3509
3509
|
npy_intp *__pyx_r;
|
|
3510
3510
|
|
|
3511
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3511
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":389
|
|
3512
3512
|
* Can return NULL for 0-dimensional arrays.
|
|
3513
3513
|
* """
|
|
3514
3514
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3518,7 +3518,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3518
3518
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
3519
3519
|
goto __pyx_L0;
|
|
3520
3520
|
|
|
3521
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3521
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":383
|
|
3522
3522
|
* return PyArray_NDIM(self)
|
|
3523
3523
|
*
|
|
3524
3524
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3531,7 +3531,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3531
3531
|
return __pyx_r;
|
|
3532
3532
|
}
|
|
3533
3533
|
|
|
3534
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3534
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":391
|
|
3535
3535
|
* return PyArray_DIMS(self)
|
|
3536
3536
|
*
|
|
3537
3537
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3542,7 +3542,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3542
3542
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
3543
3543
|
npy_intp *__pyx_r;
|
|
3544
3544
|
|
|
3545
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3545
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":396
|
|
3546
3546
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
3547
3547
|
* """
|
|
3548
3548
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -3552,7 +3552,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3552
3552
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
3553
3553
|
goto __pyx_L0;
|
|
3554
3554
|
|
|
3555
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3555
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":391
|
|
3556
3556
|
* return PyArray_DIMS(self)
|
|
3557
3557
|
*
|
|
3558
3558
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3565,7 +3565,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3565
3565
|
return __pyx_r;
|
|
3566
3566
|
}
|
|
3567
3567
|
|
|
3568
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3568
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":398
|
|
3569
3569
|
* return PyArray_STRIDES(self)
|
|
3570
3570
|
*
|
|
3571
3571
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3576,7 +3576,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3576
3576
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
3577
3577
|
npy_intp __pyx_r;
|
|
3578
3578
|
|
|
3579
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3579
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":402
|
|
3580
3580
|
* """Returns the total size (in number of elements) of the array.
|
|
3581
3581
|
* """
|
|
3582
3582
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3586,7 +3586,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3586
3586
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
3587
3587
|
goto __pyx_L0;
|
|
3588
3588
|
|
|
3589
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3589
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":398
|
|
3590
3590
|
* return PyArray_STRIDES(self)
|
|
3591
3591
|
*
|
|
3592
3592
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3599,7 +3599,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3599
3599
|
return __pyx_r;
|
|
3600
3600
|
}
|
|
3601
3601
|
|
|
3602
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3602
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":404
|
|
3603
3603
|
* return PyArray_SIZE(self)
|
|
3604
3604
|
*
|
|
3605
3605
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3610,7 +3610,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3610
3610
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
3611
3611
|
char *__pyx_r;
|
|
3612
3612
|
|
|
3613
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3613
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":411
|
|
3614
3614
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
3615
3615
|
* """
|
|
3616
3616
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -3620,7 +3620,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3620
3620
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
3621
3621
|
goto __pyx_L0;
|
|
3622
3622
|
|
|
3623
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3623
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":404
|
|
3624
3624
|
* return PyArray_SIZE(self)
|
|
3625
3625
|
*
|
|
3626
3626
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3633,7 +3633,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3633
3633
|
return __pyx_r;
|
|
3634
3634
|
}
|
|
3635
3635
|
|
|
3636
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3636
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":807
|
|
3637
3637
|
* ctypedef long double complex clongdouble_t
|
|
3638
3638
|
*
|
|
3639
3639
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3650,7 +3650,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3650
3650
|
int __pyx_clineno = 0;
|
|
3651
3651
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
|
3652
3652
|
|
|
3653
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3653
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":808
|
|
3654
3654
|
*
|
|
3655
3655
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
3656
3656
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -3664,7 +3664,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3664
3664
|
__pyx_t_1 = 0;
|
|
3665
3665
|
goto __pyx_L0;
|
|
3666
3666
|
|
|
3667
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3667
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":807
|
|
3668
3668
|
* ctypedef long double complex clongdouble_t
|
|
3669
3669
|
*
|
|
3670
3670
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3683,7 +3683,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3683
3683
|
return __pyx_r;
|
|
3684
3684
|
}
|
|
3685
3685
|
|
|
3686
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3686
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":810
|
|
3687
3687
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3688
3688
|
*
|
|
3689
3689
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3700,7 +3700,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3700
3700
|
int __pyx_clineno = 0;
|
|
3701
3701
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
|
3702
3702
|
|
|
3703
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3703
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":811
|
|
3704
3704
|
*
|
|
3705
3705
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
3706
3706
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -3714,7 +3714,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3714
3714
|
__pyx_t_1 = 0;
|
|
3715
3715
|
goto __pyx_L0;
|
|
3716
3716
|
|
|
3717
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3717
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":810
|
|
3718
3718
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3719
3719
|
*
|
|
3720
3720
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3733,7 +3733,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3733
3733
|
return __pyx_r;
|
|
3734
3734
|
}
|
|
3735
3735
|
|
|
3736
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3736
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":813
|
|
3737
3737
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3738
3738
|
*
|
|
3739
3739
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3750,7 +3750,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3750
3750
|
int __pyx_clineno = 0;
|
|
3751
3751
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
|
3752
3752
|
|
|
3753
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3753
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":814
|
|
3754
3754
|
*
|
|
3755
3755
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
3756
3756
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -3764,7 +3764,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3764
3764
|
__pyx_t_1 = 0;
|
|
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":813
|
|
3768
3768
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3769
3769
|
*
|
|
3770
3770
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3783,7 +3783,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3783
3783
|
return __pyx_r;
|
|
3784
3784
|
}
|
|
3785
3785
|
|
|
3786
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3786
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":816
|
|
3787
3787
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3788
3788
|
*
|
|
3789
3789
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3800,7 +3800,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3800
3800
|
int __pyx_clineno = 0;
|
|
3801
3801
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
|
3802
3802
|
|
|
3803
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3803
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":817
|
|
3804
3804
|
*
|
|
3805
3805
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
3806
3806
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -3814,7 +3814,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3814
3814
|
__pyx_t_1 = 0;
|
|
3815
3815
|
goto __pyx_L0;
|
|
3816
3816
|
|
|
3817
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3817
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":816
|
|
3818
3818
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3819
3819
|
*
|
|
3820
3820
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3833,7 +3833,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3833
3833
|
return __pyx_r;
|
|
3834
3834
|
}
|
|
3835
3835
|
|
|
3836
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3836
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":819
|
|
3837
3837
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3838
3838
|
*
|
|
3839
3839
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -3850,7 +3850,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3850
3850
|
int __pyx_clineno = 0;
|
|
3851
3851
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
|
3852
3852
|
|
|
3853
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3853
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":820
|
|
3854
3854
|
*
|
|
3855
3855
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
3856
3856
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -3864,7 +3864,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3864
3864
|
__pyx_t_1 = 0;
|
|
3865
3865
|
goto __pyx_L0;
|
|
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":819
|
|
3868
3868
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3869
3869
|
*
|
|
3870
3870
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -3883,7 +3883,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3883
3883
|
return __pyx_r;
|
|
3884
3884
|
}
|
|
3885
3885
|
|
|
3886
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3886
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":822
|
|
3887
3887
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
3888
3888
|
*
|
|
3889
3889
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -3898,7 +3898,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3898
3898
|
PyObject *__pyx_t_2;
|
|
3899
3899
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
|
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":823
|
|
3902
3902
|
*
|
|
3903
3903
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3904
3904
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -3908,7 +3908,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3908
3908
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
3909
3909
|
if (__pyx_t_1) {
|
|
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":824
|
|
3912
3912
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3913
3913
|
* if PyDataType_HASSUBARRAY(d):
|
|
3914
3914
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -3921,7 +3921,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3921
3921
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
|
3922
3922
|
goto __pyx_L0;
|
|
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":823
|
|
3925
3925
|
*
|
|
3926
3926
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
3927
3927
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -3930,7 +3930,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3930
3930
|
*/
|
|
3931
3931
|
}
|
|
3932
3932
|
|
|
3933
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3933
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":826
|
|
3934
3934
|
* return <tuple>d.subarray.shape
|
|
3935
3935
|
* else:
|
|
3936
3936
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -3944,7 +3944,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3944
3944
|
goto __pyx_L0;
|
|
3945
3945
|
}
|
|
3946
3946
|
|
|
3947
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3947
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":822
|
|
3948
3948
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
3949
3949
|
*
|
|
3950
3950
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -3959,7 +3959,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
3959
3959
|
return __pyx_r;
|
|
3960
3960
|
}
|
|
3961
3961
|
|
|
3962
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3962
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
3963
3963
|
* int _import_umath() except -1
|
|
3964
3964
|
*
|
|
3965
3965
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -3973,7 +3973,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3973
3973
|
const char *__pyx_filename = NULL;
|
|
3974
3974
|
int __pyx_clineno = 0;
|
|
3975
3975
|
|
|
3976
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3976
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
|
|
3977
3977
|
*
|
|
3978
3978
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
3979
3979
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -3982,7 +3982,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3982
3982
|
*/
|
|
3983
3983
|
Py_INCREF(__pyx_v_base);
|
|
3984
3984
|
|
|
3985
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3985
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1012
|
|
3986
3986
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
3987
3987
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
3988
3988
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -3991,7 +3991,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
3991
3991
|
*/
|
|
3992
3992
|
__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)
|
|
3993
3993
|
|
|
3994
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
3994
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
3995
3995
|
* int _import_umath() except -1
|
|
3996
3996
|
*
|
|
3997
3997
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -4006,7 +4006,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4006
4006
|
__pyx_L0:;
|
|
4007
4007
|
}
|
|
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":1014
|
|
4010
4010
|
* PyArray_SetBaseObject(arr, base)
|
|
4011
4011
|
*
|
|
4012
4012
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -4021,7 +4021,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4021
4021
|
int __pyx_t_1;
|
|
4022
4022
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
|
4023
4023
|
|
|
4024
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4024
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1015
|
|
4025
4025
|
*
|
|
4026
4026
|
* cdef inline object get_array_base(ndarray arr):
|
|
4027
4027
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -4030,7 +4030,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4030
4030
|
*/
|
|
4031
4031
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
4032
4032
|
|
|
4033
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4033
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
4034
4034
|
* cdef inline object get_array_base(ndarray arr):
|
|
4035
4035
|
* base = PyArray_BASE(arr)
|
|
4036
4036
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -4040,7 +4040,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4040
4040
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
4041
4041
|
if (__pyx_t_1) {
|
|
4042
4042
|
|
|
4043
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4043
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
4044
4044
|
* base = PyArray_BASE(arr)
|
|
4045
4045
|
* if base is NULL:
|
|
4046
4046
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -4051,7 +4051,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4051
4051
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
4052
4052
|
goto __pyx_L0;
|
|
4053
4053
|
|
|
4054
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4054
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
4055
4055
|
* cdef inline object get_array_base(ndarray arr):
|
|
4056
4056
|
* base = PyArray_BASE(arr)
|
|
4057
4057
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -4060,7 +4060,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4060
4060
|
*/
|
|
4061
4061
|
}
|
|
4062
4062
|
|
|
4063
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4063
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1018
|
|
4064
4064
|
* if base is NULL:
|
|
4065
4065
|
* return None
|
|
4066
4066
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -4072,7 +4072,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4072
4072
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
4073
4073
|
goto __pyx_L0;
|
|
4074
4074
|
|
|
4075
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4075
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4076
4076
|
* PyArray_SetBaseObject(arr, base)
|
|
4077
4077
|
*
|
|
4078
4078
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -4087,7 +4087,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4087
4087
|
return __pyx_r;
|
|
4088
4088
|
}
|
|
4089
4089
|
|
|
4090
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4090
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
4091
4091
|
* # Versions of the import_* functions which are more suitable for
|
|
4092
4092
|
* # Cython code.
|
|
4093
4093
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4114,7 +4114,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4114
4114
|
int __pyx_clineno = 0;
|
|
4115
4115
|
__Pyx_RefNannySetupContext("import_array", 0);
|
|
4116
4116
|
|
|
4117
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4117
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4118
4118
|
* # Cython code.
|
|
4119
4119
|
* cdef inline int import_array() except -1:
|
|
4120
4120
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4130,7 +4130,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4130
4130
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4131
4131
|
/*try:*/ {
|
|
4132
4132
|
|
|
4133
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4133
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1024
|
|
4134
4134
|
* cdef inline int import_array() except -1:
|
|
4135
4135
|
* try:
|
|
4136
4136
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -4139,7 +4139,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4139
4139
|
*/
|
|
4140
4140
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1024, __pyx_L3_error)
|
|
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":1023
|
|
4143
4143
|
* # Cython code.
|
|
4144
4144
|
* cdef inline int import_array() except -1:
|
|
4145
4145
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4153,7 +4153,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4153
4153
|
goto __pyx_L8_try_end;
|
|
4154
4154
|
__pyx_L3_error:;
|
|
4155
4155
|
|
|
4156
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4156
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1025
|
|
4157
4157
|
* try:
|
|
4158
4158
|
* __pyx_import_array()
|
|
4159
4159
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4168,7 +4168,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4168
4168
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4169
4169
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4170
4170
|
|
|
4171
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4171
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
|
|
4172
4172
|
* __pyx_import_array()
|
|
4173
4173
|
* except Exception:
|
|
4174
4174
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4193,7 +4193,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4193
4193
|
}
|
|
4194
4194
|
goto __pyx_L5_except_error;
|
|
4195
4195
|
|
|
4196
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4196
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4197
4197
|
* # Cython code.
|
|
4198
4198
|
* cdef inline int import_array() except -1:
|
|
4199
4199
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4209,7 +4209,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4209
4209
|
__pyx_L8_try_end:;
|
|
4210
4210
|
}
|
|
4211
4211
|
|
|
4212
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4212
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
4213
4213
|
* # Versions of the import_* functions which are more suitable for
|
|
4214
4214
|
* # Cython code.
|
|
4215
4215
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4234,7 +4234,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4234
4234
|
return __pyx_r;
|
|
4235
4235
|
}
|
|
4236
4236
|
|
|
4237
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4237
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
4238
4238
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
4239
4239
|
*
|
|
4240
4240
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4261,7 +4261,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4261
4261
|
int __pyx_clineno = 0;
|
|
4262
4262
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
|
4263
4263
|
|
|
4264
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4264
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4265
4265
|
*
|
|
4266
4266
|
* cdef inline int import_umath() except -1:
|
|
4267
4267
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4277,7 +4277,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4277
4277
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4278
4278
|
/*try:*/ {
|
|
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":1030
|
|
4281
4281
|
* cdef inline int import_umath() except -1:
|
|
4282
4282
|
* try:
|
|
4283
4283
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4286,7 +4286,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4286
4286
|
*/
|
|
4287
4287
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1030, __pyx_L3_error)
|
|
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":1029
|
|
4290
4290
|
*
|
|
4291
4291
|
* cdef inline int import_umath() except -1:
|
|
4292
4292
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4300,7 +4300,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4300
4300
|
goto __pyx_L8_try_end;
|
|
4301
4301
|
__pyx_L3_error:;
|
|
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":1031
|
|
4304
4304
|
* try:
|
|
4305
4305
|
* _import_umath()
|
|
4306
4306
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4315,7 +4315,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4315
4315
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4316
4316
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
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":1032
|
|
4319
4319
|
* _import_umath()
|
|
4320
4320
|
* except Exception:
|
|
4321
4321
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4340,7 +4340,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4340
4340
|
}
|
|
4341
4341
|
goto __pyx_L5_except_error;
|
|
4342
4342
|
|
|
4343
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4343
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4344
4344
|
*
|
|
4345
4345
|
* cdef inline int import_umath() except -1:
|
|
4346
4346
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4356,7 +4356,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4356
4356
|
__pyx_L8_try_end:;
|
|
4357
4357
|
}
|
|
4358
4358
|
|
|
4359
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4359
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
4360
4360
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
4361
4361
|
*
|
|
4362
4362
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4381,7 +4381,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4381
4381
|
return __pyx_r;
|
|
4382
4382
|
}
|
|
4383
4383
|
|
|
4384
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4384
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1034
|
|
4385
4385
|
* raise ImportError("numpy._core.umath failed to import")
|
|
4386
4386
|
*
|
|
4387
4387
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4408,7 +4408,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4408
4408
|
int __pyx_clineno = 0;
|
|
4409
4409
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
|
4410
4410
|
|
|
4411
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4411
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4412
4412
|
*
|
|
4413
4413
|
* cdef inline int import_ufunc() except -1:
|
|
4414
4414
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4424,7 +4424,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4424
4424
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4425
4425
|
/*try:*/ {
|
|
4426
4426
|
|
|
4427
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4427
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
|
|
4428
4428
|
* cdef inline int import_ufunc() except -1:
|
|
4429
4429
|
* try:
|
|
4430
4430
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4433,7 +4433,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4433
4433
|
*/
|
|
4434
4434
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1036, __pyx_L3_error)
|
|
4435
4435
|
|
|
4436
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4436
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4437
4437
|
*
|
|
4438
4438
|
* cdef inline int import_ufunc() except -1:
|
|
4439
4439
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4447,7 +4447,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4447
4447
|
goto __pyx_L8_try_end;
|
|
4448
4448
|
__pyx_L3_error:;
|
|
4449
4449
|
|
|
4450
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4450
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1037
|
|
4451
4451
|
* try:
|
|
4452
4452
|
* _import_umath()
|
|
4453
4453
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4462,7 +4462,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4462
4462
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4463
4463
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4464
4464
|
|
|
4465
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4465
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
|
|
4466
4466
|
* _import_umath()
|
|
4467
4467
|
* except Exception:
|
|
4468
4468
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4487,7 +4487,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4487
4487
|
}
|
|
4488
4488
|
goto __pyx_L5_except_error;
|
|
4489
4489
|
|
|
4490
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4490
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4491
4491
|
*
|
|
4492
4492
|
* cdef inline int import_ufunc() except -1:
|
|
4493
4493
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4503,7 +4503,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4503
4503
|
__pyx_L8_try_end:;
|
|
4504
4504
|
}
|
|
4505
4505
|
|
|
4506
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4506
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1034
|
|
4507
4507
|
* raise ImportError("numpy._core.umath failed to import")
|
|
4508
4508
|
*
|
|
4509
4509
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4528,7 +4528,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4528
4528
|
return __pyx_r;
|
|
4529
4529
|
}
|
|
4530
4530
|
|
|
4531
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4531
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
4532
4532
|
*
|
|
4533
4533
|
*
|
|
4534
4534
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4539,7 +4539,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4539
4539
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
4540
4540
|
int __pyx_r;
|
|
4541
4541
|
|
|
4542
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4542
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
4543
4543
|
* bool
|
|
4544
4544
|
* """
|
|
4545
4545
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4549,7 +4549,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4549
4549
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
4550
4550
|
goto __pyx_L0;
|
|
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":1041
|
|
4553
4553
|
*
|
|
4554
4554
|
*
|
|
4555
4555
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4562,7 +4562,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4562
4562
|
return __pyx_r;
|
|
4563
4563
|
}
|
|
4564
4564
|
|
|
4565
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4565
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1056
|
|
4566
4566
|
*
|
|
4567
4567
|
*
|
|
4568
4568
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4573,7 +4573,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4573
4573
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
4574
4574
|
int __pyx_r;
|
|
4575
4575
|
|
|
4576
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4576
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1068
|
|
4577
4577
|
* bool
|
|
4578
4578
|
* """
|
|
4579
4579
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4583,7 +4583,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4583
4583
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
4584
4584
|
goto __pyx_L0;
|
|
4585
4585
|
|
|
4586
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4586
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1056
|
|
4587
4587
|
*
|
|
4588
4588
|
*
|
|
4589
4589
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4596,7 +4596,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4596
4596
|
return __pyx_r;
|
|
4597
4597
|
}
|
|
4598
4598
|
|
|
4599
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4599
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1071
|
|
4600
4600
|
*
|
|
4601
4601
|
*
|
|
4602
4602
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4607,7 +4607,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4607
4607
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
4608
4608
|
npy_datetime __pyx_r;
|
|
4609
4609
|
|
|
4610
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4610
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1078
|
|
4611
4611
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
4612
4612
|
* """
|
|
4613
4613
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4617,7 +4617,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4617
4617
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
4618
4618
|
goto __pyx_L0;
|
|
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":1071
|
|
4621
4621
|
*
|
|
4622
4622
|
*
|
|
4623
4623
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4630,7 +4630,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4630
4630
|
return __pyx_r;
|
|
4631
4631
|
}
|
|
4632
4632
|
|
|
4633
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4633
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1081
|
|
4634
4634
|
*
|
|
4635
4635
|
*
|
|
4636
4636
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4641,7 +4641,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4641
4641
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
4642
4642
|
npy_timedelta __pyx_r;
|
|
4643
4643
|
|
|
4644
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4644
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1085
|
|
4645
4645
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
4646
4646
|
* """
|
|
4647
4647
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4651,7 +4651,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4651
4651
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
4652
4652
|
goto __pyx_L0;
|
|
4653
4653
|
|
|
4654
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4654
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1081
|
|
4655
4655
|
*
|
|
4656
4656
|
*
|
|
4657
4657
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4664,7 +4664,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4664
4664
|
return __pyx_r;
|
|
4665
4665
|
}
|
|
4666
4666
|
|
|
4667
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4667
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1088
|
|
4668
4668
|
*
|
|
4669
4669
|
*
|
|
4670
4670
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4675,7 +4675,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4675
4675
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
4676
4676
|
NPY_DATETIMEUNIT __pyx_r;
|
|
4677
4677
|
|
|
4678
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4678
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1092
|
|
4679
4679
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
4680
4680
|
* """
|
|
4681
4681
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -4685,7 +4685,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
4685
4685
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
4686
4686
|
goto __pyx_L0;
|
|
4687
4687
|
|
|
4688
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
4688
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-qqaqwytc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1088
|
|
4689
4689
|
*
|
|
4690
4690
|
*
|
|
4691
4691
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|