biotite 0.39.0__cp311-cp311-macosx_11_0_arm64.whl → 0.40.0__cp311-cp311-macosx_11_0_arm64.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 biotite might be problematic. Click here for more details.
- biotite/__init__.py +3 -3
- biotite/application/dssp/app.py +18 -18
- biotite/database/rcsb/download.py +19 -14
- biotite/sequence/align/banded.c +258 -237
- biotite/sequence/align/banded.cpython-311-darwin.so +0 -0
- biotite/sequence/align/kmeralphabet.c +243 -222
- biotite/sequence/align/kmeralphabet.cpython-311-darwin.so +0 -0
- biotite/sequence/align/kmersimilarity.c +215 -196
- biotite/sequence/align/kmersimilarity.cpython-311-darwin.so +0 -0
- biotite/sequence/align/kmertable.cpp +233 -205
- biotite/sequence/align/kmertable.cpython-311-darwin.so +0 -0
- biotite/sequence/align/localgapped.c +258 -237
- biotite/sequence/align/localgapped.cpython-311-darwin.so +0 -0
- biotite/sequence/align/localungapped.c +235 -214
- biotite/sequence/align/localungapped.cpython-311-darwin.so +0 -0
- biotite/sequence/align/multiple.c +255 -234
- biotite/sequence/align/multiple.cpython-311-darwin.so +0 -0
- biotite/sequence/align/pairwise.c +274 -253
- biotite/sequence/align/pairwise.cpython-311-darwin.so +0 -0
- biotite/sequence/align/permutation.c +215 -196
- biotite/sequence/align/permutation.cpython-311-darwin.so +0 -0
- biotite/sequence/align/selector.c +217 -197
- biotite/sequence/align/selector.cpython-311-darwin.so +0 -0
- biotite/sequence/align/tracetable.c +215 -195
- biotite/sequence/align/tracetable.cpython-311-darwin.so +0 -0
- biotite/sequence/codec.c +235 -214
- biotite/sequence/codec.cpython-311-darwin.so +0 -0
- biotite/sequence/phylo/nj.c +215 -196
- biotite/sequence/phylo/nj.cpython-311-darwin.so +0 -0
- biotite/sequence/phylo/tree.c +227 -202
- biotite/sequence/phylo/tree.cpython-311-darwin.so +0 -0
- biotite/sequence/phylo/upgma.c +215 -196
- biotite/sequence/phylo/upgma.cpython-311-darwin.so +0 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1175 -1226
- biotite/structure/bonds.cpython-311-darwin.so +0 -0
- biotite/structure/celllist.c +217 -197
- biotite/structure/celllist.cpython-311-darwin.so +0 -0
- biotite/structure/charges.c +1052 -1101
- biotite/structure/charges.cpython-311-darwin.so +0 -0
- biotite/structure/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +25 -67
- biotite/structure/info/bonds.py +46 -100
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1646 -0
- biotite/structure/info/ccd/carbohydrates.txt +1133 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +797 -0
- biotite/structure/info/ccd.py +95 -0
- biotite/structure/info/groups.py +90 -0
- biotite/structure/info/masses.py +21 -20
- biotite/structure/info/misc.py +11 -22
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +1 -1
- biotite/structure/io/general.py +37 -43
- biotite/structure/io/mmtf/__init__.py +3 -0
- biotite/structure/io/mmtf/convertarray.c +219 -198
- biotite/structure/io/mmtf/convertarray.cpython-311-darwin.so +0 -0
- biotite/structure/io/mmtf/convertfile.c +217 -197
- biotite/structure/io/mmtf/convertfile.cpython-311-darwin.so +0 -0
- biotite/structure/io/mmtf/decode.c +225 -204
- biotite/structure/io/mmtf/decode.cpython-311-darwin.so +0 -0
- biotite/structure/io/mmtf/encode.c +215 -196
- biotite/structure/io/mmtf/encode.cpython-311-darwin.so +0 -0
- biotite/structure/io/mmtf/file.py +34 -26
- biotite/structure/io/npz/__init__.py +3 -0
- biotite/structure/io/npz/file.py +21 -18
- biotite/structure/io/pdb/__init__.py +3 -3
- biotite/structure/io/pdb/file.py +5 -3
- biotite/structure/io/pdb/hybrid36.c +63 -43
- biotite/structure/io/pdb/hybrid36.cpython-311-darwin.so +0 -0
- biotite/structure/io/pdbqt/file.py +32 -32
- biotite/structure/io/pdbx/__init__.py +13 -6
- biotite/structure/io/pdbx/bcif.py +649 -0
- biotite/structure/io/pdbx/cif.py +1028 -0
- biotite/structure/io/pdbx/component.py +243 -0
- biotite/structure/io/pdbx/convert.py +707 -359
- biotite/structure/io/pdbx/encoding.c +112813 -0
- biotite/structure/io/pdbx/encoding.cpython-311-darwin.so +0 -0
- biotite/structure/io/pdbx/error.py +14 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/sasa.c +215 -196
- biotite/structure/sasa.cpython-311-darwin.so +0 -0
- biotite/structure/superimpose.py +158 -115
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
- biotite/structure/info/amino_acids.json +0 -1556
- biotite/structure/info/amino_acids.py +0 -42
- biotite/structure/info/carbohydrates.json +0 -1122
- biotite/structure/info/carbohydrates.py +0 -39
- biotite/structure/info/intra_bonds.msgpack +0 -0
- biotite/structure/info/link_types.msgpack +0 -1
- biotite/structure/info/nucleotides.json +0 -772
- biotite/structure/info/nucleotides.py +0 -39
- biotite/structure/info/residue_masses.msgpack +0 -0
- biotite/structure/info/residue_names.msgpack +0 -3
- biotite/structure/info/residues.msgpack +0 -0
- biotite/structure/io/pdbx/file.py +0 -652
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
biotite/structure/celllist.c
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.0.
|
|
1
|
+
/* Generated by Cython 3.0.10 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -37,10 +37,10 @@ END: Cython Metadata */
|
|
|
37
37
|
#else
|
|
38
38
|
#define __PYX_EXTRA_ABI_MODULE_NAME ""
|
|
39
39
|
#endif
|
|
40
|
-
#define CYTHON_ABI "
|
|
40
|
+
#define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
|
|
41
41
|
#define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
|
|
42
42
|
#define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
|
|
43
|
-
#define CYTHON_HEX_VERSION
|
|
43
|
+
#define CYTHON_HEX_VERSION 0x03000AF0
|
|
44
44
|
#define CYTHON_FUTURE_DIVISION 1
|
|
45
45
|
#include <stddef.h>
|
|
46
46
|
#ifndef offsetof
|
|
@@ -132,6 +132,8 @@ END: Cython Metadata */
|
|
|
132
132
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
133
133
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
134
134
|
#endif
|
|
135
|
+
#undef CYTHON_USE_FREELISTS
|
|
136
|
+
#define CYTHON_USE_FREELISTS 0
|
|
135
137
|
#elif defined(PYPY_VERSION)
|
|
136
138
|
#define CYTHON_COMPILING_IN_PYPY 1
|
|
137
139
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -193,6 +195,8 @@ END: Cython Metadata */
|
|
|
193
195
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
194
196
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
195
197
|
#endif
|
|
198
|
+
#undef CYTHON_USE_FREELISTS
|
|
199
|
+
#define CYTHON_USE_FREELISTS 0
|
|
196
200
|
#elif defined(CYTHON_LIMITED_API)
|
|
197
201
|
#ifdef Py_LIMITED_API
|
|
198
202
|
#undef __PYX_LIMITED_VERSION_HEX
|
|
@@ -254,6 +258,8 @@ END: Cython Metadata */
|
|
|
254
258
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
255
259
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
256
260
|
#endif
|
|
261
|
+
#undef CYTHON_USE_FREELISTS
|
|
262
|
+
#define CYTHON_USE_FREELISTS 0
|
|
257
263
|
#elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
|
|
258
264
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
259
265
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -263,11 +269,17 @@ END: Cython Metadata */
|
|
|
263
269
|
#ifndef CYTHON_USE_TYPE_SLOTS
|
|
264
270
|
#define CYTHON_USE_TYPE_SLOTS 1
|
|
265
271
|
#endif
|
|
272
|
+
#ifndef CYTHON_USE_TYPE_SPECS
|
|
273
|
+
#define CYTHON_USE_TYPE_SPECS 0
|
|
274
|
+
#endif
|
|
266
275
|
#undef CYTHON_USE_PYTYPE_LOOKUP
|
|
267
276
|
#define CYTHON_USE_PYTYPE_LOOKUP 0
|
|
268
277
|
#ifndef CYTHON_USE_ASYNC_SLOTS
|
|
269
278
|
#define CYTHON_USE_ASYNC_SLOTS 1
|
|
270
279
|
#endif
|
|
280
|
+
#ifndef CYTHON_USE_PYLONG_INTERNALS
|
|
281
|
+
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
282
|
+
#endif
|
|
271
283
|
#undef CYTHON_USE_PYLIST_INTERNALS
|
|
272
284
|
#define CYTHON_USE_PYLIST_INTERNALS 0
|
|
273
285
|
#ifndef CYTHON_USE_UNICODE_INTERNALS
|
|
@@ -275,8 +287,6 @@ END: Cython Metadata */
|
|
|
275
287
|
#endif
|
|
276
288
|
#undef CYTHON_USE_UNICODE_WRITER
|
|
277
289
|
#define CYTHON_USE_UNICODE_WRITER 0
|
|
278
|
-
#undef CYTHON_USE_PYLONG_INTERNALS
|
|
279
|
-
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
280
290
|
#ifndef CYTHON_AVOID_BORROWED_REFS
|
|
281
291
|
#define CYTHON_AVOID_BORROWED_REFS 0
|
|
282
292
|
#endif
|
|
@@ -288,11 +298,22 @@ END: Cython Metadata */
|
|
|
288
298
|
#endif
|
|
289
299
|
#undef CYTHON_FAST_THREAD_STATE
|
|
290
300
|
#define CYTHON_FAST_THREAD_STATE 0
|
|
301
|
+
#undef CYTHON_FAST_GIL
|
|
302
|
+
#define CYTHON_FAST_GIL 0
|
|
303
|
+
#ifndef CYTHON_METH_FASTCALL
|
|
304
|
+
#define CYTHON_METH_FASTCALL 1
|
|
305
|
+
#endif
|
|
291
306
|
#undef CYTHON_FAST_PYCALL
|
|
292
307
|
#define CYTHON_FAST_PYCALL 0
|
|
308
|
+
#ifndef CYTHON_PEP487_INIT_SUBCLASS
|
|
309
|
+
#define CYTHON_PEP487_INIT_SUBCLASS 1
|
|
310
|
+
#endif
|
|
293
311
|
#ifndef CYTHON_PEP489_MULTI_PHASE_INIT
|
|
294
312
|
#define CYTHON_PEP489_MULTI_PHASE_INIT 1
|
|
295
313
|
#endif
|
|
314
|
+
#ifndef CYTHON_USE_MODULE_STATE
|
|
315
|
+
#define CYTHON_USE_MODULE_STATE 0
|
|
316
|
+
#endif
|
|
296
317
|
#ifndef CYTHON_USE_TP_FINALIZE
|
|
297
318
|
#define CYTHON_USE_TP_FINALIZE 1
|
|
298
319
|
#endif
|
|
@@ -300,6 +321,12 @@ END: Cython Metadata */
|
|
|
300
321
|
#define CYTHON_USE_DICT_VERSIONS 0
|
|
301
322
|
#undef CYTHON_USE_EXC_INFO_STACK
|
|
302
323
|
#define CYTHON_USE_EXC_INFO_STACK 0
|
|
324
|
+
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
325
|
+
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
326
|
+
#endif
|
|
327
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
328
|
+
#define CYTHON_USE_FREELISTS 0
|
|
329
|
+
#endif
|
|
303
330
|
#else
|
|
304
331
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
305
332
|
#define CYTHON_COMPILING_IN_CPYTHON 1
|
|
@@ -390,6 +417,9 @@ END: Cython Metadata */
|
|
|
390
417
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
391
418
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
392
419
|
#endif
|
|
420
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
421
|
+
#define CYTHON_USE_FREELISTS 1
|
|
422
|
+
#endif
|
|
393
423
|
#endif
|
|
394
424
|
#if !defined(CYTHON_FAST_PYCCALL)
|
|
395
425
|
#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
|
|
@@ -582,14 +612,14 @@ END: Cython Metadata */
|
|
|
582
612
|
PyObject *exception_table = NULL;
|
|
583
613
|
PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
|
|
584
614
|
#if __PYX_LIMITED_VERSION_HEX < 0x030B0000
|
|
585
|
-
PyObject *version_info;
|
|
615
|
+
PyObject *version_info;
|
|
586
616
|
PyObject *py_minor_version = NULL;
|
|
587
617
|
#endif
|
|
588
618
|
long minor_version = 0;
|
|
589
619
|
PyObject *type, *value, *traceback;
|
|
590
620
|
PyErr_Fetch(&type, &value, &traceback);
|
|
591
621
|
#if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
|
|
592
|
-
minor_version = 11;
|
|
622
|
+
minor_version = 11;
|
|
593
623
|
#else
|
|
594
624
|
if (!(version_info = PySys_GetObject("version_info"))) goto end;
|
|
595
625
|
if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
|
|
@@ -647,7 +677,7 @@ END: Cython Metadata */
|
|
|
647
677
|
PyObject *fv, PyObject *cell, PyObject* fn,
|
|
648
678
|
PyObject *name, int fline, PyObject *lnos) {
|
|
649
679
|
PyCodeObject *result;
|
|
650
|
-
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
680
|
+
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
651
681
|
if (!empty_bytes) return NULL;
|
|
652
682
|
result =
|
|
653
683
|
#if PY_VERSION_HEX >= 0x030C0000
|
|
@@ -733,8 +763,13 @@ END: Cython Metadata */
|
|
|
733
763
|
typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
|
|
734
764
|
Py_ssize_t nargs, PyObject *kwnames);
|
|
735
765
|
#else
|
|
736
|
-
#
|
|
737
|
-
#define
|
|
766
|
+
#if PY_VERSION_HEX >= 0x030d00A4
|
|
767
|
+
# define __Pyx_PyCFunctionFast PyCFunctionFast
|
|
768
|
+
# define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
|
|
769
|
+
#else
|
|
770
|
+
# define __Pyx_PyCFunctionFast _PyCFunctionFast
|
|
771
|
+
# define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
|
|
772
|
+
#endif
|
|
738
773
|
#endif
|
|
739
774
|
#if CYTHON_METH_FASTCALL
|
|
740
775
|
#define __Pyx_METH_FASTCALL METH_FASTCALL
|
|
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
|
|
|
1086
1121
|
#define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
|
|
1087
1122
|
#define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
|
|
1088
1123
|
#endif
|
|
1089
|
-
#if
|
|
1124
|
+
#if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
|
|
1090
1125
|
#define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
|
|
1091
1126
|
#else
|
|
1092
1127
|
static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
|
|
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
|
|
|
1173
1208
|
#endif
|
|
1174
1209
|
|
|
1175
1210
|
#define __PYX_MARK_ERR_POS(f_index, lineno) \
|
|
1176
|
-
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__;
|
|
1211
|
+
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
|
|
1177
1212
|
#define __PYX_ERR(f_index, lineno, Ln_error) \
|
|
1178
1213
|
{ __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
|
|
1179
1214
|
|
|
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
|
|
|
1288
1323
|
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
|
|
1289
1324
|
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
|
|
1290
1325
|
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
|
|
1291
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
1292
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
|
|
1293
|
-
{
|
|
1294
|
-
const wchar_t *u_end = u;
|
|
1295
|
-
while (*u_end++) ;
|
|
1296
|
-
return (size_t)(u_end - u - 1);
|
|
1297
|
-
}
|
|
1298
|
-
#else
|
|
1299
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
|
|
1300
|
-
{
|
|
1301
|
-
const Py_UNICODE *u_end = u;
|
|
1302
|
-
while (*u_end++) ;
|
|
1303
|
-
return (size_t)(u_end - u - 1);
|
|
1304
|
-
}
|
|
1305
|
-
#endif
|
|
1306
1326
|
#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
|
|
1307
|
-
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
|
|
1308
|
-
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
|
|
1309
1327
|
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
|
1310
1328
|
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
|
1311
1329
|
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
|
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
|
|
|
1355
1373
|
#endif
|
|
1356
1374
|
typedef Py_ssize_t __Pyx_compact_pylong;
|
|
1357
1375
|
typedef size_t __Pyx_compact_upylong;
|
|
1358
|
-
#else
|
|
1376
|
+
#else
|
|
1359
1377
|
#define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
|
|
1360
1378
|
#define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
|
|
1361
1379
|
#define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
|
|
@@ -1645,7 +1663,7 @@ typedef struct {
|
|
|
1645
1663
|
|
|
1646
1664
|
/* #### Code section: numeric_typedefs ### */
|
|
1647
1665
|
|
|
1648
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1666
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":731
|
|
1649
1667
|
* # in Cython to enable them only on the right systems.
|
|
1650
1668
|
*
|
|
1651
1669
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1654,7 +1672,7 @@ typedef struct {
|
|
|
1654
1672
|
*/
|
|
1655
1673
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1656
1674
|
|
|
1657
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1675
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1658
1676
|
*
|
|
1659
1677
|
* ctypedef npy_int8 int8_t
|
|
1660
1678
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1663
1681
|
*/
|
|
1664
1682
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1665
1683
|
|
|
1666
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1684
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1667
1685
|
* ctypedef npy_int8 int8_t
|
|
1668
1686
|
* ctypedef npy_int16 int16_t
|
|
1669
1687
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1672
1690
|
*/
|
|
1673
1691
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1674
1692
|
|
|
1675
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1693
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":734
|
|
1676
1694
|
* ctypedef npy_int16 int16_t
|
|
1677
1695
|
* ctypedef npy_int32 int32_t
|
|
1678
1696
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1681
1699
|
*/
|
|
1682
1700
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1683
1701
|
|
|
1684
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1702
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":738
|
|
1685
1703
|
* #ctypedef npy_int128 int128_t
|
|
1686
1704
|
*
|
|
1687
1705
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1690
1708
|
*/
|
|
1691
1709
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1692
1710
|
|
|
1693
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1711
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1694
1712
|
*
|
|
1695
1713
|
* ctypedef npy_uint8 uint8_t
|
|
1696
1714
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1699
1717
|
*/
|
|
1700
1718
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1701
1719
|
|
|
1702
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1720
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1703
1721
|
* ctypedef npy_uint8 uint8_t
|
|
1704
1722
|
* ctypedef npy_uint16 uint16_t
|
|
1705
1723
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1708
1726
|
*/
|
|
1709
1727
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1710
1728
|
|
|
1711
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1729
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":741
|
|
1712
1730
|
* ctypedef npy_uint16 uint16_t
|
|
1713
1731
|
* ctypedef npy_uint32 uint32_t
|
|
1714
1732
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1717
1735
|
*/
|
|
1718
1736
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1719
1737
|
|
|
1720
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1738
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
|
|
1721
1739
|
* #ctypedef npy_uint128 uint128_t
|
|
1722
1740
|
*
|
|
1723
1741
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1726
1744
|
*/
|
|
1727
1745
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1728
1746
|
|
|
1729
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1747
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
|
|
1730
1748
|
*
|
|
1731
1749
|
* ctypedef npy_float32 float32_t
|
|
1732
1750
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1735
1753
|
*/
|
|
1736
1754
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1737
1755
|
|
|
1738
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1756
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":755
|
|
1739
1757
|
* # The int types are mapped a bit surprising --
|
|
1740
1758
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1741
1759
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1744
1762
|
*/
|
|
1745
1763
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1746
1764
|
|
|
1747
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1765
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":756
|
|
1748
1766
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1749
1767
|
* ctypedef npy_long int_t
|
|
1750
1768
|
* ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
|
|
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1753
1771
|
*/
|
|
1754
1772
|
typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
1755
1773
|
|
|
1756
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1774
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1757
1775
|
* ctypedef npy_long int_t
|
|
1758
1776
|
* ctypedef npy_longlong long_t
|
|
1759
1777
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
|
1762
1780
|
*/
|
|
1763
1781
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1764
1782
|
|
|
1765
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1783
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":759
|
|
1766
1784
|
* ctypedef npy_longlong longlong_t
|
|
1767
1785
|
*
|
|
1768
1786
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1771
1789
|
*/
|
|
1772
1790
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1773
1791
|
|
|
1774
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1792
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1775
1793
|
*
|
|
1776
1794
|
* ctypedef npy_ulong uint_t
|
|
1777
1795
|
* ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
|
|
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1780
1798
|
*/
|
|
1781
1799
|
typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
1782
1800
|
|
|
1783
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1801
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1784
1802
|
* ctypedef npy_ulong uint_t
|
|
1785
1803
|
* ctypedef npy_ulonglong ulong_t
|
|
1786
1804
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
|
1789
1807
|
*/
|
|
1790
1808
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1791
1809
|
|
|
1792
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1810
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":763
|
|
1793
1811
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1794
1812
|
*
|
|
1795
1813
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1798
1816
|
*/
|
|
1799
1817
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1800
1818
|
|
|
1801
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1819
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1802
1820
|
*
|
|
1803
1821
|
* ctypedef npy_intp intp_t
|
|
1804
1822
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1807
1825
|
*/
|
|
1808
1826
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1809
1827
|
|
|
1810
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1828
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":766
|
|
1811
1829
|
* ctypedef npy_uintp uintp_t
|
|
1812
1830
|
*
|
|
1813
1831
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1816
1834
|
*/
|
|
1817
1835
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1818
1836
|
|
|
1819
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1837
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1820
1838
|
*
|
|
1821
1839
|
* ctypedef npy_double float_t
|
|
1822
1840
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1825
1843
|
*/
|
|
1826
1844
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1827
1845
|
|
|
1828
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1846
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1829
1847
|
* ctypedef npy_double float_t
|
|
1830
1848
|
* ctypedef npy_double double_t
|
|
1831
1849
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1894,7 +1912,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1894
1912
|
struct __pyx_memoryview_obj;
|
|
1895
1913
|
struct __pyx_memoryviewslice_obj;
|
|
1896
1914
|
|
|
1897
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1915
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
|
|
1898
1916
|
* ctypedef npy_longdouble longdouble_t
|
|
1899
1917
|
*
|
|
1900
1918
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1903,7 +1921,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1903
1921
|
*/
|
|
1904
1922
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1905
1923
|
|
|
1906
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1924
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1907
1925
|
*
|
|
1908
1926
|
* ctypedef npy_cfloat cfloat_t
|
|
1909
1927
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1912,7 +1930,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1912
1930
|
*/
|
|
1913
1931
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1914
1932
|
|
|
1915
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1933
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1916
1934
|
* ctypedef npy_cfloat cfloat_t
|
|
1917
1935
|
* ctypedef npy_cdouble cdouble_t
|
|
1918
1936
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1921,7 +1939,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1921
1939
|
*/
|
|
1922
1940
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1923
1941
|
|
|
1924
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1942
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
|
|
1925
1943
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1926
1944
|
*
|
|
1927
1945
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2275,8 +2293,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2275
2293
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2276
2294
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2277
2295
|
#else
|
|
2278
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2279
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2296
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2297
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2280
2298
|
#endif
|
|
2281
2299
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2282
2300
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2292,8 +2310,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2292
2310
|
#else
|
|
2293
2311
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2294
2312
|
#endif
|
|
2295
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2296
|
-
|
|
2313
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2314
|
+
to have the same reference counting */
|
|
2315
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2297
2316
|
#else
|
|
2298
2317
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2299
2318
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2784,22 +2803,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2784
2803
|
#endif
|
|
2785
2804
|
|
|
2786
2805
|
/* TypeImport.proto */
|
|
2787
|
-
#ifndef
|
|
2788
|
-
#define
|
|
2806
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2807
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2789
2808
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2790
2809
|
#include <stdalign.h>
|
|
2791
2810
|
#endif
|
|
2792
2811
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2793
|
-
#define
|
|
2812
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2794
2813
|
#else
|
|
2795
|
-
#define
|
|
2814
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2796
2815
|
#endif
|
|
2797
|
-
enum
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2816
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2817
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2818
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2819
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2801
2820
|
};
|
|
2802
|
-
static PyTypeObject *
|
|
2821
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size);
|
|
2803
2822
|
#endif
|
|
2804
2823
|
|
|
2805
2824
|
/* FetchSharedCythonModule.proto */
|
|
@@ -2892,7 +2911,7 @@ typedef struct {
|
|
|
2892
2911
|
#endif
|
|
2893
2912
|
void *defaults;
|
|
2894
2913
|
int defaults_pyobjects;
|
|
2895
|
-
size_t defaults_size;
|
|
2914
|
+
size_t defaults_size;
|
|
2896
2915
|
int flags;
|
|
2897
2916
|
PyObject *defaults_tuple;
|
|
2898
2917
|
PyObject *defaults_kwdict;
|
|
@@ -18707,7 +18726,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18707
18726
|
return __pyx_r;
|
|
18708
18727
|
}
|
|
18709
18728
|
|
|
18710
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18729
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
|
|
18711
18730
|
*
|
|
18712
18731
|
* @property
|
|
18713
18732
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18718,7 +18737,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18718
18737
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18719
18738
|
PyObject *__pyx_r;
|
|
18720
18739
|
|
|
18721
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18740
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
|
|
18722
18741
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18723
18742
|
* """
|
|
18724
18743
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18728,7 +18747,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18728
18747
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18729
18748
|
goto __pyx_L0;
|
|
18730
18749
|
|
|
18731
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18750
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
|
|
18732
18751
|
*
|
|
18733
18752
|
* @property
|
|
18734
18753
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18741,7 +18760,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18741
18760
|
return __pyx_r;
|
|
18742
18761
|
}
|
|
18743
18762
|
|
|
18744
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18763
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
|
|
18745
18764
|
*
|
|
18746
18765
|
* @property
|
|
18747
18766
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18755,7 +18774,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18755
18774
|
PyArray_Descr *__pyx_t_1;
|
|
18756
18775
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
18757
18776
|
|
|
18758
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18777
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
|
|
18759
18778
|
* """Returns an owned reference to the dtype of the array.
|
|
18760
18779
|
* """
|
|
18761
18780
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18768,7 +18787,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18768
18787
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
18769
18788
|
goto __pyx_L0;
|
|
18770
18789
|
|
|
18771
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18790
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
|
|
18772
18791
|
*
|
|
18773
18792
|
* @property
|
|
18774
18793
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18783,7 +18802,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18783
18802
|
return __pyx_r;
|
|
18784
18803
|
}
|
|
18785
18804
|
|
|
18786
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18805
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
|
|
18787
18806
|
*
|
|
18788
18807
|
* @property
|
|
18789
18808
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18794,7 +18813,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18794
18813
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18795
18814
|
int __pyx_r;
|
|
18796
18815
|
|
|
18797
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18816
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
|
|
18798
18817
|
* """Returns the number of dimensions in the array.
|
|
18799
18818
|
* """
|
|
18800
18819
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18804,7 +18823,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18804
18823
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18805
18824
|
goto __pyx_L0;
|
|
18806
18825
|
|
|
18807
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18826
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
|
|
18808
18827
|
*
|
|
18809
18828
|
* @property
|
|
18810
18829
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18817,7 +18836,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18817
18836
|
return __pyx_r;
|
|
18818
18837
|
}
|
|
18819
18838
|
|
|
18820
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18839
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
|
18821
18840
|
*
|
|
18822
18841
|
* @property
|
|
18823
18842
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18828,7 +18847,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18828
18847
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18829
18848
|
npy_intp *__pyx_r;
|
|
18830
18849
|
|
|
18831
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18850
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
|
|
18832
18851
|
* Can return NULL for 0-dimensional arrays.
|
|
18833
18852
|
* """
|
|
18834
18853
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18838,7 +18857,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18838
18857
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18839
18858
|
goto __pyx_L0;
|
|
18840
18859
|
|
|
18841
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18860
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
|
18842
18861
|
*
|
|
18843
18862
|
* @property
|
|
18844
18863
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18851,7 +18870,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18851
18870
|
return __pyx_r;
|
|
18852
18871
|
}
|
|
18853
18872
|
|
|
18854
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18873
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
|
|
18855
18874
|
*
|
|
18856
18875
|
* @property
|
|
18857
18876
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18862,7 +18881,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18862
18881
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18863
18882
|
npy_intp *__pyx_r;
|
|
18864
18883
|
|
|
18865
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18884
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
|
|
18866
18885
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18867
18886
|
* """
|
|
18868
18887
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18872,7 +18891,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18872
18891
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18873
18892
|
goto __pyx_L0;
|
|
18874
18893
|
|
|
18875
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18894
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
|
|
18876
18895
|
*
|
|
18877
18896
|
* @property
|
|
18878
18897
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18885,7 +18904,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18885
18904
|
return __pyx_r;
|
|
18886
18905
|
}
|
|
18887
18906
|
|
|
18888
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18907
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
|
|
18889
18908
|
*
|
|
18890
18909
|
* @property
|
|
18891
18910
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18896,7 +18915,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18896
18915
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18897
18916
|
npy_intp __pyx_r;
|
|
18898
18917
|
|
|
18899
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18918
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
|
|
18900
18919
|
* """Returns the total size (in number of elements) of the array.
|
|
18901
18920
|
* """
|
|
18902
18921
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18906,7 +18925,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18906
18925
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18907
18926
|
goto __pyx_L0;
|
|
18908
18927
|
|
|
18909
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18928
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
|
|
18910
18929
|
*
|
|
18911
18930
|
* @property
|
|
18912
18931
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18919,7 +18938,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18919
18938
|
return __pyx_r;
|
|
18920
18939
|
}
|
|
18921
18940
|
|
|
18922
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18941
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
|
18923
18942
|
*
|
|
18924
18943
|
* @property
|
|
18925
18944
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18930,7 +18949,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18930
18949
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18931
18950
|
char *__pyx_r;
|
|
18932
18951
|
|
|
18933
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18952
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
|
|
18934
18953
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18935
18954
|
* """
|
|
18936
18955
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18940,7 +18959,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18940
18959
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18941
18960
|
goto __pyx_L0;
|
|
18942
18961
|
|
|
18943
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18962
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
|
18944
18963
|
*
|
|
18945
18964
|
* @property
|
|
18946
18965
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18953,7 +18972,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18953
18972
|
return __pyx_r;
|
|
18954
18973
|
}
|
|
18955
18974
|
|
|
18956
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18975
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18957
18976
|
* ctypedef npy_cdouble complex_t
|
|
18958
18977
|
*
|
|
18959
18978
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18970,7 +18989,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18970
18989
|
int __pyx_clineno = 0;
|
|
18971
18990
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18972
18991
|
|
|
18973
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18992
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18974
18993
|
*
|
|
18975
18994
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18976
18995
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18984,7 +19003,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18984
19003
|
__pyx_t_1 = 0;
|
|
18985
19004
|
goto __pyx_L0;
|
|
18986
19005
|
|
|
18987
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19006
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18988
19007
|
* ctypedef npy_cdouble complex_t
|
|
18989
19008
|
*
|
|
18990
19009
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19003,7 +19022,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19003
19022
|
return __pyx_r;
|
|
19004
19023
|
}
|
|
19005
19024
|
|
|
19006
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19025
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
|
19007
19026
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19008
19027
|
*
|
|
19009
19028
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19020,7 +19039,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19020
19039
|
int __pyx_clineno = 0;
|
|
19021
19040
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
19022
19041
|
|
|
19023
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19042
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
|
|
19024
19043
|
*
|
|
19025
19044
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
19026
19045
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -19034,7 +19053,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19034
19053
|
__pyx_t_1 = 0;
|
|
19035
19054
|
goto __pyx_L0;
|
|
19036
19055
|
|
|
19037
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19056
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
|
19038
19057
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19039
19058
|
*
|
|
19040
19059
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19053,7 +19072,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19053
19072
|
return __pyx_r;
|
|
19054
19073
|
}
|
|
19055
19074
|
|
|
19056
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19075
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
|
19057
19076
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19058
19077
|
*
|
|
19059
19078
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19070,7 +19089,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19070
19089
|
int __pyx_clineno = 0;
|
|
19071
19090
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
19072
19091
|
|
|
19073
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19092
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19074
19093
|
*
|
|
19075
19094
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
19076
19095
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -19084,7 +19103,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19084
19103
|
__pyx_t_1 = 0;
|
|
19085
19104
|
goto __pyx_L0;
|
|
19086
19105
|
|
|
19087
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19106
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
|
19088
19107
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19089
19108
|
*
|
|
19090
19109
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19103,7 +19122,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19103
19122
|
return __pyx_r;
|
|
19104
19123
|
}
|
|
19105
19124
|
|
|
19106
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19125
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
|
19107
19126
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19108
19127
|
*
|
|
19109
19128
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19120,7 +19139,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19120
19139
|
int __pyx_clineno = 0;
|
|
19121
19140
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
19122
19141
|
|
|
19123
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19142
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19124
19143
|
*
|
|
19125
19144
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
19126
19145
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -19134,7 +19153,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19134
19153
|
__pyx_t_1 = 0;
|
|
19135
19154
|
goto __pyx_L0;
|
|
19136
19155
|
|
|
19137
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19156
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
|
19138
19157
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19139
19158
|
*
|
|
19140
19159
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19153,7 +19172,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19153
19172
|
return __pyx_r;
|
|
19154
19173
|
}
|
|
19155
19174
|
|
|
19156
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19175
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
|
19157
19176
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19158
19177
|
*
|
|
19159
19178
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19170,7 +19189,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19170
19189
|
int __pyx_clineno = 0;
|
|
19171
19190
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
19172
19191
|
|
|
19173
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19192
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19174
19193
|
*
|
|
19175
19194
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
19176
19195
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -19184,7 +19203,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19184
19203
|
__pyx_t_1 = 0;
|
|
19185
19204
|
goto __pyx_L0;
|
|
19186
19205
|
|
|
19187
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19206
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
|
19188
19207
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19189
19208
|
*
|
|
19190
19209
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19203,7 +19222,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19203
19222
|
return __pyx_r;
|
|
19204
19223
|
}
|
|
19205
19224
|
|
|
19206
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19225
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
|
19207
19226
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19208
19227
|
*
|
|
19209
19228
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19217,7 +19236,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19217
19236
|
int __pyx_t_1;
|
|
19218
19237
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
19219
19238
|
|
|
19220
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19239
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19221
19240
|
*
|
|
19222
19241
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19223
19242
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19227,7 +19246,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19227
19246
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
19228
19247
|
if (__pyx_t_1) {
|
|
19229
19248
|
|
|
19230
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19249
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19231
19250
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19232
19251
|
* if PyDataType_HASSUBARRAY(d):
|
|
19233
19252
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -19239,7 +19258,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19239
19258
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
19240
19259
|
goto __pyx_L0;
|
|
19241
19260
|
|
|
19242
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19261
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19243
19262
|
*
|
|
19244
19263
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19245
19264
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19248,7 +19267,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19248
19267
|
*/
|
|
19249
19268
|
}
|
|
19250
19269
|
|
|
19251
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19270
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
|
|
19252
19271
|
* return <tuple>d.subarray.shape
|
|
19253
19272
|
* else:
|
|
19254
19273
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -19262,7 +19281,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19262
19281
|
goto __pyx_L0;
|
|
19263
19282
|
}
|
|
19264
19283
|
|
|
19265
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19284
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
|
19266
19285
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19267
19286
|
*
|
|
19268
19287
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19277,7 +19296,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19277
19296
|
return __pyx_r;
|
|
19278
19297
|
}
|
|
19279
19298
|
|
|
19280
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19299
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
|
|
19281
19300
|
* int _import_umath() except -1
|
|
19282
19301
|
*
|
|
19283
19302
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19287,7 +19306,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19287
19306
|
|
|
19288
19307
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
19289
19308
|
|
|
19290
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19309
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19291
19310
|
*
|
|
19292
19311
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19293
19312
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -19296,7 +19315,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19296
19315
|
*/
|
|
19297
19316
|
Py_INCREF(__pyx_v_base);
|
|
19298
19317
|
|
|
19299
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19318
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19300
19319
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19301
19320
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
19302
19321
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -19305,7 +19324,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19305
19324
|
*/
|
|
19306
19325
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
19307
19326
|
|
|
19308
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19327
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
|
|
19309
19328
|
* int _import_umath() except -1
|
|
19310
19329
|
*
|
|
19311
19330
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19316,7 +19335,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19316
19335
|
/* function exit code */
|
|
19317
19336
|
}
|
|
19318
19337
|
|
|
19319
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19338
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
|
|
19320
19339
|
* PyArray_SetBaseObject(arr, base)
|
|
19321
19340
|
*
|
|
19322
19341
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19331,7 +19350,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19331
19350
|
int __pyx_t_1;
|
|
19332
19351
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
19333
19352
|
|
|
19334
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19353
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19335
19354
|
*
|
|
19336
19355
|
* cdef inline object get_array_base(ndarray arr):
|
|
19337
19356
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -19340,7 +19359,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19340
19359
|
*/
|
|
19341
19360
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
19342
19361
|
|
|
19343
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19362
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19344
19363
|
* cdef inline object get_array_base(ndarray arr):
|
|
19345
19364
|
* base = PyArray_BASE(arr)
|
|
19346
19365
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19350,7 +19369,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19350
19369
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
19351
19370
|
if (__pyx_t_1) {
|
|
19352
19371
|
|
|
19353
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19372
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19354
19373
|
* base = PyArray_BASE(arr)
|
|
19355
19374
|
* if base is NULL:
|
|
19356
19375
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -19361,7 +19380,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19361
19380
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
19362
19381
|
goto __pyx_L0;
|
|
19363
19382
|
|
|
19364
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19383
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19365
19384
|
* cdef inline object get_array_base(ndarray arr):
|
|
19366
19385
|
* base = PyArray_BASE(arr)
|
|
19367
19386
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19370,7 +19389,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19370
19389
|
*/
|
|
19371
19390
|
}
|
|
19372
19391
|
|
|
19373
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19392
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
|
|
19374
19393
|
* if base is NULL:
|
|
19375
19394
|
* return None
|
|
19376
19395
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -19382,7 +19401,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19382
19401
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
19383
19402
|
goto __pyx_L0;
|
|
19384
19403
|
|
|
19385
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19404
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
|
|
19386
19405
|
* PyArray_SetBaseObject(arr, base)
|
|
19387
19406
|
*
|
|
19388
19407
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19397,7 +19416,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19397
19416
|
return __pyx_r;
|
|
19398
19417
|
}
|
|
19399
19418
|
|
|
19400
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19419
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
|
|
19401
19420
|
* # Versions of the import_* functions which are more suitable for
|
|
19402
19421
|
* # Cython code.
|
|
19403
19422
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19421,7 +19440,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19421
19440
|
int __pyx_clineno = 0;
|
|
19422
19441
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19423
19442
|
|
|
19424
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19443
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19425
19444
|
* # Cython code.
|
|
19426
19445
|
* cdef inline int import_array() except -1:
|
|
19427
19446
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19437,7 +19456,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19437
19456
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19438
19457
|
/*try:*/ {
|
|
19439
19458
|
|
|
19440
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19459
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19441
19460
|
* cdef inline int import_array() except -1:
|
|
19442
19461
|
* try:
|
|
19443
19462
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19446,7 +19465,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19446
19465
|
*/
|
|
19447
19466
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
|
|
19448
19467
|
|
|
19449
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19468
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19450
19469
|
* # Cython code.
|
|
19451
19470
|
* cdef inline int import_array() except -1:
|
|
19452
19471
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19460,7 +19479,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19460
19479
|
goto __pyx_L8_try_end;
|
|
19461
19480
|
__pyx_L3_error:;
|
|
19462
19481
|
|
|
19463
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19482
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
|
|
19464
19483
|
* try:
|
|
19465
19484
|
* __pyx_import_array()
|
|
19466
19485
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19475,7 +19494,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19475
19494
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19476
19495
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19477
19496
|
|
|
19478
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19497
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19479
19498
|
* __pyx_import_array()
|
|
19480
19499
|
* except Exception:
|
|
19481
19500
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19490,7 +19509,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19490
19509
|
}
|
|
19491
19510
|
goto __pyx_L5_except_error;
|
|
19492
19511
|
|
|
19493
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19512
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19494
19513
|
* # Cython code.
|
|
19495
19514
|
* cdef inline int import_array() except -1:
|
|
19496
19515
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19506,7 +19525,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19506
19525
|
__pyx_L8_try_end:;
|
|
19507
19526
|
}
|
|
19508
19527
|
|
|
19509
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19528
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
|
|
19510
19529
|
* # Versions of the import_* functions which are more suitable for
|
|
19511
19530
|
* # Cython code.
|
|
19512
19531
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19529,7 +19548,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19529
19548
|
return __pyx_r;
|
|
19530
19549
|
}
|
|
19531
19550
|
|
|
19532
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19551
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
|
|
19533
19552
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19534
19553
|
*
|
|
19535
19554
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19553,7 +19572,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19553
19572
|
int __pyx_clineno = 0;
|
|
19554
19573
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19555
19574
|
|
|
19556
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19575
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19557
19576
|
*
|
|
19558
19577
|
* cdef inline int import_umath() except -1:
|
|
19559
19578
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19569,7 +19588,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19569
19588
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19570
19589
|
/*try:*/ {
|
|
19571
19590
|
|
|
19572
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19591
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19573
19592
|
* cdef inline int import_umath() except -1:
|
|
19574
19593
|
* try:
|
|
19575
19594
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19578,7 +19597,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19578
19597
|
*/
|
|
19579
19598
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
|
|
19580
19599
|
|
|
19581
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19600
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19582
19601
|
*
|
|
19583
19602
|
* cdef inline int import_umath() except -1:
|
|
19584
19603
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19592,7 +19611,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19592
19611
|
goto __pyx_L8_try_end;
|
|
19593
19612
|
__pyx_L3_error:;
|
|
19594
19613
|
|
|
19595
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19614
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
|
|
19596
19615
|
* try:
|
|
19597
19616
|
* _import_umath()
|
|
19598
19617
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19607,7 +19626,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19607
19626
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19608
19627
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19609
19628
|
|
|
19610
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19629
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19611
19630
|
* _import_umath()
|
|
19612
19631
|
* except Exception:
|
|
19613
19632
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19622,7 +19641,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19622
19641
|
}
|
|
19623
19642
|
goto __pyx_L5_except_error;
|
|
19624
19643
|
|
|
19625
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19644
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19626
19645
|
*
|
|
19627
19646
|
* cdef inline int import_umath() except -1:
|
|
19628
19647
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19638,7 +19657,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19638
19657
|
__pyx_L8_try_end:;
|
|
19639
19658
|
}
|
|
19640
19659
|
|
|
19641
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19660
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
|
|
19642
19661
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19643
19662
|
*
|
|
19644
19663
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19661,7 +19680,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19661
19680
|
return __pyx_r;
|
|
19662
19681
|
}
|
|
19663
19682
|
|
|
19664
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19683
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
|
19665
19684
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19666
19685
|
*
|
|
19667
19686
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19685,7 +19704,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19685
19704
|
int __pyx_clineno = 0;
|
|
19686
19705
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19687
19706
|
|
|
19688
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19707
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19689
19708
|
*
|
|
19690
19709
|
* cdef inline int import_ufunc() except -1:
|
|
19691
19710
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19701,7 +19720,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19701
19720
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19702
19721
|
/*try:*/ {
|
|
19703
19722
|
|
|
19704
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19723
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19705
19724
|
* cdef inline int import_ufunc() except -1:
|
|
19706
19725
|
* try:
|
|
19707
19726
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19710,7 +19729,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19710
19729
|
*/
|
|
19711
19730
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
|
|
19712
19731
|
|
|
19713
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19732
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19714
19733
|
*
|
|
19715
19734
|
* cdef inline int import_ufunc() except -1:
|
|
19716
19735
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19724,7 +19743,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19724
19743
|
goto __pyx_L8_try_end;
|
|
19725
19744
|
__pyx_L3_error:;
|
|
19726
19745
|
|
|
19727
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19746
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
|
|
19728
19747
|
* try:
|
|
19729
19748
|
* _import_umath()
|
|
19730
19749
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19739,7 +19758,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19739
19758
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19740
19759
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19741
19760
|
|
|
19742
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19761
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
|
19743
19762
|
* _import_umath()
|
|
19744
19763
|
* except Exception:
|
|
19745
19764
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19754,7 +19773,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19754
19773
|
}
|
|
19755
19774
|
goto __pyx_L5_except_error;
|
|
19756
19775
|
|
|
19757
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19776
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19758
19777
|
*
|
|
19759
19778
|
* cdef inline int import_ufunc() except -1:
|
|
19760
19779
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19770,7 +19789,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19770
19789
|
__pyx_L8_try_end:;
|
|
19771
19790
|
}
|
|
19772
19791
|
|
|
19773
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19792
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
|
19774
19793
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19775
19794
|
*
|
|
19776
19795
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19793,7 +19812,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19793
19812
|
return __pyx_r;
|
|
19794
19813
|
}
|
|
19795
19814
|
|
|
19796
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19815
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
19797
19816
|
*
|
|
19798
19817
|
*
|
|
19799
19818
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19804,7 +19823,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19804
19823
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19805
19824
|
int __pyx_r;
|
|
19806
19825
|
|
|
19807
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19826
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
19808
19827
|
* bool
|
|
19809
19828
|
* """
|
|
19810
19829
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19814,7 +19833,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19814
19833
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
19815
19834
|
goto __pyx_L0;
|
|
19816
19835
|
|
|
19817
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19836
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
19818
19837
|
*
|
|
19819
19838
|
*
|
|
19820
19839
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19827,7 +19846,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19827
19846
|
return __pyx_r;
|
|
19828
19847
|
}
|
|
19829
19848
|
|
|
19830
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19849
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
19831
19850
|
*
|
|
19832
19851
|
*
|
|
19833
19852
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19838,7 +19857,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19838
19857
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19839
19858
|
int __pyx_r;
|
|
19840
19859
|
|
|
19841
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19860
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
19842
19861
|
* bool
|
|
19843
19862
|
* """
|
|
19844
19863
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19848,7 +19867,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19848
19867
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19849
19868
|
goto __pyx_L0;
|
|
19850
19869
|
|
|
19851
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19870
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
19852
19871
|
*
|
|
19853
19872
|
*
|
|
19854
19873
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19861,7 +19880,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19861
19880
|
return __pyx_r;
|
|
19862
19881
|
}
|
|
19863
19882
|
|
|
19864
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19883
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
19865
19884
|
*
|
|
19866
19885
|
*
|
|
19867
19886
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19872,7 +19891,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19872
19891
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19873
19892
|
npy_datetime __pyx_r;
|
|
19874
19893
|
|
|
19875
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19894
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
|
|
19876
19895
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19877
19896
|
* """
|
|
19878
19897
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19882,7 +19901,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19882
19901
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19883
19902
|
goto __pyx_L0;
|
|
19884
19903
|
|
|
19885
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19904
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
19886
19905
|
*
|
|
19887
19906
|
*
|
|
19888
19907
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19895,7 +19914,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19895
19914
|
return __pyx_r;
|
|
19896
19915
|
}
|
|
19897
19916
|
|
|
19898
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19917
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
19899
19918
|
*
|
|
19900
19919
|
*
|
|
19901
19920
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19906,7 +19925,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19906
19925
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19907
19926
|
npy_timedelta __pyx_r;
|
|
19908
19927
|
|
|
19909
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19928
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
|
|
19910
19929
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19911
19930
|
* """
|
|
19912
19931
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19916,7 +19935,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19916
19935
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19917
19936
|
goto __pyx_L0;
|
|
19918
19937
|
|
|
19919
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19938
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
19920
19939
|
*
|
|
19921
19940
|
*
|
|
19922
19941
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19929,7 +19948,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19929
19948
|
return __pyx_r;
|
|
19930
19949
|
}
|
|
19931
19950
|
|
|
19932
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19951
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
|
|
19933
19952
|
*
|
|
19934
19953
|
*
|
|
19935
19954
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19940,7 +19959,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19940
19959
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19941
19960
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19942
19961
|
|
|
19943
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19962
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
|
|
19944
19963
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19945
19964
|
* """
|
|
19946
19965
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19948,7 +19967,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19948
19967
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19949
19968
|
goto __pyx_L0;
|
|
19950
19969
|
|
|
19951
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19970
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
|
|
19952
19971
|
*
|
|
19953
19972
|
*
|
|
19954
19973
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -28811,7 +28830,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
28811
28830
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
28812
28831
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
28813
28832
|
|
|
28814
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
28833
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
|
|
28815
28834
|
* __pyx_import_array()
|
|
28816
28835
|
* except Exception:
|
|
28817
28836
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -28822,7 +28841,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
28822
28841
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
28823
28842
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
28824
28843
|
|
|
28825
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
28844
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
|
|
28826
28845
|
* _import_umath()
|
|
28827
28846
|
* except Exception:
|
|
28828
28847
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -29520,33 +29539,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
29520
29539
|
/*--- Type import code ---*/
|
|
29521
29540
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
29522
29541
|
__Pyx_GOTREF(__pyx_t_1);
|
|
29523
|
-
__pyx_ptype_7cpython_4type_type =
|
|
29542
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
29524
29543
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
29525
|
-
sizeof(PyTypeObject),
|
|
29544
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
29526
29545
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
29527
|
-
sizeof(PyTypeObject),
|
|
29546
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
29528
29547
|
#else
|
|
29529
|
-
sizeof(PyHeapTypeObject),
|
|
29548
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
29530
29549
|
#endif
|
|
29531
|
-
|
|
29550
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
29532
29551
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
29533
29552
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
29534
29553
|
__Pyx_GOTREF(__pyx_t_1);
|
|
29535
|
-
__pyx_ptype_5numpy_dtype =
|
|
29536
|
-
__pyx_ptype_5numpy_flatiter =
|
|
29537
|
-
__pyx_ptype_5numpy_broadcast =
|
|
29538
|
-
__pyx_ptype_5numpy_ndarray =
|
|
29539
|
-
__pyx_ptype_5numpy_generic =
|
|
29540
|
-
__pyx_ptype_5numpy_number =
|
|
29541
|
-
__pyx_ptype_5numpy_integer =
|
|
29542
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
29543
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
29544
|
-
__pyx_ptype_5numpy_inexact =
|
|
29545
|
-
__pyx_ptype_5numpy_floating =
|
|
29546
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
29547
|
-
__pyx_ptype_5numpy_flexible =
|
|
29548
|
-
__pyx_ptype_5numpy_character =
|
|
29549
|
-
__pyx_ptype_5numpy_ufunc =
|
|
29554
|
+
__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
29555
|
+
__pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
|
|
29556
|
+
__pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
|
|
29557
|
+
__pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
|
|
29558
|
+
__pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 812, __pyx_L1_error)
|
|
29559
|
+
__pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 814, __pyx_L1_error)
|
|
29560
|
+
__pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 816, __pyx_L1_error)
|
|
29561
|
+
__pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 818, __pyx_L1_error)
|
|
29562
|
+
__pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 820, __pyx_L1_error)
|
|
29563
|
+
__pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 822, __pyx_L1_error)
|
|
29564
|
+
__pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 824, __pyx_L1_error)
|
|
29565
|
+
__pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 826, __pyx_L1_error)
|
|
29566
|
+
__pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 828, __pyx_L1_error)
|
|
29567
|
+
__pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 830, __pyx_L1_error)
|
|
29568
|
+
__pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 868, __pyx_L1_error)
|
|
29550
29569
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
29551
29570
|
__Pyx_RefNannyFinishContext();
|
|
29552
29571
|
return 0;
|
|
@@ -31036,11 +31055,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
31036
31055
|
{
|
|
31037
31056
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
31038
31057
|
if (unlikely(eq != 0)) {
|
|
31039
|
-
if (unlikely(eq < 0)) return NULL;
|
|
31058
|
+
if (unlikely(eq < 0)) return NULL;
|
|
31040
31059
|
return kwvalues[i];
|
|
31041
31060
|
}
|
|
31042
31061
|
}
|
|
31043
|
-
return NULL;
|
|
31062
|
+
return NULL;
|
|
31044
31063
|
}
|
|
31045
31064
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
31046
31065
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -31153,7 +31172,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
31153
31172
|
if (*name) {
|
|
31154
31173
|
values[name-argnames] = value;
|
|
31155
31174
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
31156
|
-
Py_INCREF(value);
|
|
31175
|
+
Py_INCREF(value);
|
|
31157
31176
|
Py_DECREF(key);
|
|
31158
31177
|
#endif
|
|
31159
31178
|
key = NULL;
|
|
@@ -31172,7 +31191,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
31172
31191
|
&& _PyString_Eq(**name, key)) {
|
|
31173
31192
|
values[name-argnames] = value;
|
|
31174
31193
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
31175
|
-
value = NULL;
|
|
31194
|
+
value = NULL;
|
|
31176
31195
|
#endif
|
|
31177
31196
|
break;
|
|
31178
31197
|
}
|
|
@@ -31204,7 +31223,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
31204
31223
|
if (cmp == 0) {
|
|
31205
31224
|
values[name-argnames] = value;
|
|
31206
31225
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
31207
|
-
value = NULL;
|
|
31226
|
+
value = NULL;
|
|
31208
31227
|
#endif
|
|
31209
31228
|
break;
|
|
31210
31229
|
}
|
|
@@ -33240,9 +33259,10 @@ static CYTHON_INLINE int __Pyx_PyInt_BoolEqObjC(PyObject *op1, PyObject *op2, lo
|
|
|
33240
33259
|
|
|
33241
33260
|
/* IterFinish */
|
|
33242
33261
|
static CYTHON_INLINE int __Pyx_IterFinish(void) {
|
|
33262
|
+
PyObject* exc_type;
|
|
33243
33263
|
__Pyx_PyThreadState_declare
|
|
33244
33264
|
__Pyx_PyThreadState_assign
|
|
33245
|
-
|
|
33265
|
+
exc_type = __Pyx_PyErr_CurrentExceptionType();
|
|
33246
33266
|
if (unlikely(exc_type)) {
|
|
33247
33267
|
if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
|
|
33248
33268
|
return -1;
|
|
@@ -34174,10 +34194,10 @@ __PYX_GOOD:
|
|
|
34174
34194
|
#endif
|
|
34175
34195
|
|
|
34176
34196
|
/* TypeImport */
|
|
34177
|
-
#ifndef
|
|
34178
|
-
#define
|
|
34179
|
-
static PyTypeObject *
|
|
34180
|
-
size_t size, size_t alignment, enum
|
|
34197
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
34198
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
34199
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
34200
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
34181
34201
|
{
|
|
34182
34202
|
PyObject *result = 0;
|
|
34183
34203
|
char warning[200];
|
|
@@ -34231,7 +34251,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
34231
34251
|
module_name, class_name, size, basicsize+itemsize);
|
|
34232
34252
|
goto bad;
|
|
34233
34253
|
}
|
|
34234
|
-
if (check_size ==
|
|
34254
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
34235
34255
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
34236
34256
|
PyErr_Format(PyExc_ValueError,
|
|
34237
34257
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -34239,7 +34259,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
34239
34259
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
34240
34260
|
goto bad;
|
|
34241
34261
|
}
|
|
34242
|
-
else if (check_size ==
|
|
34262
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
34243
34263
|
PyOS_snprintf(warning, sizeof(warning),
|
|
34244
34264
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
34245
34265
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -35239,7 +35259,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
35239
35259
|
default:
|
|
35240
35260
|
return NULL;
|
|
35241
35261
|
}
|
|
35242
|
-
return ((
|
|
35262
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
35243
35263
|
}
|
|
35244
35264
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
35245
35265
|
{
|
|
@@ -35698,7 +35718,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
35698
35718
|
#else
|
|
35699
35719
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
35700
35720
|
#endif
|
|
35701
|
-
Py_XDECREF(py_funcname);
|
|
35721
|
+
Py_XDECREF(py_funcname);
|
|
35702
35722
|
return py_code;
|
|
35703
35723
|
bad:
|
|
35704
35724
|
Py_XDECREF(py_funcname);
|