biotite 0.39.0__cp311-cp311-macosx_11_0_arm64.whl → 0.41.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/pubchem/download.py +23 -23
- biotite/database/pubchem/query.py +7 -7
- biotite/database/rcsb/download.py +19 -14
- biotite/file.py +17 -9
- biotite/sequence/align/banded.c +258 -237
- biotite/sequence/align/banded.cpython-311-darwin.so +0 -0
- biotite/sequence/align/cigar.py +60 -15
- 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/annotation.py +2 -2
- biotite/sequence/codec.c +235 -214
- biotite/sequence/codec.cpython-311-darwin.so +0 -0
- biotite/sequence/io/fasta/convert.py +27 -24
- 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/__init__.py +2 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1437 -1279
- 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/dotbracket.py +2 -0
- biotite/structure/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +31 -68
- biotite/structure/info/bonds.py +47 -101
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1663 -0
- biotite/structure/info/ccd/carbohydrates.txt +1135 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +798 -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 +78 -25
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/integrity.py +19 -70
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +12 -106
- biotite/structure/io/general.py +167 -181
- biotite/structure/io/gro/file.py +16 -16
- 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/mol/__init__.py +4 -2
- biotite/structure/io/mol/convert.py +71 -7
- biotite/structure/io/mol/ctab.py +414 -0
- biotite/structure/io/mol/header.py +116 -0
- biotite/structure/io/mol/{file.py → mol.py} +69 -82
- biotite/structure/io/mol/sdf.py +909 -0
- 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 +89 -34
- 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 +12 -6
- biotite/structure/io/pdbx/bcif.py +648 -0
- biotite/structure/io/pdbx/cif.py +1032 -0
- biotite/structure/io/pdbx/component.py +246 -0
- biotite/structure/io/pdbx/convert.py +858 -386
- biotite/structure/io/pdbx/encoding.c +112813 -0
- biotite/structure/io/pdbx/encoding.cpython-311-darwin.so +0 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/repair.py +253 -0
- biotite/structure/sasa.c +215 -196
- biotite/structure/sasa.cpython-311-darwin.so +0 -0
- biotite/structure/sequence.py +112 -0
- biotite/structure/superimpose.py +618 -116
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
- {biotite-0.39.0.dist-info → biotite-0.41.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.41.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
|
@@ -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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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-egmwxkzt/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 # <<<<<<<<<<<<<<
|
|
@@ -1938,7 +1956,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1938
1956
|
struct __pyx_memoryview_obj;
|
|
1939
1957
|
struct __pyx_memoryviewslice_obj;
|
|
1940
1958
|
|
|
1941
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1959
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
|
|
1942
1960
|
* ctypedef npy_longdouble longdouble_t
|
|
1943
1961
|
*
|
|
1944
1962
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1947,7 +1965,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1947
1965
|
*/
|
|
1948
1966
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1949
1967
|
|
|
1950
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1968
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1951
1969
|
*
|
|
1952
1970
|
* ctypedef npy_cfloat cfloat_t
|
|
1953
1971
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1956,7 +1974,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1956
1974
|
*/
|
|
1957
1975
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1958
1976
|
|
|
1959
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1977
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1960
1978
|
* ctypedef npy_cfloat cfloat_t
|
|
1961
1979
|
* ctypedef npy_cdouble cdouble_t
|
|
1962
1980
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1965,7 +1983,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1965
1983
|
*/
|
|
1966
1984
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1967
1985
|
|
|
1968
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1986
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
|
|
1969
1987
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1970
1988
|
*
|
|
1971
1989
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2276,8 +2294,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2276
2294
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2277
2295
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2278
2296
|
#else
|
|
2279
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2280
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2297
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2298
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2281
2299
|
#endif
|
|
2282
2300
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2283
2301
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2293,8 +2311,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2293
2311
|
#else
|
|
2294
2312
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2295
2313
|
#endif
|
|
2296
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2297
|
-
|
|
2314
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2315
|
+
to have the same reference counting */
|
|
2316
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2298
2317
|
#else
|
|
2299
2318
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2300
2319
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2802,22 +2821,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2802
2821
|
#endif
|
|
2803
2822
|
|
|
2804
2823
|
/* TypeImport.proto */
|
|
2805
|
-
#ifndef
|
|
2806
|
-
#define
|
|
2824
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2825
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2807
2826
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2808
2827
|
#include <stdalign.h>
|
|
2809
2828
|
#endif
|
|
2810
2829
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2811
|
-
#define
|
|
2830
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2812
2831
|
#else
|
|
2813
|
-
#define
|
|
2832
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2814
2833
|
#endif
|
|
2815
|
-
enum
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2834
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2835
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2836
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2837
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2819
2838
|
};
|
|
2820
|
-
static PyTypeObject *
|
|
2839
|
+
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);
|
|
2821
2840
|
#endif
|
|
2822
2841
|
|
|
2823
2842
|
/* FetchSharedCythonModule.proto */
|
|
@@ -2910,7 +2929,7 @@ typedef struct {
|
|
|
2910
2929
|
#endif
|
|
2911
2930
|
void *defaults;
|
|
2912
2931
|
int defaults_pyobjects;
|
|
2913
|
-
size_t defaults_size;
|
|
2932
|
+
size_t defaults_size;
|
|
2914
2933
|
int flags;
|
|
2915
2934
|
PyObject *defaults_tuple;
|
|
2916
2935
|
PyObject *defaults_kwdict;
|
|
@@ -18967,7 +18986,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18967
18986
|
return __pyx_r;
|
|
18968
18987
|
}
|
|
18969
18988
|
|
|
18970
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18989
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
|
|
18971
18990
|
*
|
|
18972
18991
|
* @property
|
|
18973
18992
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18978,7 +18997,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18978
18997
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18979
18998
|
PyObject *__pyx_r;
|
|
18980
18999
|
|
|
18981
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19000
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
|
|
18982
19001
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18983
19002
|
* """
|
|
18984
19003
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18988,7 +19007,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18988
19007
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18989
19008
|
goto __pyx_L0;
|
|
18990
19009
|
|
|
18991
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19010
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
|
|
18992
19011
|
*
|
|
18993
19012
|
* @property
|
|
18994
19013
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19001,7 +19020,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
19001
19020
|
return __pyx_r;
|
|
19002
19021
|
}
|
|
19003
19022
|
|
|
19004
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19023
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
|
|
19005
19024
|
*
|
|
19006
19025
|
* @property
|
|
19007
19026
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -19015,7 +19034,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19015
19034
|
PyArray_Descr *__pyx_t_1;
|
|
19016
19035
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
19017
19036
|
|
|
19018
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19037
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
|
|
19019
19038
|
* """Returns an owned reference to the dtype of the array.
|
|
19020
19039
|
* """
|
|
19021
19040
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -19028,7 +19047,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19028
19047
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
19029
19048
|
goto __pyx_L0;
|
|
19030
19049
|
|
|
19031
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19050
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
|
|
19032
19051
|
*
|
|
19033
19052
|
* @property
|
|
19034
19053
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -19043,7 +19062,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19043
19062
|
return __pyx_r;
|
|
19044
19063
|
}
|
|
19045
19064
|
|
|
19046
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19065
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
|
|
19047
19066
|
*
|
|
19048
19067
|
* @property
|
|
19049
19068
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19054,7 +19073,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19054
19073
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
19055
19074
|
int __pyx_r;
|
|
19056
19075
|
|
|
19057
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19076
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
|
|
19058
19077
|
* """Returns the number of dimensions in the array.
|
|
19059
19078
|
* """
|
|
19060
19079
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -19064,7 +19083,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19064
19083
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
19065
19084
|
goto __pyx_L0;
|
|
19066
19085
|
|
|
19067
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19086
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
|
|
19068
19087
|
*
|
|
19069
19088
|
* @property
|
|
19070
19089
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19077,7 +19096,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19077
19096
|
return __pyx_r;
|
|
19078
19097
|
}
|
|
19079
19098
|
|
|
19080
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19099
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
|
19081
19100
|
*
|
|
19082
19101
|
* @property
|
|
19083
19102
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19088,7 +19107,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19088
19107
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
19089
19108
|
npy_intp *__pyx_r;
|
|
19090
19109
|
|
|
19091
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19110
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
|
|
19092
19111
|
* Can return NULL for 0-dimensional arrays.
|
|
19093
19112
|
* """
|
|
19094
19113
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -19098,7 +19117,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19098
19117
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
19099
19118
|
goto __pyx_L0;
|
|
19100
19119
|
|
|
19101
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19120
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
|
19102
19121
|
*
|
|
19103
19122
|
* @property
|
|
19104
19123
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19111,7 +19130,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19111
19130
|
return __pyx_r;
|
|
19112
19131
|
}
|
|
19113
19132
|
|
|
19114
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19133
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
|
|
19115
19134
|
*
|
|
19116
19135
|
* @property
|
|
19117
19136
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19122,7 +19141,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19122
19141
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
19123
19142
|
npy_intp *__pyx_r;
|
|
19124
19143
|
|
|
19125
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19144
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
|
|
19126
19145
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
19127
19146
|
* """
|
|
19128
19147
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -19132,7 +19151,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19132
19151
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
19133
19152
|
goto __pyx_L0;
|
|
19134
19153
|
|
|
19135
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19154
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
|
|
19136
19155
|
*
|
|
19137
19156
|
* @property
|
|
19138
19157
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19145,7 +19164,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19145
19164
|
return __pyx_r;
|
|
19146
19165
|
}
|
|
19147
19166
|
|
|
19148
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19167
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
|
|
19149
19168
|
*
|
|
19150
19169
|
* @property
|
|
19151
19170
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19156,7 +19175,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19156
19175
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
19157
19176
|
npy_intp __pyx_r;
|
|
19158
19177
|
|
|
19159
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19178
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
|
|
19160
19179
|
* """Returns the total size (in number of elements) of the array.
|
|
19161
19180
|
* """
|
|
19162
19181
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -19166,7 +19185,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19166
19185
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
19167
19186
|
goto __pyx_L0;
|
|
19168
19187
|
|
|
19169
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19188
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
|
|
19170
19189
|
*
|
|
19171
19190
|
* @property
|
|
19172
19191
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19179,7 +19198,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19179
19198
|
return __pyx_r;
|
|
19180
19199
|
}
|
|
19181
19200
|
|
|
19182
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19201
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
|
19183
19202
|
*
|
|
19184
19203
|
* @property
|
|
19185
19204
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19190,7 +19209,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19190
19209
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
19191
19210
|
char *__pyx_r;
|
|
19192
19211
|
|
|
19193
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19212
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
|
|
19194
19213
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
19195
19214
|
* """
|
|
19196
19215
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -19200,7 +19219,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
19200
19219
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
19201
19220
|
goto __pyx_L0;
|
|
19202
19221
|
|
|
19203
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19222
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
|
19204
19223
|
*
|
|
19205
19224
|
* @property
|
|
19206
19225
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19213,7 +19232,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
19213
19232
|
return __pyx_r;
|
|
19214
19233
|
}
|
|
19215
19234
|
|
|
19216
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19235
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
|
19217
19236
|
* ctypedef npy_cdouble complex_t
|
|
19218
19237
|
*
|
|
19219
19238
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19230,7 +19249,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19230
19249
|
int __pyx_clineno = 0;
|
|
19231
19250
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
19232
19251
|
|
|
19233
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19252
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
|
|
19234
19253
|
*
|
|
19235
19254
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
19236
19255
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -19244,7 +19263,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19244
19263
|
__pyx_t_1 = 0;
|
|
19245
19264
|
goto __pyx_L0;
|
|
19246
19265
|
|
|
19247
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19266
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
|
19248
19267
|
* ctypedef npy_cdouble complex_t
|
|
19249
19268
|
*
|
|
19250
19269
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19263,7 +19282,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19263
19282
|
return __pyx_r;
|
|
19264
19283
|
}
|
|
19265
19284
|
|
|
19266
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19285
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
|
19267
19286
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19268
19287
|
*
|
|
19269
19288
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19280,7 +19299,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19280
19299
|
int __pyx_clineno = 0;
|
|
19281
19300
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
19282
19301
|
|
|
19283
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19302
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
|
|
19284
19303
|
*
|
|
19285
19304
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
19286
19305
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -19294,7 +19313,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19294
19313
|
__pyx_t_1 = 0;
|
|
19295
19314
|
goto __pyx_L0;
|
|
19296
19315
|
|
|
19297
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19316
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
|
19298
19317
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19299
19318
|
*
|
|
19300
19319
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19313,7 +19332,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19313
19332
|
return __pyx_r;
|
|
19314
19333
|
}
|
|
19315
19334
|
|
|
19316
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19335
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
|
19317
19336
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19318
19337
|
*
|
|
19319
19338
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19330,7 +19349,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19330
19349
|
int __pyx_clineno = 0;
|
|
19331
19350
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
19332
19351
|
|
|
19333
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19352
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19334
19353
|
*
|
|
19335
19354
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
19336
19355
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -19344,7 +19363,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19344
19363
|
__pyx_t_1 = 0;
|
|
19345
19364
|
goto __pyx_L0;
|
|
19346
19365
|
|
|
19347
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19366
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
|
19348
19367
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19349
19368
|
*
|
|
19350
19369
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19363,7 +19382,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19363
19382
|
return __pyx_r;
|
|
19364
19383
|
}
|
|
19365
19384
|
|
|
19366
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19385
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
|
19367
19386
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19368
19387
|
*
|
|
19369
19388
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19380,7 +19399,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19380
19399
|
int __pyx_clineno = 0;
|
|
19381
19400
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
19382
19401
|
|
|
19383
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19402
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19384
19403
|
*
|
|
19385
19404
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
19386
19405
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -19394,7 +19413,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19394
19413
|
__pyx_t_1 = 0;
|
|
19395
19414
|
goto __pyx_L0;
|
|
19396
19415
|
|
|
19397
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19416
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
|
19398
19417
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19399
19418
|
*
|
|
19400
19419
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19413,7 +19432,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19413
19432
|
return __pyx_r;
|
|
19414
19433
|
}
|
|
19415
19434
|
|
|
19416
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19435
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
|
19417
19436
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19418
19437
|
*
|
|
19419
19438
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19430,7 +19449,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19430
19449
|
int __pyx_clineno = 0;
|
|
19431
19450
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
19432
19451
|
|
|
19433
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19452
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19434
19453
|
*
|
|
19435
19454
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
19436
19455
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -19444,7 +19463,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19444
19463
|
__pyx_t_1 = 0;
|
|
19445
19464
|
goto __pyx_L0;
|
|
19446
19465
|
|
|
19447
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19466
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
|
19448
19467
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19449
19468
|
*
|
|
19450
19469
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19463,7 +19482,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19463
19482
|
return __pyx_r;
|
|
19464
19483
|
}
|
|
19465
19484
|
|
|
19466
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19485
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
|
19467
19486
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19468
19487
|
*
|
|
19469
19488
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19477,7 +19496,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19477
19496
|
int __pyx_t_1;
|
|
19478
19497
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
19479
19498
|
|
|
19480
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19499
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19481
19500
|
*
|
|
19482
19501
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19483
19502
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19487,7 +19506,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19487
19506
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
19488
19507
|
if (__pyx_t_1) {
|
|
19489
19508
|
|
|
19490
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19509
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19491
19510
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19492
19511
|
* if PyDataType_HASSUBARRAY(d):
|
|
19493
19512
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -19499,7 +19518,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19499
19518
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
19500
19519
|
goto __pyx_L0;
|
|
19501
19520
|
|
|
19502
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19521
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19503
19522
|
*
|
|
19504
19523
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19505
19524
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19508,7 +19527,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19508
19527
|
*/
|
|
19509
19528
|
}
|
|
19510
19529
|
|
|
19511
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19530
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
|
|
19512
19531
|
* return <tuple>d.subarray.shape
|
|
19513
19532
|
* else:
|
|
19514
19533
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -19522,7 +19541,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19522
19541
|
goto __pyx_L0;
|
|
19523
19542
|
}
|
|
19524
19543
|
|
|
19525
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19544
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
|
19526
19545
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19527
19546
|
*
|
|
19528
19547
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19537,7 +19556,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19537
19556
|
return __pyx_r;
|
|
19538
19557
|
}
|
|
19539
19558
|
|
|
19540
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19559
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
|
|
19541
19560
|
* int _import_umath() except -1
|
|
19542
19561
|
*
|
|
19543
19562
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19547,7 +19566,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19547
19566
|
|
|
19548
19567
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
19549
19568
|
|
|
19550
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19569
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19551
19570
|
*
|
|
19552
19571
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19553
19572
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -19556,7 +19575,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19556
19575
|
*/
|
|
19557
19576
|
Py_INCREF(__pyx_v_base);
|
|
19558
19577
|
|
|
19559
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19578
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19560
19579
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19561
19580
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
19562
19581
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -19565,7 +19584,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19565
19584
|
*/
|
|
19566
19585
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
19567
19586
|
|
|
19568
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19587
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
|
|
19569
19588
|
* int _import_umath() except -1
|
|
19570
19589
|
*
|
|
19571
19590
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19576,7 +19595,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19576
19595
|
/* function exit code */
|
|
19577
19596
|
}
|
|
19578
19597
|
|
|
19579
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19598
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
|
|
19580
19599
|
* PyArray_SetBaseObject(arr, base)
|
|
19581
19600
|
*
|
|
19582
19601
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19591,7 +19610,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19591
19610
|
int __pyx_t_1;
|
|
19592
19611
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
19593
19612
|
|
|
19594
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19613
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19595
19614
|
*
|
|
19596
19615
|
* cdef inline object get_array_base(ndarray arr):
|
|
19597
19616
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -19600,7 +19619,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19600
19619
|
*/
|
|
19601
19620
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
19602
19621
|
|
|
19603
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19622
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19604
19623
|
* cdef inline object get_array_base(ndarray arr):
|
|
19605
19624
|
* base = PyArray_BASE(arr)
|
|
19606
19625
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19610,7 +19629,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19610
19629
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
19611
19630
|
if (__pyx_t_1) {
|
|
19612
19631
|
|
|
19613
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19632
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19614
19633
|
* base = PyArray_BASE(arr)
|
|
19615
19634
|
* if base is NULL:
|
|
19616
19635
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -19621,7 +19640,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19621
19640
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
19622
19641
|
goto __pyx_L0;
|
|
19623
19642
|
|
|
19624
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19643
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19625
19644
|
* cdef inline object get_array_base(ndarray arr):
|
|
19626
19645
|
* base = PyArray_BASE(arr)
|
|
19627
19646
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19630,7 +19649,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19630
19649
|
*/
|
|
19631
19650
|
}
|
|
19632
19651
|
|
|
19633
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19652
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
|
|
19634
19653
|
* if base is NULL:
|
|
19635
19654
|
* return None
|
|
19636
19655
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -19642,7 +19661,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19642
19661
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
19643
19662
|
goto __pyx_L0;
|
|
19644
19663
|
|
|
19645
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19664
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
|
|
19646
19665
|
* PyArray_SetBaseObject(arr, base)
|
|
19647
19666
|
*
|
|
19648
19667
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19657,7 +19676,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19657
19676
|
return __pyx_r;
|
|
19658
19677
|
}
|
|
19659
19678
|
|
|
19660
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19679
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
|
|
19661
19680
|
* # Versions of the import_* functions which are more suitable for
|
|
19662
19681
|
* # Cython code.
|
|
19663
19682
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19681,7 +19700,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19681
19700
|
int __pyx_clineno = 0;
|
|
19682
19701
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19683
19702
|
|
|
19684
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19703
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19685
19704
|
* # Cython code.
|
|
19686
19705
|
* cdef inline int import_array() except -1:
|
|
19687
19706
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19697,7 +19716,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19697
19716
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19698
19717
|
/*try:*/ {
|
|
19699
19718
|
|
|
19700
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19719
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19701
19720
|
* cdef inline int import_array() except -1:
|
|
19702
19721
|
* try:
|
|
19703
19722
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19706,7 +19725,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19706
19725
|
*/
|
|
19707
19726
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
|
|
19708
19727
|
|
|
19709
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19728
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19710
19729
|
* # Cython code.
|
|
19711
19730
|
* cdef inline int import_array() except -1:
|
|
19712
19731
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19720,7 +19739,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19720
19739
|
goto __pyx_L8_try_end;
|
|
19721
19740
|
__pyx_L3_error:;
|
|
19722
19741
|
|
|
19723
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19742
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
|
|
19724
19743
|
* try:
|
|
19725
19744
|
* __pyx_import_array()
|
|
19726
19745
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19735,7 +19754,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19735
19754
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19736
19755
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19737
19756
|
|
|
19738
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19757
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19739
19758
|
* __pyx_import_array()
|
|
19740
19759
|
* except Exception:
|
|
19741
19760
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19750,7 +19769,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19750
19769
|
}
|
|
19751
19770
|
goto __pyx_L5_except_error;
|
|
19752
19771
|
|
|
19753
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19772
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19754
19773
|
* # Cython code.
|
|
19755
19774
|
* cdef inline int import_array() except -1:
|
|
19756
19775
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19766,7 +19785,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19766
19785
|
__pyx_L8_try_end:;
|
|
19767
19786
|
}
|
|
19768
19787
|
|
|
19769
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19788
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
|
|
19770
19789
|
* # Versions of the import_* functions which are more suitable for
|
|
19771
19790
|
* # Cython code.
|
|
19772
19791
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19789,7 +19808,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19789
19808
|
return __pyx_r;
|
|
19790
19809
|
}
|
|
19791
19810
|
|
|
19792
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19811
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
|
|
19793
19812
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19794
19813
|
*
|
|
19795
19814
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19813,7 +19832,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19813
19832
|
int __pyx_clineno = 0;
|
|
19814
19833
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19815
19834
|
|
|
19816
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19835
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19817
19836
|
*
|
|
19818
19837
|
* cdef inline int import_umath() except -1:
|
|
19819
19838
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19829,7 +19848,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19829
19848
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19830
19849
|
/*try:*/ {
|
|
19831
19850
|
|
|
19832
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19851
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19833
19852
|
* cdef inline int import_umath() except -1:
|
|
19834
19853
|
* try:
|
|
19835
19854
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19838,7 +19857,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19838
19857
|
*/
|
|
19839
19858
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
|
|
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-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19842
19861
|
*
|
|
19843
19862
|
* cdef inline int import_umath() except -1:
|
|
19844
19863
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19852,7 +19871,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19852
19871
|
goto __pyx_L8_try_end;
|
|
19853
19872
|
__pyx_L3_error:;
|
|
19854
19873
|
|
|
19855
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19874
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
|
|
19856
19875
|
* try:
|
|
19857
19876
|
* _import_umath()
|
|
19858
19877
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19867,7 +19886,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19867
19886
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19868
19887
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19869
19888
|
|
|
19870
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19889
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19871
19890
|
* _import_umath()
|
|
19872
19891
|
* except Exception:
|
|
19873
19892
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19882,7 +19901,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19882
19901
|
}
|
|
19883
19902
|
goto __pyx_L5_except_error;
|
|
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-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19886
19905
|
*
|
|
19887
19906
|
* cdef inline int import_umath() except -1:
|
|
19888
19907
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19898,7 +19917,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19898
19917
|
__pyx_L8_try_end:;
|
|
19899
19918
|
}
|
|
19900
19919
|
|
|
19901
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19920
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
|
|
19902
19921
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19903
19922
|
*
|
|
19904
19923
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19921,7 +19940,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19921
19940
|
return __pyx_r;
|
|
19922
19941
|
}
|
|
19923
19942
|
|
|
19924
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19943
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
|
19925
19944
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19926
19945
|
*
|
|
19927
19946
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19945,7 +19964,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19945
19964
|
int __pyx_clineno = 0;
|
|
19946
19965
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19947
19966
|
|
|
19948
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19967
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19949
19968
|
*
|
|
19950
19969
|
* cdef inline int import_ufunc() except -1:
|
|
19951
19970
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19961,7 +19980,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19961
19980
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19962
19981
|
/*try:*/ {
|
|
19963
19982
|
|
|
19964
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19983
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19965
19984
|
* cdef inline int import_ufunc() except -1:
|
|
19966
19985
|
* try:
|
|
19967
19986
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19970,7 +19989,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19970
19989
|
*/
|
|
19971
19990
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
|
|
19972
19991
|
|
|
19973
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19992
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19974
19993
|
*
|
|
19975
19994
|
* cdef inline int import_ufunc() except -1:
|
|
19976
19995
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19984,7 +20003,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19984
20003
|
goto __pyx_L8_try_end;
|
|
19985
20004
|
__pyx_L3_error:;
|
|
19986
20005
|
|
|
19987
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20006
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
|
|
19988
20007
|
* try:
|
|
19989
20008
|
* _import_umath()
|
|
19990
20009
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19999,7 +20018,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19999
20018
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
20000
20019
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
20001
20020
|
|
|
20002
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20021
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
|
20003
20022
|
* _import_umath()
|
|
20004
20023
|
* except Exception:
|
|
20005
20024
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -20014,7 +20033,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20014
20033
|
}
|
|
20015
20034
|
goto __pyx_L5_except_error;
|
|
20016
20035
|
|
|
20017
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20036
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
|
20018
20037
|
*
|
|
20019
20038
|
* cdef inline int import_ufunc() except -1:
|
|
20020
20039
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20030,7 +20049,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20030
20049
|
__pyx_L8_try_end:;
|
|
20031
20050
|
}
|
|
20032
20051
|
|
|
20033
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20052
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
|
20034
20053
|
* raise ImportError("numpy.core.umath failed to import")
|
|
20035
20054
|
*
|
|
20036
20055
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20053,7 +20072,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20053
20072
|
return __pyx_r;
|
|
20054
20073
|
}
|
|
20055
20074
|
|
|
20056
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20075
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
20057
20076
|
*
|
|
20058
20077
|
*
|
|
20059
20078
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20064,7 +20083,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20064
20083
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
20065
20084
|
int __pyx_r;
|
|
20066
20085
|
|
|
20067
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20086
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
20068
20087
|
* bool
|
|
20069
20088
|
* """
|
|
20070
20089
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -20074,7 +20093,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20074
20093
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
20075
20094
|
goto __pyx_L0;
|
|
20076
20095
|
|
|
20077
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20096
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
20078
20097
|
*
|
|
20079
20098
|
*
|
|
20080
20099
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20087,7 +20106,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20087
20106
|
return __pyx_r;
|
|
20088
20107
|
}
|
|
20089
20108
|
|
|
20090
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20109
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
20091
20110
|
*
|
|
20092
20111
|
*
|
|
20093
20112
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20098,7 +20117,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20098
20117
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
20099
20118
|
int __pyx_r;
|
|
20100
20119
|
|
|
20101
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20120
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
20102
20121
|
* bool
|
|
20103
20122
|
* """
|
|
20104
20123
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -20108,7 +20127,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20108
20127
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
20109
20128
|
goto __pyx_L0;
|
|
20110
20129
|
|
|
20111
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20130
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
20112
20131
|
*
|
|
20113
20132
|
*
|
|
20114
20133
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20121,7 +20140,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20121
20140
|
return __pyx_r;
|
|
20122
20141
|
}
|
|
20123
20142
|
|
|
20124
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20143
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
20125
20144
|
*
|
|
20126
20145
|
*
|
|
20127
20146
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20132,7 +20151,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20132
20151
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
20133
20152
|
npy_datetime __pyx_r;
|
|
20134
20153
|
|
|
20135
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20154
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
|
|
20136
20155
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
20137
20156
|
* """
|
|
20138
20157
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -20142,7 +20161,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20142
20161
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
20143
20162
|
goto __pyx_L0;
|
|
20144
20163
|
|
|
20145
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20164
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
20146
20165
|
*
|
|
20147
20166
|
*
|
|
20148
20167
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20155,7 +20174,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20155
20174
|
return __pyx_r;
|
|
20156
20175
|
}
|
|
20157
20176
|
|
|
20158
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20177
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
20159
20178
|
*
|
|
20160
20179
|
*
|
|
20161
20180
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20166,7 +20185,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20166
20185
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
20167
20186
|
npy_timedelta __pyx_r;
|
|
20168
20187
|
|
|
20169
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20188
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
|
|
20170
20189
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
20171
20190
|
* """
|
|
20172
20191
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -20176,7 +20195,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20176
20195
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
20177
20196
|
goto __pyx_L0;
|
|
20178
20197
|
|
|
20179
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20198
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
20180
20199
|
*
|
|
20181
20200
|
*
|
|
20182
20201
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20189,7 +20208,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20189
20208
|
return __pyx_r;
|
|
20190
20209
|
}
|
|
20191
20210
|
|
|
20192
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20211
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
|
|
20193
20212
|
*
|
|
20194
20213
|
*
|
|
20195
20214
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20200,7 +20219,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20200
20219
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
20201
20220
|
NPY_DATETIMEUNIT __pyx_r;
|
|
20202
20221
|
|
|
20203
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20222
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
|
|
20204
20223
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
20205
20224
|
* """
|
|
20206
20225
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -20208,7 +20227,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
20208
20227
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
20209
20228
|
goto __pyx_L0;
|
|
20210
20229
|
|
|
20211
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20230
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
|
|
20212
20231
|
*
|
|
20213
20232
|
*
|
|
20214
20233
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -28306,7 +28325,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
28306
28325
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
28307
28326
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
28308
28327
|
|
|
28309
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
28328
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
|
|
28310
28329
|
* __pyx_import_array()
|
|
28311
28330
|
* except Exception:
|
|
28312
28331
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -28317,7 +28336,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
28317
28336
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
28318
28337
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
28319
28338
|
|
|
28320
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
28339
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
|
|
28321
28340
|
* _import_umath()
|
|
28322
28341
|
* except Exception:
|
|
28323
28342
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -28835,33 +28854,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
28835
28854
|
/*--- Type import code ---*/
|
|
28836
28855
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
28837
28856
|
__Pyx_GOTREF(__pyx_t_1);
|
|
28838
|
-
__pyx_ptype_7cpython_4type_type =
|
|
28857
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
28839
28858
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
28840
|
-
sizeof(PyTypeObject),
|
|
28859
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
28841
28860
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
28842
|
-
sizeof(PyTypeObject),
|
|
28861
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
28843
28862
|
#else
|
|
28844
|
-
sizeof(PyHeapTypeObject),
|
|
28863
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
28845
28864
|
#endif
|
|
28846
|
-
|
|
28865
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
28847
28866
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
28848
28867
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
28849
28868
|
__Pyx_GOTREF(__pyx_t_1);
|
|
28850
|
-
__pyx_ptype_5numpy_dtype =
|
|
28851
|
-
__pyx_ptype_5numpy_flatiter =
|
|
28852
|
-
__pyx_ptype_5numpy_broadcast =
|
|
28853
|
-
__pyx_ptype_5numpy_ndarray =
|
|
28854
|
-
__pyx_ptype_5numpy_generic =
|
|
28855
|
-
__pyx_ptype_5numpy_number =
|
|
28856
|
-
__pyx_ptype_5numpy_integer =
|
|
28857
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
28858
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
28859
|
-
__pyx_ptype_5numpy_inexact =
|
|
28860
|
-
__pyx_ptype_5numpy_floating =
|
|
28861
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
28862
|
-
__pyx_ptype_5numpy_flexible =
|
|
28863
|
-
__pyx_ptype_5numpy_character =
|
|
28864
|
-
__pyx_ptype_5numpy_ufunc =
|
|
28869
|
+
__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)
|
|
28870
|
+
__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)
|
|
28871
|
+
__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)
|
|
28872
|
+
__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)
|
|
28873
|
+
__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)
|
|
28874
|
+
__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)
|
|
28875
|
+
__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)
|
|
28876
|
+
__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)
|
|
28877
|
+
__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)
|
|
28878
|
+
__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)
|
|
28879
|
+
__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)
|
|
28880
|
+
__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)
|
|
28881
|
+
__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)
|
|
28882
|
+
__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)
|
|
28883
|
+
__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)
|
|
28865
28884
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
28866
28885
|
__Pyx_RefNannyFinishContext();
|
|
28867
28886
|
return 0;
|
|
@@ -30435,11 +30454,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
30435
30454
|
{
|
|
30436
30455
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
30437
30456
|
if (unlikely(eq != 0)) {
|
|
30438
|
-
if (unlikely(eq < 0)) return NULL;
|
|
30457
|
+
if (unlikely(eq < 0)) return NULL;
|
|
30439
30458
|
return kwvalues[i];
|
|
30440
30459
|
}
|
|
30441
30460
|
}
|
|
30442
|
-
return NULL;
|
|
30461
|
+
return NULL;
|
|
30443
30462
|
}
|
|
30444
30463
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
30445
30464
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -30552,7 +30571,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
30552
30571
|
if (*name) {
|
|
30553
30572
|
values[name-argnames] = value;
|
|
30554
30573
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
30555
|
-
Py_INCREF(value);
|
|
30574
|
+
Py_INCREF(value);
|
|
30556
30575
|
Py_DECREF(key);
|
|
30557
30576
|
#endif
|
|
30558
30577
|
key = NULL;
|
|
@@ -30571,7 +30590,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
30571
30590
|
&& _PyString_Eq(**name, key)) {
|
|
30572
30591
|
values[name-argnames] = value;
|
|
30573
30592
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
30574
|
-
value = NULL;
|
|
30593
|
+
value = NULL;
|
|
30575
30594
|
#endif
|
|
30576
30595
|
break;
|
|
30577
30596
|
}
|
|
@@ -30603,7 +30622,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
30603
30622
|
if (cmp == 0) {
|
|
30604
30623
|
values[name-argnames] = value;
|
|
30605
30624
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
30606
|
-
value = NULL;
|
|
30625
|
+
value = NULL;
|
|
30607
30626
|
#endif
|
|
30608
30627
|
break;
|
|
30609
30628
|
}
|
|
@@ -32975,9 +32994,10 @@ static PyObject* __Pyx_PyInt_SubtractObjC(PyObject *op1, PyObject *op2, long int
|
|
|
32975
32994
|
|
|
32976
32995
|
/* IterFinish */
|
|
32977
32996
|
static CYTHON_INLINE int __Pyx_IterFinish(void) {
|
|
32997
|
+
PyObject* exc_type;
|
|
32978
32998
|
__Pyx_PyThreadState_declare
|
|
32979
32999
|
__Pyx_PyThreadState_assign
|
|
32980
|
-
|
|
33000
|
+
exc_type = __Pyx_PyErr_CurrentExceptionType();
|
|
32981
33001
|
if (unlikely(exc_type)) {
|
|
32982
33002
|
if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
|
|
32983
33003
|
return -1;
|
|
@@ -33621,10 +33641,10 @@ __PYX_GOOD:
|
|
|
33621
33641
|
#endif
|
|
33622
33642
|
|
|
33623
33643
|
/* TypeImport */
|
|
33624
|
-
#ifndef
|
|
33625
|
-
#define
|
|
33626
|
-
static PyTypeObject *
|
|
33627
|
-
size_t size, size_t alignment, enum
|
|
33644
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
33645
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
33646
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
33647
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
33628
33648
|
{
|
|
33629
33649
|
PyObject *result = 0;
|
|
33630
33650
|
char warning[200];
|
|
@@ -33678,7 +33698,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
33678
33698
|
module_name, class_name, size, basicsize+itemsize);
|
|
33679
33699
|
goto bad;
|
|
33680
33700
|
}
|
|
33681
|
-
if (check_size ==
|
|
33701
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
33682
33702
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
33683
33703
|
PyErr_Format(PyExc_ValueError,
|
|
33684
33704
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -33686,7 +33706,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
33686
33706
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
33687
33707
|
goto bad;
|
|
33688
33708
|
}
|
|
33689
|
-
else if (check_size ==
|
|
33709
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
33690
33710
|
PyOS_snprintf(warning, sizeof(warning),
|
|
33691
33711
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
33692
33712
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -34686,7 +34706,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
34686
34706
|
default:
|
|
34687
34707
|
return NULL;
|
|
34688
34708
|
}
|
|
34689
|
-
return ((
|
|
34709
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
34690
34710
|
}
|
|
34691
34711
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
34692
34712
|
{
|
|
@@ -35145,7 +35165,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
35145
35165
|
#else
|
|
35146
35166
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
35147
35167
|
#endif
|
|
35148
|
-
Py_XDECREF(py_funcname);
|
|
35168
|
+
Py_XDECREF(py_funcname);
|
|
35149
35169
|
return py_code;
|
|
35150
35170
|
bad:
|
|
35151
35171
|
Py_XDECREF(py_funcname);
|