sequenzo 0.1.17__cp39-cp39-macosx_10_9_universal2.whl → 0.1.18__cp39-cp39-macosx_10_9_universal2.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 +157 -157
- sequenzo/big_data/clara/utils/get_weighted_diss.cpython-39-darwin.so +0 -0
- sequenzo/clustering/hierarchical_clustering.py +202 -8
- sequenzo/define_sequence_data.py +34 -2
- sequenzo/dissimilarity_measures/c_code.cpython-39-darwin.so +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/utils/get_sm_trate_substitution_cost_matrix.c +157 -157
- sequenzo/dissimilarity_measures/utils/get_sm_trate_substitution_cost_matrix.cpython-39-darwin.so +0 -0
- sequenzo/dissimilarity_measures/utils/seqconc.c +157 -157
- sequenzo/dissimilarity_measures/utils/seqconc.cpython-39-darwin.so +0 -0
- sequenzo/dissimilarity_measures/utils/seqdss.c +157 -157
- sequenzo/dissimilarity_measures/utils/seqdss.cpython-39-darwin.so +0 -0
- sequenzo/dissimilarity_measures/utils/seqdur.c +157 -157
- sequenzo/dissimilarity_measures/utils/seqdur.cpython-39-darwin.so +0 -0
- sequenzo/dissimilarity_measures/utils/seqlength.c +157 -157
- sequenzo/dissimilarity_measures/utils/seqlength.cpython-39-darwin.so +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 +86 -79
- {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
|
-
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-
|
|
14
|
-
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-
|
|
15
|
-
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-
|
|
16
|
-
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-
|
|
17
|
-
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-
|
|
13
|
+
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-f53re08d/lib/python3.9/site-packages/numpy/_core/include/numpy/arrayobject.h",
|
|
14
|
+
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-f53re08d/lib/python3.9/site-packages/numpy/_core/include/numpy/arrayscalars.h",
|
|
15
|
+
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-f53re08d/lib/python3.9/site-packages/numpy/_core/include/numpy/ndarrayobject.h",
|
|
16
|
+
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-f53re08d/lib/python3.9/site-packages/numpy/_core/include/numpy/ndarraytypes.h",
|
|
17
|
+
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-f53re08d/lib/python3.9/site-packages/numpy/_core/include/numpy/ufuncobject.h"
|
|
18
18
|
],
|
|
19
19
|
"extra_compile_args": [
|
|
20
20
|
"-Wall",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"-ffast-math"
|
|
28
28
|
],
|
|
29
29
|
"include_dirs": [
|
|
30
|
-
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-
|
|
31
|
-
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-
|
|
32
|
-
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-
|
|
30
|
+
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-f53re08d/lib/python3.9/site-packages/pybind11/include",
|
|
31
|
+
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-f53re08d/lib/python3.9/site-packages/pybind11/include",
|
|
32
|
+
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-env-f53re08d/lib/python3.9/site-packages/numpy/_core/include",
|
|
33
33
|
"sequenzo/dissimilarity_measures/src/",
|
|
34
|
-
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-via-sdist-
|
|
34
|
+
"/private/var/folders/q0/wmf37v850txck86cpnvwm_zw0000gn/T/build-via-sdist-do3u284b/sequenzo-0.1.18/sequenzo/dissimilarity_measures/src/xsimd/include",
|
|
35
35
|
"sequenzo/clustering/src/"
|
|
36
36
|
],
|
|
37
37
|
"name": "sequenzo.dissimilarity_measures.utils.seqconc",
|
|
@@ -1402,7 +1402,7 @@ static const char *__pyx_filename;
|
|
|
1402
1402
|
|
|
1403
1403
|
static const char* const __pyx_f[] = {
|
|
1404
1404
|
"sequenzo/dissimilarity_measures/utils/seqconc.pyx",
|
|
1405
|
-
"../../build-env-
|
|
1405
|
+
"../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd",
|
|
1406
1406
|
"cpython/type.pxd",
|
|
1407
1407
|
};
|
|
1408
1408
|
/* #### Code section: utility_code_proto_before_types ### */
|
|
@@ -1602,7 +1602,7 @@ typedef struct {
|
|
|
1602
1602
|
|
|
1603
1603
|
/* #### Code section: numeric_typedefs ### */
|
|
1604
1604
|
|
|
1605
|
-
/* "../../build-env-
|
|
1605
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":770
|
|
1606
1606
|
* # in Cython to enable them only on the right systems.
|
|
1607
1607
|
*
|
|
1608
1608
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1611,7 +1611,7 @@ typedef struct {
|
|
|
1611
1611
|
*/
|
|
1612
1612
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1613
1613
|
|
|
1614
|
-
/* "../../build-env-
|
|
1614
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1615
1615
|
*
|
|
1616
1616
|
* ctypedef npy_int8 int8_t
|
|
1617
1617
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1620,7 +1620,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1620
1620
|
*/
|
|
1621
1621
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1622
1622
|
|
|
1623
|
-
/* "../../build-env-
|
|
1623
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1624
1624
|
* ctypedef npy_int8 int8_t
|
|
1625
1625
|
* ctypedef npy_int16 int16_t
|
|
1626
1626
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1629,7 +1629,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1629
1629
|
*/
|
|
1630
1630
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1631
1631
|
|
|
1632
|
-
/* "../../build-env-
|
|
1632
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1633
1633
|
* ctypedef npy_int16 int16_t
|
|
1634
1634
|
* ctypedef npy_int32 int32_t
|
|
1635
1635
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1638,7 +1638,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1638
1638
|
*/
|
|
1639
1639
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1640
1640
|
|
|
1641
|
-
/* "../../build-env-
|
|
1641
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":777
|
|
1642
1642
|
* #ctypedef npy_int128 int128_t
|
|
1643
1643
|
*
|
|
1644
1644
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1647,7 +1647,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1647
1647
|
*/
|
|
1648
1648
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1649
1649
|
|
|
1650
|
-
/* "../../build-env-
|
|
1650
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":778
|
|
1651
1651
|
*
|
|
1652
1652
|
* ctypedef npy_uint8 uint8_t
|
|
1653
1653
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1656,7 +1656,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1656
1656
|
*/
|
|
1657
1657
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1658
1658
|
|
|
1659
|
-
/* "../../build-env-
|
|
1659
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":779
|
|
1660
1660
|
* ctypedef npy_uint8 uint8_t
|
|
1661
1661
|
* ctypedef npy_uint16 uint16_t
|
|
1662
1662
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1665,7 +1665,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1665
1665
|
*/
|
|
1666
1666
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1667
1667
|
|
|
1668
|
-
/* "../../build-env-
|
|
1668
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":780
|
|
1669
1669
|
* ctypedef npy_uint16 uint16_t
|
|
1670
1670
|
* ctypedef npy_uint32 uint32_t
|
|
1671
1671
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1674,7 +1674,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1674
1674
|
*/
|
|
1675
1675
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1676
1676
|
|
|
1677
|
-
/* "../../build-env-
|
|
1677
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":784
|
|
1678
1678
|
* #ctypedef npy_uint128 uint128_t
|
|
1679
1679
|
*
|
|
1680
1680
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1683,7 +1683,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1683
1683
|
*/
|
|
1684
1684
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1685
1685
|
|
|
1686
|
-
/* "../../build-env-
|
|
1686
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":785
|
|
1687
1687
|
*
|
|
1688
1688
|
* ctypedef npy_float32 float32_t
|
|
1689
1689
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1692,7 +1692,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1692
1692
|
*/
|
|
1693
1693
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1694
1694
|
|
|
1695
|
-
/* "../../build-env-
|
|
1695
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":792
|
|
1696
1696
|
* ctypedef double complex complex128_t
|
|
1697
1697
|
*
|
|
1698
1698
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1701,7 +1701,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1701
1701
|
*/
|
|
1702
1702
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1703
1703
|
|
|
1704
|
-
/* "../../build-env-
|
|
1704
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":793
|
|
1705
1705
|
*
|
|
1706
1706
|
* ctypedef npy_longlong longlong_t
|
|
1707
1707
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1710,7 +1710,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1710
1710
|
*/
|
|
1711
1711
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1712
1712
|
|
|
1713
|
-
/* "../../build-env-
|
|
1713
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":795
|
|
1714
1714
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1715
1715
|
*
|
|
1716
1716
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1719,7 +1719,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1719
1719
|
*/
|
|
1720
1720
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1721
1721
|
|
|
1722
|
-
/* "../../build-env-
|
|
1722
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":796
|
|
1723
1723
|
*
|
|
1724
1724
|
* ctypedef npy_intp intp_t
|
|
1725
1725
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1728,7 +1728,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1728
1728
|
*/
|
|
1729
1729
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1730
1730
|
|
|
1731
|
-
/* "../../build-env-
|
|
1731
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":798
|
|
1732
1732
|
* ctypedef npy_uintp uintp_t
|
|
1733
1733
|
*
|
|
1734
1734
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1737,7 +1737,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1737
1737
|
*/
|
|
1738
1738
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1739
1739
|
|
|
1740
|
-
/* "../../build-env-
|
|
1740
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":799
|
|
1741
1741
|
*
|
|
1742
1742
|
* ctypedef npy_double float_t
|
|
1743
1743
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1746,7 +1746,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1746
1746
|
*/
|
|
1747
1747
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1748
1748
|
|
|
1749
|
-
/* "../../build-env-
|
|
1749
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":800
|
|
1750
1750
|
* ctypedef npy_double float_t
|
|
1751
1751
|
* ctypedef npy_double double_t
|
|
1752
1752
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1795,7 +1795,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
|
1795
1795
|
|
|
1796
1796
|
/*--- Type declarations ---*/
|
|
1797
1797
|
|
|
1798
|
-
/* "../../build-env-
|
|
1798
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1096
|
|
1799
1799
|
*
|
|
1800
1800
|
* # Iterator API added in v1.6
|
|
1801
1801
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil # <<<<<<<<<<<<<<
|
|
@@ -1804,7 +1804,7 @@ static CYTHON_INLINE __pyx_t_long_double_complex __pyx_t_long_double_complex_fro
|
|
|
1804
1804
|
*/
|
|
1805
1805
|
typedef int (*__pyx_t_5numpy_NpyIter_IterNextFunc)(NpyIter *);
|
|
1806
1806
|
|
|
1807
|
-
/* "../../build-env-
|
|
1807
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1097
|
|
1808
1808
|
* # Iterator API added in v1.6
|
|
1809
1809
|
* ctypedef int (*NpyIter_IterNextFunc)(NpyIter* it) noexcept nogil
|
|
1810
1810
|
* ctypedef void (*NpyIter_GetMultiIndexFunc)(NpyIter* it, npy_intp* outcoords) noexcept nogil # <<<<<<<<<<<<<<
|
|
@@ -3091,7 +3091,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
3091
3091
|
#endif
|
|
3092
3092
|
/* #### Code section: module_code ### */
|
|
3093
3093
|
|
|
3094
|
-
/* "../../build-env-
|
|
3094
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":285
|
|
3095
3095
|
* cdef int type_num
|
|
3096
3096
|
*
|
|
3097
3097
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3102,7 +3102,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
|
3102
3102
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
|
3103
3103
|
npy_intp __pyx_r;
|
|
3104
3104
|
|
|
3105
|
-
/* "../../build-env-
|
|
3105
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":287
|
|
3106
3106
|
* @property
|
|
3107
3107
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
|
3108
3108
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3112,7 +3112,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
3112
3112
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
|
3113
3113
|
goto __pyx_L0;
|
|
3114
3114
|
|
|
3115
|
-
/* "../../build-env-
|
|
3115
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":285
|
|
3116
3116
|
* cdef int type_num
|
|
3117
3117
|
*
|
|
3118
3118
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3125,7 +3125,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
3125
3125
|
return __pyx_r;
|
|
3126
3126
|
}
|
|
3127
3127
|
|
|
3128
|
-
/* "../../build-env-
|
|
3128
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":289
|
|
3129
3129
|
* return PyDataType_ELSIZE(self)
|
|
3130
3130
|
*
|
|
3131
3131
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3136,7 +3136,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
3136
3136
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
|
3137
3137
|
npy_intp __pyx_r;
|
|
3138
3138
|
|
|
3139
|
-
/* "../../build-env-
|
|
3139
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":291
|
|
3140
3140
|
* @property
|
|
3141
3141
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
|
3142
3142
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
|
@@ -3146,7 +3146,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
3146
3146
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
|
3147
3147
|
goto __pyx_L0;
|
|
3148
3148
|
|
|
3149
|
-
/* "../../build-env-
|
|
3149
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":289
|
|
3150
3150
|
* return PyDataType_ELSIZE(self)
|
|
3151
3151
|
*
|
|
3152
3152
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3159,7 +3159,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
3159
3159
|
return __pyx_r;
|
|
3160
3160
|
}
|
|
3161
3161
|
|
|
3162
|
-
/* "../../build-env-
|
|
3162
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":295
|
|
3163
3163
|
* # Use fields/names with care as they may be NULL. You must check
|
|
3164
3164
|
* # for this using PyDataType_HASFIELDS.
|
|
3165
3165
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3173,7 +3173,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3173
3173
|
PyObject *__pyx_t_1;
|
|
3174
3174
|
__Pyx_RefNannySetupContext("fields", 0);
|
|
3175
3175
|
|
|
3176
|
-
/* "../../build-env-
|
|
3176
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":297
|
|
3177
3177
|
* @property
|
|
3178
3178
|
* cdef inline object fields(self):
|
|
3179
3179
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
|
@@ -3186,7 +3186,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3186
3186
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
|
3187
3187
|
goto __pyx_L0;
|
|
3188
3188
|
|
|
3189
|
-
/* "../../build-env-
|
|
3189
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":295
|
|
3190
3190
|
* # Use fields/names with care as they may be NULL. You must check
|
|
3191
3191
|
* # for this using PyDataType_HASFIELDS.
|
|
3192
3192
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3201,7 +3201,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
3201
3201
|
return __pyx_r;
|
|
3202
3202
|
}
|
|
3203
3203
|
|
|
3204
|
-
/* "../../build-env-
|
|
3204
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":299
|
|
3205
3205
|
* return <object>PyDataType_FIELDS(self)
|
|
3206
3206
|
*
|
|
3207
3207
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3215,7 +3215,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3215
3215
|
PyObject *__pyx_t_1;
|
|
3216
3216
|
__Pyx_RefNannySetupContext("names", 0);
|
|
3217
3217
|
|
|
3218
|
-
/* "../../build-env-
|
|
3218
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":301
|
|
3219
3219
|
* @property
|
|
3220
3220
|
* cdef inline tuple names(self):
|
|
3221
3221
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
|
@@ -3228,7 +3228,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3228
3228
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
|
3229
3229
|
goto __pyx_L0;
|
|
3230
3230
|
|
|
3231
|
-
/* "../../build-env-
|
|
3231
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":299
|
|
3232
3232
|
* return <object>PyDataType_FIELDS(self)
|
|
3233
3233
|
*
|
|
3234
3234
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3243,7 +3243,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3243
3243
|
return __pyx_r;
|
|
3244
3244
|
}
|
|
3245
3245
|
|
|
3246
|
-
/* "../../build-env-
|
|
3246
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":306
|
|
3247
3247
|
* # valid (the pointer can be NULL). Most users should access
|
|
3248
3248
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
3249
3249
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3254,7 +3254,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
3254
3254
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
|
3255
3255
|
PyArray_ArrayDescr *__pyx_r;
|
|
3256
3256
|
|
|
3257
|
-
/* "../../build-env-
|
|
3257
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":308
|
|
3258
3258
|
* @property
|
|
3259
3259
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
|
3260
3260
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
|
@@ -3264,7 +3264,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3264
3264
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
|
3265
3265
|
goto __pyx_L0;
|
|
3266
3266
|
|
|
3267
|
-
/* "../../build-env-
|
|
3267
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":306
|
|
3268
3268
|
* # valid (the pointer can be NULL). Most users should access
|
|
3269
3269
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
3270
3270
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3277,7 +3277,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3277
3277
|
return __pyx_r;
|
|
3278
3278
|
}
|
|
3279
3279
|
|
|
3280
|
-
/* "../../build-env-
|
|
3280
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":310
|
|
3281
3281
|
* return PyDataType_SUBARRAY(self)
|
|
3282
3282
|
*
|
|
3283
3283
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3288,7 +3288,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
3288
3288
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
|
3289
3289
|
npy_uint64 __pyx_r;
|
|
3290
3290
|
|
|
3291
|
-
/* "../../build-env-
|
|
3291
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":313
|
|
3292
3292
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
|
3293
3293
|
* """The data types flags."""
|
|
3294
3294
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
|
@@ -3298,7 +3298,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3298
3298
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
|
3299
3299
|
goto __pyx_L0;
|
|
3300
3300
|
|
|
3301
|
-
/* "../../build-env-
|
|
3301
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":310
|
|
3302
3302
|
* return PyDataType_SUBARRAY(self)
|
|
3303
3303
|
*
|
|
3304
3304
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3311,7 +3311,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3311
3311
|
return __pyx_r;
|
|
3312
3312
|
}
|
|
3313
3313
|
|
|
3314
|
-
/* "../../build-env-
|
|
3314
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":322
|
|
3315
3315
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
3316
3316
|
*
|
|
3317
3317
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3322,7 +3322,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
3322
3322
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3323
3323
|
int __pyx_r;
|
|
3324
3324
|
|
|
3325
|
-
/* "../../build-env-
|
|
3325
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":325
|
|
3326
3326
|
* cdef inline int numiter(self) noexcept nogil:
|
|
3327
3327
|
* """The number of arrays that need to be broadcast to the same shape."""
|
|
3328
3328
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
|
@@ -3332,7 +3332,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3332
3332
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
|
3333
3333
|
goto __pyx_L0;
|
|
3334
3334
|
|
|
3335
|
-
/* "../../build-env-
|
|
3335
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":322
|
|
3336
3336
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
3337
3337
|
*
|
|
3338
3338
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3345,7 +3345,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3345
3345
|
return __pyx_r;
|
|
3346
3346
|
}
|
|
3347
3347
|
|
|
3348
|
-
/* "../../build-env-
|
|
3348
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":327
|
|
3349
3349
|
* return PyArray_MultiIter_NUMITER(self)
|
|
3350
3350
|
*
|
|
3351
3351
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3356,7 +3356,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
3356
3356
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3357
3357
|
npy_intp __pyx_r;
|
|
3358
3358
|
|
|
3359
|
-
/* "../../build-env-
|
|
3359
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":330
|
|
3360
3360
|
* cdef inline npy_intp size(self) noexcept nogil:
|
|
3361
3361
|
* """The total broadcasted size."""
|
|
3362
3362
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3366,7 +3366,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3366
3366
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
|
3367
3367
|
goto __pyx_L0;
|
|
3368
3368
|
|
|
3369
|
-
/* "../../build-env-
|
|
3369
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":327
|
|
3370
3370
|
* return PyArray_MultiIter_NUMITER(self)
|
|
3371
3371
|
*
|
|
3372
3372
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3379,7 +3379,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3379
3379
|
return __pyx_r;
|
|
3380
3380
|
}
|
|
3381
3381
|
|
|
3382
|
-
/* "../../build-env-
|
|
3382
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":332
|
|
3383
3383
|
* return PyArray_MultiIter_SIZE(self)
|
|
3384
3384
|
*
|
|
3385
3385
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3390,7 +3390,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
3390
3390
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3391
3391
|
npy_intp __pyx_r;
|
|
3392
3392
|
|
|
3393
|
-
/* "../../build-env-
|
|
3393
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":335
|
|
3394
3394
|
* cdef inline npy_intp index(self) noexcept nogil:
|
|
3395
3395
|
* """The current (1-d) index into the broadcasted result."""
|
|
3396
3396
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
|
@@ -3400,7 +3400,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3400
3400
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
|
3401
3401
|
goto __pyx_L0;
|
|
3402
3402
|
|
|
3403
|
-
/* "../../build-env-
|
|
3403
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":332
|
|
3404
3404
|
* return PyArray_MultiIter_SIZE(self)
|
|
3405
3405
|
*
|
|
3406
3406
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3413,7 +3413,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3413
3413
|
return __pyx_r;
|
|
3414
3414
|
}
|
|
3415
3415
|
|
|
3416
|
-
/* "../../build-env-
|
|
3416
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":337
|
|
3417
3417
|
* return PyArray_MultiIter_INDEX(self)
|
|
3418
3418
|
*
|
|
3419
3419
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3424,7 +3424,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
3424
3424
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3425
3425
|
int __pyx_r;
|
|
3426
3426
|
|
|
3427
|
-
/* "../../build-env-
|
|
3427
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":340
|
|
3428
3428
|
* cdef inline int nd(self) noexcept nogil:
|
|
3429
3429
|
* """The number of dimensions in the broadcasted result."""
|
|
3430
3430
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3434,7 +3434,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3434
3434
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
|
3435
3435
|
goto __pyx_L0;
|
|
3436
3436
|
|
|
3437
|
-
/* "../../build-env-
|
|
3437
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":337
|
|
3438
3438
|
* return PyArray_MultiIter_INDEX(self)
|
|
3439
3439
|
*
|
|
3440
3440
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3447,7 +3447,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3447
3447
|
return __pyx_r;
|
|
3448
3448
|
}
|
|
3449
3449
|
|
|
3450
|
-
/* "../../build-env-
|
|
3450
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":342
|
|
3451
3451
|
* return PyArray_MultiIter_NDIM(self)
|
|
3452
3452
|
*
|
|
3453
3453
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3458,7 +3458,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
3458
3458
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3459
3459
|
npy_intp *__pyx_r;
|
|
3460
3460
|
|
|
3461
|
-
/* "../../build-env-
|
|
3461
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":345
|
|
3462
3462
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
|
3463
3463
|
* """The shape of the broadcasted result."""
|
|
3464
3464
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3468,7 +3468,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3468
3468
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
|
3469
3469
|
goto __pyx_L0;
|
|
3470
3470
|
|
|
3471
|
-
/* "../../build-env-
|
|
3471
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":342
|
|
3472
3472
|
* return PyArray_MultiIter_NDIM(self)
|
|
3473
3473
|
*
|
|
3474
3474
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3481,7 +3481,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3481
3481
|
return __pyx_r;
|
|
3482
3482
|
}
|
|
3483
3483
|
|
|
3484
|
-
/* "../../build-env-
|
|
3484
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":347
|
|
3485
3485
|
* return PyArray_MultiIter_DIMS(self)
|
|
3486
3486
|
*
|
|
3487
3487
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3492,7 +3492,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
3492
3492
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
|
3493
3493
|
void **__pyx_r;
|
|
3494
3494
|
|
|
3495
|
-
/* "../../build-env-
|
|
3495
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":351
|
|
3496
3496
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
|
3497
3497
|
* On return, the iterators are adjusted for broadcasting."""
|
|
3498
3498
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
|
@@ -3502,7 +3502,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3502
3502
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
|
3503
3503
|
goto __pyx_L0;
|
|
3504
3504
|
|
|
3505
|
-
/* "../../build-env-
|
|
3505
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":347
|
|
3506
3506
|
* return PyArray_MultiIter_DIMS(self)
|
|
3507
3507
|
*
|
|
3508
3508
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3515,7 +3515,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3515
3515
|
return __pyx_r;
|
|
3516
3516
|
}
|
|
3517
3517
|
|
|
3518
|
-
/* "../../build-env-
|
|
3518
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":365
|
|
3519
3519
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3520
3520
|
*
|
|
3521
3521
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3526,7 +3526,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
3526
3526
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
3527
3527
|
PyObject *__pyx_r;
|
|
3528
3528
|
|
|
3529
|
-
/* "../../build-env-
|
|
3529
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":369
|
|
3530
3530
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
3531
3531
|
* """
|
|
3532
3532
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -3536,7 +3536,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3536
3536
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
3537
3537
|
goto __pyx_L0;
|
|
3538
3538
|
|
|
3539
|
-
/* "../../build-env-
|
|
3539
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":365
|
|
3540
3540
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
3541
3541
|
*
|
|
3542
3542
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3549,7 +3549,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
3549
3549
|
return __pyx_r;
|
|
3550
3550
|
}
|
|
3551
3551
|
|
|
3552
|
-
/* "../../build-env-
|
|
3552
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":371
|
|
3553
3553
|
* return PyArray_BASE(self)
|
|
3554
3554
|
*
|
|
3555
3555
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3563,7 +3563,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3563
3563
|
PyArray_Descr *__pyx_t_1;
|
|
3564
3564
|
__Pyx_RefNannySetupContext("descr", 0);
|
|
3565
3565
|
|
|
3566
|
-
/* "../../build-env-
|
|
3566
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":375
|
|
3567
3567
|
* """Returns an owned reference to the dtype of the array.
|
|
3568
3568
|
* """
|
|
3569
3569
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -3576,7 +3576,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3576
3576
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
3577
3577
|
goto __pyx_L0;
|
|
3578
3578
|
|
|
3579
|
-
/* "../../build-env-
|
|
3579
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":371
|
|
3580
3580
|
* return PyArray_BASE(self)
|
|
3581
3581
|
*
|
|
3582
3582
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3591,7 +3591,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3591
3591
|
return __pyx_r;
|
|
3592
3592
|
}
|
|
3593
3593
|
|
|
3594
|
-
/* "../../build-env-
|
|
3594
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":377
|
|
3595
3595
|
* return <dtype>PyArray_DESCR(self)
|
|
3596
3596
|
*
|
|
3597
3597
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3602,7 +3602,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
3602
3602
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
3603
3603
|
int __pyx_r;
|
|
3604
3604
|
|
|
3605
|
-
/* "../../build-env-
|
|
3605
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":381
|
|
3606
3606
|
* """Returns the number of dimensions in the array.
|
|
3607
3607
|
* """
|
|
3608
3608
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -3612,7 +3612,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3612
3612
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
3613
3613
|
goto __pyx_L0;
|
|
3614
3614
|
|
|
3615
|
-
/* "../../build-env-
|
|
3615
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":377
|
|
3616
3616
|
* return <dtype>PyArray_DESCR(self)
|
|
3617
3617
|
*
|
|
3618
3618
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3625,7 +3625,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3625
3625
|
return __pyx_r;
|
|
3626
3626
|
}
|
|
3627
3627
|
|
|
3628
|
-
/* "../../build-env-
|
|
3628
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":383
|
|
3629
3629
|
* return PyArray_NDIM(self)
|
|
3630
3630
|
*
|
|
3631
3631
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3636,7 +3636,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
3636
3636
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
3637
3637
|
npy_intp *__pyx_r;
|
|
3638
3638
|
|
|
3639
|
-
/* "../../build-env-
|
|
3639
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":389
|
|
3640
3640
|
* Can return NULL for 0-dimensional arrays.
|
|
3641
3641
|
* """
|
|
3642
3642
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -3646,7 +3646,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3646
3646
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
3647
3647
|
goto __pyx_L0;
|
|
3648
3648
|
|
|
3649
|
-
/* "../../build-env-
|
|
3649
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":383
|
|
3650
3650
|
* return PyArray_NDIM(self)
|
|
3651
3651
|
*
|
|
3652
3652
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3659,7 +3659,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3659
3659
|
return __pyx_r;
|
|
3660
3660
|
}
|
|
3661
3661
|
|
|
3662
|
-
/* "../../build-env-
|
|
3662
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":391
|
|
3663
3663
|
* return PyArray_DIMS(self)
|
|
3664
3664
|
*
|
|
3665
3665
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3670,7 +3670,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
3670
3670
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
3671
3671
|
npy_intp *__pyx_r;
|
|
3672
3672
|
|
|
3673
|
-
/* "../../build-env-
|
|
3673
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":396
|
|
3674
3674
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
3675
3675
|
* """
|
|
3676
3676
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -3680,7 +3680,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3680
3680
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
3681
3681
|
goto __pyx_L0;
|
|
3682
3682
|
|
|
3683
|
-
/* "../../build-env-
|
|
3683
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":391
|
|
3684
3684
|
* return PyArray_DIMS(self)
|
|
3685
3685
|
*
|
|
3686
3686
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3693,7 +3693,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3693
3693
|
return __pyx_r;
|
|
3694
3694
|
}
|
|
3695
3695
|
|
|
3696
|
-
/* "../../build-env-
|
|
3696
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":398
|
|
3697
3697
|
* return PyArray_STRIDES(self)
|
|
3698
3698
|
*
|
|
3699
3699
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3704,7 +3704,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
3704
3704
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
3705
3705
|
npy_intp __pyx_r;
|
|
3706
3706
|
|
|
3707
|
-
/* "../../build-env-
|
|
3707
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":402
|
|
3708
3708
|
* """Returns the total size (in number of elements) of the array.
|
|
3709
3709
|
* """
|
|
3710
3710
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -3714,7 +3714,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3714
3714
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
3715
3715
|
goto __pyx_L0;
|
|
3716
3716
|
|
|
3717
|
-
/* "../../build-env-
|
|
3717
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":398
|
|
3718
3718
|
* return PyArray_STRIDES(self)
|
|
3719
3719
|
*
|
|
3720
3720
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3727,7 +3727,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3727
3727
|
return __pyx_r;
|
|
3728
3728
|
}
|
|
3729
3729
|
|
|
3730
|
-
/* "../../build-env-
|
|
3730
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":404
|
|
3731
3731
|
* return PyArray_SIZE(self)
|
|
3732
3732
|
*
|
|
3733
3733
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3738,7 +3738,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
3738
3738
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
3739
3739
|
char *__pyx_r;
|
|
3740
3740
|
|
|
3741
|
-
/* "../../build-env-
|
|
3741
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":411
|
|
3742
3742
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
3743
3743
|
* """
|
|
3744
3744
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -3748,7 +3748,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3748
3748
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
3749
3749
|
goto __pyx_L0;
|
|
3750
3750
|
|
|
3751
|
-
/* "../../build-env-
|
|
3751
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":404
|
|
3752
3752
|
* return PyArray_SIZE(self)
|
|
3753
3753
|
*
|
|
3754
3754
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -3761,7 +3761,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
3761
3761
|
return __pyx_r;
|
|
3762
3762
|
}
|
|
3763
3763
|
|
|
3764
|
-
/* "../../build-env-
|
|
3764
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":807
|
|
3765
3765
|
* ctypedef long double complex clongdouble_t
|
|
3766
3766
|
*
|
|
3767
3767
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3778,7 +3778,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3778
3778
|
int __pyx_clineno = 0;
|
|
3779
3779
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
|
3780
3780
|
|
|
3781
|
-
/* "../../build-env-
|
|
3781
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":808
|
|
3782
3782
|
*
|
|
3783
3783
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
3784
3784
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -3792,7 +3792,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3792
3792
|
__pyx_t_1 = 0;
|
|
3793
3793
|
goto __pyx_L0;
|
|
3794
3794
|
|
|
3795
|
-
/* "../../build-env-
|
|
3795
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":807
|
|
3796
3796
|
* ctypedef long double complex clongdouble_t
|
|
3797
3797
|
*
|
|
3798
3798
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -3811,7 +3811,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
3811
3811
|
return __pyx_r;
|
|
3812
3812
|
}
|
|
3813
3813
|
|
|
3814
|
-
/* "../../build-env-
|
|
3814
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":810
|
|
3815
3815
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3816
3816
|
*
|
|
3817
3817
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3828,7 +3828,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3828
3828
|
int __pyx_clineno = 0;
|
|
3829
3829
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
|
3830
3830
|
|
|
3831
|
-
/* "../../build-env-
|
|
3831
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":811
|
|
3832
3832
|
*
|
|
3833
3833
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
3834
3834
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -3842,7 +3842,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3842
3842
|
__pyx_t_1 = 0;
|
|
3843
3843
|
goto __pyx_L0;
|
|
3844
3844
|
|
|
3845
|
-
/* "../../build-env-
|
|
3845
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":810
|
|
3846
3846
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
3847
3847
|
*
|
|
3848
3848
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -3861,7 +3861,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
3861
3861
|
return __pyx_r;
|
|
3862
3862
|
}
|
|
3863
3863
|
|
|
3864
|
-
/* "../../build-env-
|
|
3864
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":813
|
|
3865
3865
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3866
3866
|
*
|
|
3867
3867
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3878,7 +3878,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3878
3878
|
int __pyx_clineno = 0;
|
|
3879
3879
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
|
3880
3880
|
|
|
3881
|
-
/* "../../build-env-
|
|
3881
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":814
|
|
3882
3882
|
*
|
|
3883
3883
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
3884
3884
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -3892,7 +3892,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3892
3892
|
__pyx_t_1 = 0;
|
|
3893
3893
|
goto __pyx_L0;
|
|
3894
3894
|
|
|
3895
|
-
/* "../../build-env-
|
|
3895
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":813
|
|
3896
3896
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
3897
3897
|
*
|
|
3898
3898
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -3911,7 +3911,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
3911
3911
|
return __pyx_r;
|
|
3912
3912
|
}
|
|
3913
3913
|
|
|
3914
|
-
/* "../../build-env-
|
|
3914
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":816
|
|
3915
3915
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3916
3916
|
*
|
|
3917
3917
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3928,7 +3928,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3928
3928
|
int __pyx_clineno = 0;
|
|
3929
3929
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
|
3930
3930
|
|
|
3931
|
-
/* "../../build-env-
|
|
3931
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":817
|
|
3932
3932
|
*
|
|
3933
3933
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
3934
3934
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -3942,7 +3942,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3942
3942
|
__pyx_t_1 = 0;
|
|
3943
3943
|
goto __pyx_L0;
|
|
3944
3944
|
|
|
3945
|
-
/* "../../build-env-
|
|
3945
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":816
|
|
3946
3946
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
3947
3947
|
*
|
|
3948
3948
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -3961,7 +3961,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
3961
3961
|
return __pyx_r;
|
|
3962
3962
|
}
|
|
3963
3963
|
|
|
3964
|
-
/* "../../build-env-
|
|
3964
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":819
|
|
3965
3965
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3966
3966
|
*
|
|
3967
3967
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -3978,7 +3978,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3978
3978
|
int __pyx_clineno = 0;
|
|
3979
3979
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
|
3980
3980
|
|
|
3981
|
-
/* "../../build-env-
|
|
3981
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":820
|
|
3982
3982
|
*
|
|
3983
3983
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
3984
3984
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -3992,7 +3992,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
3992
3992
|
__pyx_t_1 = 0;
|
|
3993
3993
|
goto __pyx_L0;
|
|
3994
3994
|
|
|
3995
|
-
/* "../../build-env-
|
|
3995
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":819
|
|
3996
3996
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
3997
3997
|
*
|
|
3998
3998
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -4011,7 +4011,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
4011
4011
|
return __pyx_r;
|
|
4012
4012
|
}
|
|
4013
4013
|
|
|
4014
|
-
/* "../../build-env-
|
|
4014
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":822
|
|
4015
4015
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
4016
4016
|
*
|
|
4017
4017
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -4026,7 +4026,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4026
4026
|
PyObject *__pyx_t_2;
|
|
4027
4027
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
|
4028
4028
|
|
|
4029
|
-
/* "../../build-env-
|
|
4029
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":823
|
|
4030
4030
|
*
|
|
4031
4031
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
4032
4032
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -4036,7 +4036,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4036
4036
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
4037
4037
|
if (__pyx_t_1) {
|
|
4038
4038
|
|
|
4039
|
-
/* "../../build-env-
|
|
4039
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":824
|
|
4040
4040
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
4041
4041
|
* if PyDataType_HASSUBARRAY(d):
|
|
4042
4042
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -4049,7 +4049,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4049
4049
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
|
4050
4050
|
goto __pyx_L0;
|
|
4051
4051
|
|
|
4052
|
-
/* "../../build-env-
|
|
4052
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":823
|
|
4053
4053
|
*
|
|
4054
4054
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
4055
4055
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -4058,7 +4058,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4058
4058
|
*/
|
|
4059
4059
|
}
|
|
4060
4060
|
|
|
4061
|
-
/* "../../build-env-
|
|
4061
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":826
|
|
4062
4062
|
* return <tuple>d.subarray.shape
|
|
4063
4063
|
* else:
|
|
4064
4064
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -4072,7 +4072,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4072
4072
|
goto __pyx_L0;
|
|
4073
4073
|
}
|
|
4074
4074
|
|
|
4075
|
-
/* "../../build-env-
|
|
4075
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":822
|
|
4076
4076
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
4077
4077
|
*
|
|
4078
4078
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -4087,7 +4087,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
4087
4087
|
return __pyx_r;
|
|
4088
4088
|
}
|
|
4089
4089
|
|
|
4090
|
-
/* "../../build-env-
|
|
4090
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
4091
4091
|
* int _import_umath() except -1
|
|
4092
4092
|
*
|
|
4093
4093
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -4101,7 +4101,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4101
4101
|
const char *__pyx_filename = NULL;
|
|
4102
4102
|
int __pyx_clineno = 0;
|
|
4103
4103
|
|
|
4104
|
-
/* "../../build-env-
|
|
4104
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1011
|
|
4105
4105
|
*
|
|
4106
4106
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
4107
4107
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -4110,7 +4110,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4110
4110
|
*/
|
|
4111
4111
|
Py_INCREF(__pyx_v_base);
|
|
4112
4112
|
|
|
4113
|
-
/* "../../build-env-
|
|
4113
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1012
|
|
4114
4114
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
4115
4115
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
4116
4116
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -4119,7 +4119,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4119
4119
|
*/
|
|
4120
4120
|
__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)
|
|
4121
4121
|
|
|
4122
|
-
/* "../../build-env-
|
|
4122
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
4123
4123
|
* int _import_umath() except -1
|
|
4124
4124
|
*
|
|
4125
4125
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -4134,7 +4134,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
4134
4134
|
__pyx_L0:;
|
|
4135
4135
|
}
|
|
4136
4136
|
|
|
4137
|
-
/* "../../build-env-
|
|
4137
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4138
4138
|
* PyArray_SetBaseObject(arr, base)
|
|
4139
4139
|
*
|
|
4140
4140
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -4149,7 +4149,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4149
4149
|
int __pyx_t_1;
|
|
4150
4150
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
|
4151
4151
|
|
|
4152
|
-
/* "../../build-env-
|
|
4152
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1015
|
|
4153
4153
|
*
|
|
4154
4154
|
* cdef inline object get_array_base(ndarray arr):
|
|
4155
4155
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -4158,7 +4158,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4158
4158
|
*/
|
|
4159
4159
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
4160
4160
|
|
|
4161
|
-
/* "../../build-env-
|
|
4161
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
4162
4162
|
* cdef inline object get_array_base(ndarray arr):
|
|
4163
4163
|
* base = PyArray_BASE(arr)
|
|
4164
4164
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -4168,7 +4168,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4168
4168
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
4169
4169
|
if (__pyx_t_1) {
|
|
4170
4170
|
|
|
4171
|
-
/* "../../build-env-
|
|
4171
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
4172
4172
|
* base = PyArray_BASE(arr)
|
|
4173
4173
|
* if base is NULL:
|
|
4174
4174
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -4179,7 +4179,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4179
4179
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
4180
4180
|
goto __pyx_L0;
|
|
4181
4181
|
|
|
4182
|
-
/* "../../build-env-
|
|
4182
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
4183
4183
|
* cdef inline object get_array_base(ndarray arr):
|
|
4184
4184
|
* base = PyArray_BASE(arr)
|
|
4185
4185
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -4188,7 +4188,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4188
4188
|
*/
|
|
4189
4189
|
}
|
|
4190
4190
|
|
|
4191
|
-
/* "../../build-env-
|
|
4191
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1018
|
|
4192
4192
|
* if base is NULL:
|
|
4193
4193
|
* return None
|
|
4194
4194
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -4200,7 +4200,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4200
4200
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
4201
4201
|
goto __pyx_L0;
|
|
4202
4202
|
|
|
4203
|
-
/* "../../build-env-
|
|
4203
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
4204
4204
|
* PyArray_SetBaseObject(arr, base)
|
|
4205
4205
|
*
|
|
4206
4206
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -4215,7 +4215,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
4215
4215
|
return __pyx_r;
|
|
4216
4216
|
}
|
|
4217
4217
|
|
|
4218
|
-
/* "../../build-env-
|
|
4218
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
4219
4219
|
* # Versions of the import_* functions which are more suitable for
|
|
4220
4220
|
* # Cython code.
|
|
4221
4221
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4242,7 +4242,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4242
4242
|
int __pyx_clineno = 0;
|
|
4243
4243
|
__Pyx_RefNannySetupContext("import_array", 0);
|
|
4244
4244
|
|
|
4245
|
-
/* "../../build-env-
|
|
4245
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4246
4246
|
* # Cython code.
|
|
4247
4247
|
* cdef inline int import_array() except -1:
|
|
4248
4248
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4258,7 +4258,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4258
4258
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4259
4259
|
/*try:*/ {
|
|
4260
4260
|
|
|
4261
|
-
/* "../../build-env-
|
|
4261
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1024
|
|
4262
4262
|
* cdef inline int import_array() except -1:
|
|
4263
4263
|
* try:
|
|
4264
4264
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -4267,7 +4267,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4267
4267
|
*/
|
|
4268
4268
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1024, __pyx_L3_error)
|
|
4269
4269
|
|
|
4270
|
-
/* "../../build-env-
|
|
4270
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4271
4271
|
* # Cython code.
|
|
4272
4272
|
* cdef inline int import_array() except -1:
|
|
4273
4273
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4281,7 +4281,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4281
4281
|
goto __pyx_L8_try_end;
|
|
4282
4282
|
__pyx_L3_error:;
|
|
4283
4283
|
|
|
4284
|
-
/* "../../build-env-
|
|
4284
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1025
|
|
4285
4285
|
* try:
|
|
4286
4286
|
* __pyx_import_array()
|
|
4287
4287
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4296,7 +4296,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4296
4296
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4297
4297
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4298
4298
|
|
|
4299
|
-
/* "../../build-env-
|
|
4299
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1026
|
|
4300
4300
|
* __pyx_import_array()
|
|
4301
4301
|
* except Exception:
|
|
4302
4302
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4321,7 +4321,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4321
4321
|
}
|
|
4322
4322
|
goto __pyx_L5_except_error;
|
|
4323
4323
|
|
|
4324
|
-
/* "../../build-env-
|
|
4324
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1023
|
|
4325
4325
|
* # Cython code.
|
|
4326
4326
|
* cdef inline int import_array() except -1:
|
|
4327
4327
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4337,7 +4337,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4337
4337
|
__pyx_L8_try_end:;
|
|
4338
4338
|
}
|
|
4339
4339
|
|
|
4340
|
-
/* "../../build-env-
|
|
4340
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
4341
4341
|
* # Versions of the import_* functions which are more suitable for
|
|
4342
4342
|
* # Cython code.
|
|
4343
4343
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4362,7 +4362,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
4362
4362
|
return __pyx_r;
|
|
4363
4363
|
}
|
|
4364
4364
|
|
|
4365
|
-
/* "../../build-env-
|
|
4365
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
4366
4366
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
4367
4367
|
*
|
|
4368
4368
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4389,7 +4389,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4389
4389
|
int __pyx_clineno = 0;
|
|
4390
4390
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
|
4391
4391
|
|
|
4392
|
-
/* "../../build-env-
|
|
4392
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4393
4393
|
*
|
|
4394
4394
|
* cdef inline int import_umath() except -1:
|
|
4395
4395
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4405,7 +4405,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4405
4405
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4406
4406
|
/*try:*/ {
|
|
4407
4407
|
|
|
4408
|
-
/* "../../build-env-
|
|
4408
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1030
|
|
4409
4409
|
* cdef inline int import_umath() except -1:
|
|
4410
4410
|
* try:
|
|
4411
4411
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4414,7 +4414,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4414
4414
|
*/
|
|
4415
4415
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1030, __pyx_L3_error)
|
|
4416
4416
|
|
|
4417
|
-
/* "../../build-env-
|
|
4417
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4418
4418
|
*
|
|
4419
4419
|
* cdef inline int import_umath() except -1:
|
|
4420
4420
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4428,7 +4428,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4428
4428
|
goto __pyx_L8_try_end;
|
|
4429
4429
|
__pyx_L3_error:;
|
|
4430
4430
|
|
|
4431
|
-
/* "../../build-env-
|
|
4431
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
4432
4432
|
* try:
|
|
4433
4433
|
* _import_umath()
|
|
4434
4434
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4443,7 +4443,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4443
4443
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4444
4444
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4445
4445
|
|
|
4446
|
-
/* "../../build-env-
|
|
4446
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
4447
4447
|
* _import_umath()
|
|
4448
4448
|
* except Exception:
|
|
4449
4449
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4468,7 +4468,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4468
4468
|
}
|
|
4469
4469
|
goto __pyx_L5_except_error;
|
|
4470
4470
|
|
|
4471
|
-
/* "../../build-env-
|
|
4471
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
4472
4472
|
*
|
|
4473
4473
|
* cdef inline int import_umath() except -1:
|
|
4474
4474
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4484,7 +4484,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4484
4484
|
__pyx_L8_try_end:;
|
|
4485
4485
|
}
|
|
4486
4486
|
|
|
4487
|
-
/* "../../build-env-
|
|
4487
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
4488
4488
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
4489
4489
|
*
|
|
4490
4490
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4509,7 +4509,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
4509
4509
|
return __pyx_r;
|
|
4510
4510
|
}
|
|
4511
4511
|
|
|
4512
|
-
/* "../../build-env-
|
|
4512
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1034
|
|
4513
4513
|
* raise ImportError("numpy._core.umath failed to import")
|
|
4514
4514
|
*
|
|
4515
4515
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4536,7 +4536,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4536
4536
|
int __pyx_clineno = 0;
|
|
4537
4537
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
|
4538
4538
|
|
|
4539
|
-
/* "../../build-env-
|
|
4539
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4540
4540
|
*
|
|
4541
4541
|
* cdef inline int import_ufunc() except -1:
|
|
4542
4542
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4552,7 +4552,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4552
4552
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
4553
4553
|
/*try:*/ {
|
|
4554
4554
|
|
|
4555
|
-
/* "../../build-env-
|
|
4555
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1036
|
|
4556
4556
|
* cdef inline int import_ufunc() except -1:
|
|
4557
4557
|
* try:
|
|
4558
4558
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -4561,7 +4561,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4561
4561
|
*/
|
|
4562
4562
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1036, __pyx_L3_error)
|
|
4563
4563
|
|
|
4564
|
-
/* "../../build-env-
|
|
4564
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4565
4565
|
*
|
|
4566
4566
|
* cdef inline int import_ufunc() except -1:
|
|
4567
4567
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4575,7 +4575,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4575
4575
|
goto __pyx_L8_try_end;
|
|
4576
4576
|
__pyx_L3_error:;
|
|
4577
4577
|
|
|
4578
|
-
/* "../../build-env-
|
|
4578
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1037
|
|
4579
4579
|
* try:
|
|
4580
4580
|
* _import_umath()
|
|
4581
4581
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -4590,7 +4590,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4590
4590
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
4591
4591
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
4592
4592
|
|
|
4593
|
-
/* "../../build-env-
|
|
4593
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1038
|
|
4594
4594
|
* _import_umath()
|
|
4595
4595
|
* except Exception:
|
|
4596
4596
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -4615,7 +4615,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4615
4615
|
}
|
|
4616
4616
|
goto __pyx_L5_except_error;
|
|
4617
4617
|
|
|
4618
|
-
/* "../../build-env-
|
|
4618
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1035
|
|
4619
4619
|
*
|
|
4620
4620
|
* cdef inline int import_ufunc() except -1:
|
|
4621
4621
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -4631,7 +4631,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4631
4631
|
__pyx_L8_try_end:;
|
|
4632
4632
|
}
|
|
4633
4633
|
|
|
4634
|
-
/* "../../build-env-
|
|
4634
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1034
|
|
4635
4635
|
* raise ImportError("numpy._core.umath failed to import")
|
|
4636
4636
|
*
|
|
4637
4637
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -4656,7 +4656,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4656
4656
|
return __pyx_r;
|
|
4657
4657
|
}
|
|
4658
4658
|
|
|
4659
|
-
/* "../../build-env-
|
|
4659
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
4660
4660
|
*
|
|
4661
4661
|
*
|
|
4662
4662
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4667,7 +4667,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
4667
4667
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
4668
4668
|
int __pyx_r;
|
|
4669
4669
|
|
|
4670
|
-
/* "../../build-env-
|
|
4670
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
4671
4671
|
* bool
|
|
4672
4672
|
* """
|
|
4673
4673
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4677,7 +4677,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4677
4677
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
4678
4678
|
goto __pyx_L0;
|
|
4679
4679
|
|
|
4680
|
-
/* "../../build-env-
|
|
4680
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
4681
4681
|
*
|
|
4682
4682
|
*
|
|
4683
4683
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4690,7 +4690,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4690
4690
|
return __pyx_r;
|
|
4691
4691
|
}
|
|
4692
4692
|
|
|
4693
|
-
/* "../../build-env-
|
|
4693
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1056
|
|
4694
4694
|
*
|
|
4695
4695
|
*
|
|
4696
4696
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4701,7 +4701,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
4701
4701
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
4702
4702
|
int __pyx_r;
|
|
4703
4703
|
|
|
4704
|
-
/* "../../build-env-
|
|
4704
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1068
|
|
4705
4705
|
* bool
|
|
4706
4706
|
* """
|
|
4707
4707
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -4711,7 +4711,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4711
4711
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
4712
4712
|
goto __pyx_L0;
|
|
4713
4713
|
|
|
4714
|
-
/* "../../build-env-
|
|
4714
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1056
|
|
4715
4715
|
*
|
|
4716
4716
|
*
|
|
4717
4717
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -4724,7 +4724,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4724
4724
|
return __pyx_r;
|
|
4725
4725
|
}
|
|
4726
4726
|
|
|
4727
|
-
/* "../../build-env-
|
|
4727
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1071
|
|
4728
4728
|
*
|
|
4729
4729
|
*
|
|
4730
4730
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4735,7 +4735,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
4735
4735
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
4736
4736
|
npy_datetime __pyx_r;
|
|
4737
4737
|
|
|
4738
|
-
/* "../../build-env-
|
|
4738
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1078
|
|
4739
4739
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
4740
4740
|
* """
|
|
4741
4741
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4745,7 +4745,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4745
4745
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
4746
4746
|
goto __pyx_L0;
|
|
4747
4747
|
|
|
4748
|
-
/* "../../build-env-
|
|
4748
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1071
|
|
4749
4749
|
*
|
|
4750
4750
|
*
|
|
4751
4751
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4758,7 +4758,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4758
4758
|
return __pyx_r;
|
|
4759
4759
|
}
|
|
4760
4760
|
|
|
4761
|
-
/* "../../build-env-
|
|
4761
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1081
|
|
4762
4762
|
*
|
|
4763
4763
|
*
|
|
4764
4764
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4769,7 +4769,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
4769
4769
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
4770
4770
|
npy_timedelta __pyx_r;
|
|
4771
4771
|
|
|
4772
|
-
/* "../../build-env-
|
|
4772
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1085
|
|
4773
4773
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
4774
4774
|
* """
|
|
4775
4775
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -4779,7 +4779,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4779
4779
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
4780
4780
|
goto __pyx_L0;
|
|
4781
4781
|
|
|
4782
|
-
/* "../../build-env-
|
|
4782
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1081
|
|
4783
4783
|
*
|
|
4784
4784
|
*
|
|
4785
4785
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4792,7 +4792,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4792
4792
|
return __pyx_r;
|
|
4793
4793
|
}
|
|
4794
4794
|
|
|
4795
|
-
/* "../../build-env-
|
|
4795
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1088
|
|
4796
4796
|
*
|
|
4797
4797
|
*
|
|
4798
4798
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -4803,7 +4803,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
4803
4803
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
4804
4804
|
NPY_DATETIMEUNIT __pyx_r;
|
|
4805
4805
|
|
|
4806
|
-
/* "../../build-env-
|
|
4806
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1092
|
|
4807
4807
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
4808
4808
|
* """
|
|
4809
4809
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -4813,7 +4813,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
4813
4813
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
4814
4814
|
goto __pyx_L0;
|
|
4815
4815
|
|
|
4816
|
-
/* "../../build-env-
|
|
4816
|
+
/* "../../build-env-f53re08d/lib/python3.9/site-packages/numpy/__init__.cython-30.pxd":1088
|
|
4817
4817
|
*
|
|
4818
4818
|
*
|
|
4819
4819
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|