__init__.pxd 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017
  1. # NumPy static imports for Cython < 3.0
  2. #
  3. # If any of the PyArray_* functions are called, import_array must be
  4. # called first.
  5. #
  6. # Author: Dag Sverre Seljebotn
  7. #
  8. DEF _buffer_format_string_len = 255
  9. cimport cpython.buffer as pybuf
  10. from cpython.ref cimport Py_INCREF
  11. from cpython.mem cimport PyObject_Malloc, PyObject_Free
  12. from cpython.object cimport PyObject, PyTypeObject
  13. from cpython.buffer cimport PyObject_GetBuffer
  14. from cpython.type cimport type
  15. cimport libc.stdio as stdio
  16. cdef extern from "Python.h":
  17. ctypedef int Py_intptr_t
  18. bint PyObject_TypeCheck(object obj, PyTypeObject* type)
  19. cdef extern from "numpy/arrayobject.h":
  20. ctypedef Py_intptr_t npy_intp
  21. ctypedef size_t npy_uintp
  22. cdef enum NPY_TYPES:
  23. NPY_BOOL
  24. NPY_BYTE
  25. NPY_UBYTE
  26. NPY_SHORT
  27. NPY_USHORT
  28. NPY_INT
  29. NPY_UINT
  30. NPY_LONG
  31. NPY_ULONG
  32. NPY_LONGLONG
  33. NPY_ULONGLONG
  34. NPY_FLOAT
  35. NPY_DOUBLE
  36. NPY_LONGDOUBLE
  37. NPY_CFLOAT
  38. NPY_CDOUBLE
  39. NPY_CLONGDOUBLE
  40. NPY_OBJECT
  41. NPY_STRING
  42. NPY_UNICODE
  43. NPY_VOID
  44. NPY_DATETIME
  45. NPY_TIMEDELTA
  46. NPY_NTYPES
  47. NPY_NOTYPE
  48. NPY_INT8
  49. NPY_INT16
  50. NPY_INT32
  51. NPY_INT64
  52. NPY_INT128
  53. NPY_INT256
  54. NPY_UINT8
  55. NPY_UINT16
  56. NPY_UINT32
  57. NPY_UINT64
  58. NPY_UINT128
  59. NPY_UINT256
  60. NPY_FLOAT16
  61. NPY_FLOAT32
  62. NPY_FLOAT64
  63. NPY_FLOAT80
  64. NPY_FLOAT96
  65. NPY_FLOAT128
  66. NPY_FLOAT256
  67. NPY_COMPLEX32
  68. NPY_COMPLEX64
  69. NPY_COMPLEX128
  70. NPY_COMPLEX160
  71. NPY_COMPLEX192
  72. NPY_COMPLEX256
  73. NPY_COMPLEX512
  74. NPY_INTP
  75. ctypedef enum NPY_ORDER:
  76. NPY_ANYORDER
  77. NPY_CORDER
  78. NPY_FORTRANORDER
  79. NPY_KEEPORDER
  80. ctypedef enum NPY_CASTING:
  81. NPY_NO_CASTING
  82. NPY_EQUIV_CASTING
  83. NPY_SAFE_CASTING
  84. NPY_SAME_KIND_CASTING
  85. NPY_UNSAFE_CASTING
  86. ctypedef enum NPY_CLIPMODE:
  87. NPY_CLIP
  88. NPY_WRAP
  89. NPY_RAISE
  90. ctypedef enum NPY_SCALARKIND:
  91. NPY_NOSCALAR,
  92. NPY_BOOL_SCALAR,
  93. NPY_INTPOS_SCALAR,
  94. NPY_INTNEG_SCALAR,
  95. NPY_FLOAT_SCALAR,
  96. NPY_COMPLEX_SCALAR,
  97. NPY_OBJECT_SCALAR
  98. ctypedef enum NPY_SORTKIND:
  99. NPY_QUICKSORT
  100. NPY_HEAPSORT
  101. NPY_MERGESORT
  102. ctypedef enum NPY_SEARCHSIDE:
  103. NPY_SEARCHLEFT
  104. NPY_SEARCHRIGHT
  105. enum:
  106. # DEPRECATED since NumPy 1.7 ! Do not use in new code!
  107. NPY_C_CONTIGUOUS
  108. NPY_F_CONTIGUOUS
  109. NPY_CONTIGUOUS
  110. NPY_FORTRAN
  111. NPY_OWNDATA
  112. NPY_FORCECAST
  113. NPY_ENSURECOPY
  114. NPY_ENSUREARRAY
  115. NPY_ELEMENTSTRIDES
  116. NPY_ALIGNED
  117. NPY_NOTSWAPPED
  118. NPY_WRITEABLE
  119. NPY_ARR_HAS_DESCR
  120. NPY_BEHAVED
  121. NPY_BEHAVED_NS
  122. NPY_CARRAY
  123. NPY_CARRAY_RO
  124. NPY_FARRAY
  125. NPY_FARRAY_RO
  126. NPY_DEFAULT
  127. NPY_IN_ARRAY
  128. NPY_OUT_ARRAY
  129. NPY_INOUT_ARRAY
  130. NPY_IN_FARRAY
  131. NPY_OUT_FARRAY
  132. NPY_INOUT_FARRAY
  133. NPY_UPDATE_ALL
  134. enum:
  135. # Added in NumPy 1.7 to replace the deprecated enums above.
  136. NPY_ARRAY_C_CONTIGUOUS
  137. NPY_ARRAY_F_CONTIGUOUS
  138. NPY_ARRAY_OWNDATA
  139. NPY_ARRAY_FORCECAST
  140. NPY_ARRAY_ENSURECOPY
  141. NPY_ARRAY_ENSUREARRAY
  142. NPY_ARRAY_ELEMENTSTRIDES
  143. NPY_ARRAY_ALIGNED
  144. NPY_ARRAY_NOTSWAPPED
  145. NPY_ARRAY_WRITEABLE
  146. NPY_ARRAY_WRITEBACKIFCOPY
  147. NPY_ARRAY_BEHAVED
  148. NPY_ARRAY_BEHAVED_NS
  149. NPY_ARRAY_CARRAY
  150. NPY_ARRAY_CARRAY_RO
  151. NPY_ARRAY_FARRAY
  152. NPY_ARRAY_FARRAY_RO
  153. NPY_ARRAY_DEFAULT
  154. NPY_ARRAY_IN_ARRAY
  155. NPY_ARRAY_OUT_ARRAY
  156. NPY_ARRAY_INOUT_ARRAY
  157. NPY_ARRAY_IN_FARRAY
  158. NPY_ARRAY_OUT_FARRAY
  159. NPY_ARRAY_INOUT_FARRAY
  160. NPY_ARRAY_UPDATE_ALL
  161. cdef enum:
  162. NPY_MAXDIMS
  163. npy_intp NPY_MAX_ELSIZE
  164. ctypedef void (*PyArray_VectorUnaryFunc)(void *, void *, npy_intp, void *, void *)
  165. ctypedef struct PyArray_ArrayDescr:
  166. # shape is a tuple, but Cython doesn't support "tuple shape"
  167. # inside a non-PyObject declaration, so we have to declare it
  168. # as just a PyObject*.
  169. PyObject* shape
  170. ctypedef struct PyArray_Descr:
  171. pass
  172. ctypedef class numpy.dtype [object PyArray_Descr, check_size ignore]:
  173. # Use PyDataType_* macros when possible, however there are no macros
  174. # for accessing some of the fields, so some are defined.
  175. cdef PyTypeObject* typeobj
  176. cdef char kind
  177. cdef char type
  178. # Numpy sometimes mutates this without warning (e.g. it'll
  179. # sometimes change "|" to "<" in shared dtype objects on
  180. # little-endian machines). If this matters to you, use
  181. # PyArray_IsNativeByteOrder(dtype.byteorder) instead of
  182. # directly accessing this field.
  183. cdef char byteorder
  184. cdef char flags
  185. cdef int type_num
  186. cdef int itemsize "elsize"
  187. cdef int alignment
  188. cdef object fields
  189. cdef tuple names
  190. # Use PyDataType_HASSUBARRAY to test whether this field is
  191. # valid (the pointer can be NULL). Most users should access
  192. # this field via the inline helper method PyDataType_SHAPE.
  193. cdef PyArray_ArrayDescr* subarray
  194. ctypedef class numpy.flatiter [object PyArrayIterObject, check_size ignore]:
  195. # Use through macros
  196. pass
  197. ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
  198. cdef int numiter
  199. cdef npy_intp size, index
  200. cdef int nd
  201. cdef npy_intp *dimensions
  202. cdef void **iters
  203. ctypedef struct PyArrayObject:
  204. # For use in situations where ndarray can't replace PyArrayObject*,
  205. # like PyArrayObject**.
  206. pass
  207. ctypedef class numpy.ndarray [object PyArrayObject, check_size ignore]:
  208. cdef __cythonbufferdefaults__ = {"mode": "strided"}
  209. cdef:
  210. # Only taking a few of the most commonly used and stable fields.
  211. # One should use PyArray_* macros instead to access the C fields.
  212. char *data
  213. int ndim "nd"
  214. npy_intp *shape "dimensions"
  215. npy_intp *strides
  216. dtype descr # deprecated since NumPy 1.7 !
  217. PyObject* base # NOT PUBLIC, DO NOT USE !
  218. ctypedef unsigned char npy_bool
  219. ctypedef signed char npy_byte
  220. ctypedef signed short npy_short
  221. ctypedef signed int npy_int
  222. ctypedef signed long npy_long
  223. ctypedef signed long long npy_longlong
  224. ctypedef unsigned char npy_ubyte
  225. ctypedef unsigned short npy_ushort
  226. ctypedef unsigned int npy_uint
  227. ctypedef unsigned long npy_ulong
  228. ctypedef unsigned long long npy_ulonglong
  229. ctypedef float npy_float
  230. ctypedef double npy_double
  231. ctypedef long double npy_longdouble
  232. ctypedef signed char npy_int8
  233. ctypedef signed short npy_int16
  234. ctypedef signed int npy_int32
  235. ctypedef signed long long npy_int64
  236. ctypedef signed long long npy_int96
  237. ctypedef signed long long npy_int128
  238. ctypedef unsigned char npy_uint8
  239. ctypedef unsigned short npy_uint16
  240. ctypedef unsigned int npy_uint32
  241. ctypedef unsigned long long npy_uint64
  242. ctypedef unsigned long long npy_uint96
  243. ctypedef unsigned long long npy_uint128
  244. ctypedef float npy_float32
  245. ctypedef double npy_float64
  246. ctypedef long double npy_float80
  247. ctypedef long double npy_float96
  248. ctypedef long double npy_float128
  249. ctypedef struct npy_cfloat:
  250. float real
  251. float imag
  252. ctypedef struct npy_cdouble:
  253. double real
  254. double imag
  255. ctypedef struct npy_clongdouble:
  256. long double real
  257. long double imag
  258. ctypedef struct npy_complex64:
  259. float real
  260. float imag
  261. ctypedef struct npy_complex128:
  262. double real
  263. double imag
  264. ctypedef struct npy_complex160:
  265. long double real
  266. long double imag
  267. ctypedef struct npy_complex192:
  268. long double real
  269. long double imag
  270. ctypedef struct npy_complex256:
  271. long double real
  272. long double imag
  273. ctypedef struct PyArray_Dims:
  274. npy_intp *ptr
  275. int len
  276. int _import_array() except -1
  277. # A second definition so _import_array isn't marked as used when we use it here.
  278. # Do not use - subject to change any time.
  279. int __pyx_import_array "_import_array"() except -1
  280. #
  281. # Macros from ndarrayobject.h
  282. #
  283. bint PyArray_CHKFLAGS(ndarray m, int flags) nogil
  284. bint PyArray_IS_C_CONTIGUOUS(ndarray arr) nogil
  285. bint PyArray_IS_F_CONTIGUOUS(ndarray arr) nogil
  286. bint PyArray_ISCONTIGUOUS(ndarray m) nogil
  287. bint PyArray_ISWRITEABLE(ndarray m) nogil
  288. bint PyArray_ISALIGNED(ndarray m) nogil
  289. int PyArray_NDIM(ndarray) nogil
  290. bint PyArray_ISONESEGMENT(ndarray) nogil
  291. bint PyArray_ISFORTRAN(ndarray) nogil
  292. int PyArray_FORTRANIF(ndarray) nogil
  293. void* PyArray_DATA(ndarray) nogil
  294. char* PyArray_BYTES(ndarray) nogil
  295. npy_intp* PyArray_DIMS(ndarray) nogil
  296. npy_intp* PyArray_STRIDES(ndarray) nogil
  297. npy_intp PyArray_DIM(ndarray, size_t) nogil
  298. npy_intp PyArray_STRIDE(ndarray, size_t) nogil
  299. PyObject *PyArray_BASE(ndarray) nogil # returns borrowed reference!
  300. PyArray_Descr *PyArray_DESCR(ndarray) nogil # returns borrowed reference to dtype!
  301. int PyArray_FLAGS(ndarray) nogil
  302. npy_intp PyArray_ITEMSIZE(ndarray) nogil
  303. int PyArray_TYPE(ndarray arr) nogil
  304. object PyArray_GETITEM(ndarray arr, void *itemptr)
  305. int PyArray_SETITEM(ndarray arr, void *itemptr, object obj)
  306. bint PyTypeNum_ISBOOL(int) nogil
  307. bint PyTypeNum_ISUNSIGNED(int) nogil
  308. bint PyTypeNum_ISSIGNED(int) nogil
  309. bint PyTypeNum_ISINTEGER(int) nogil
  310. bint PyTypeNum_ISFLOAT(int) nogil
  311. bint PyTypeNum_ISNUMBER(int) nogil
  312. bint PyTypeNum_ISSTRING(int) nogil
  313. bint PyTypeNum_ISCOMPLEX(int) nogil
  314. bint PyTypeNum_ISPYTHON(int) nogil
  315. bint PyTypeNum_ISFLEXIBLE(int) nogil
  316. bint PyTypeNum_ISUSERDEF(int) nogil
  317. bint PyTypeNum_ISEXTENDED(int) nogil
  318. bint PyTypeNum_ISOBJECT(int) nogil
  319. bint PyDataType_ISBOOL(dtype) nogil
  320. bint PyDataType_ISUNSIGNED(dtype) nogil
  321. bint PyDataType_ISSIGNED(dtype) nogil
  322. bint PyDataType_ISINTEGER(dtype) nogil
  323. bint PyDataType_ISFLOAT(dtype) nogil
  324. bint PyDataType_ISNUMBER(dtype) nogil
  325. bint PyDataType_ISSTRING(dtype) nogil
  326. bint PyDataType_ISCOMPLEX(dtype) nogil
  327. bint PyDataType_ISPYTHON(dtype) nogil
  328. bint PyDataType_ISFLEXIBLE(dtype) nogil
  329. bint PyDataType_ISUSERDEF(dtype) nogil
  330. bint PyDataType_ISEXTENDED(dtype) nogil
  331. bint PyDataType_ISOBJECT(dtype) nogil
  332. bint PyDataType_HASFIELDS(dtype) nogil
  333. bint PyDataType_HASSUBARRAY(dtype) nogil
  334. bint PyArray_ISBOOL(ndarray) nogil
  335. bint PyArray_ISUNSIGNED(ndarray) nogil
  336. bint PyArray_ISSIGNED(ndarray) nogil
  337. bint PyArray_ISINTEGER(ndarray) nogil
  338. bint PyArray_ISFLOAT(ndarray) nogil
  339. bint PyArray_ISNUMBER(ndarray) nogil
  340. bint PyArray_ISSTRING(ndarray) nogil
  341. bint PyArray_ISCOMPLEX(ndarray) nogil
  342. bint PyArray_ISPYTHON(ndarray) nogil
  343. bint PyArray_ISFLEXIBLE(ndarray) nogil
  344. bint PyArray_ISUSERDEF(ndarray) nogil
  345. bint PyArray_ISEXTENDED(ndarray) nogil
  346. bint PyArray_ISOBJECT(ndarray) nogil
  347. bint PyArray_HASFIELDS(ndarray) nogil
  348. bint PyArray_ISVARIABLE(ndarray) nogil
  349. bint PyArray_SAFEALIGNEDCOPY(ndarray) nogil
  350. bint PyArray_ISNBO(char) nogil # works on ndarray.byteorder
  351. bint PyArray_IsNativeByteOrder(char) nogil # works on ndarray.byteorder
  352. bint PyArray_ISNOTSWAPPED(ndarray) nogil
  353. bint PyArray_ISBYTESWAPPED(ndarray) nogil
  354. bint PyArray_FLAGSWAP(ndarray, int) nogil
  355. bint PyArray_ISCARRAY(ndarray) nogil
  356. bint PyArray_ISCARRAY_RO(ndarray) nogil
  357. bint PyArray_ISFARRAY(ndarray) nogil
  358. bint PyArray_ISFARRAY_RO(ndarray) nogil
  359. bint PyArray_ISBEHAVED(ndarray) nogil
  360. bint PyArray_ISBEHAVED_RO(ndarray) nogil
  361. bint PyDataType_ISNOTSWAPPED(dtype) nogil
  362. bint PyDataType_ISBYTESWAPPED(dtype) nogil
  363. bint PyArray_DescrCheck(object)
  364. bint PyArray_Check(object)
  365. bint PyArray_CheckExact(object)
  366. # Cannot be supported due to out arg:
  367. # bint PyArray_HasArrayInterfaceType(object, dtype, object, object&)
  368. # bint PyArray_HasArrayInterface(op, out)
  369. bint PyArray_IsZeroDim(object)
  370. # Cannot be supported due to ## ## in macro:
  371. # bint PyArray_IsScalar(object, verbatim work)
  372. bint PyArray_CheckScalar(object)
  373. bint PyArray_IsPythonNumber(object)
  374. bint PyArray_IsPythonScalar(object)
  375. bint PyArray_IsAnyScalar(object)
  376. bint PyArray_CheckAnyScalar(object)
  377. ndarray PyArray_GETCONTIGUOUS(ndarray)
  378. bint PyArray_SAMESHAPE(ndarray, ndarray) nogil
  379. npy_intp PyArray_SIZE(ndarray) nogil
  380. npy_intp PyArray_NBYTES(ndarray) nogil
  381. object PyArray_FROM_O(object)
  382. object PyArray_FROM_OF(object m, int flags)
  383. object PyArray_FROM_OT(object m, int type)
  384. object PyArray_FROM_OTF(object m, int type, int flags)
  385. object PyArray_FROMANY(object m, int type, int min, int max, int flags)
  386. object PyArray_ZEROS(int nd, npy_intp* dims, int type, int fortran)
  387. object PyArray_EMPTY(int nd, npy_intp* dims, int type, int fortran)
  388. void PyArray_FILLWBYTE(object, int val)
  389. npy_intp PyArray_REFCOUNT(object)
  390. object PyArray_ContiguousFromAny(op, int, int min_depth, int max_depth)
  391. unsigned char PyArray_EquivArrTypes(ndarray a1, ndarray a2)
  392. bint PyArray_EquivByteorders(int b1, int b2) nogil
  393. object PyArray_SimpleNew(int nd, npy_intp* dims, int typenum)
  394. object PyArray_SimpleNewFromData(int nd, npy_intp* dims, int typenum, void* data)
  395. #object PyArray_SimpleNewFromDescr(int nd, npy_intp* dims, dtype descr)
  396. object PyArray_ToScalar(void* data, ndarray arr)
  397. void* PyArray_GETPTR1(ndarray m, npy_intp i) nogil
  398. void* PyArray_GETPTR2(ndarray m, npy_intp i, npy_intp j) nogil
  399. void* PyArray_GETPTR3(ndarray m, npy_intp i, npy_intp j, npy_intp k) nogil
  400. void* PyArray_GETPTR4(ndarray m, npy_intp i, npy_intp j, npy_intp k, npy_intp l) nogil
  401. void PyArray_XDECREF_ERR(ndarray)
  402. # Cannot be supported due to out arg
  403. # void PyArray_DESCR_REPLACE(descr)
  404. object PyArray_Copy(ndarray)
  405. object PyArray_FromObject(object op, int type, int min_depth, int max_depth)
  406. object PyArray_ContiguousFromObject(object op, int type, int min_depth, int max_depth)
  407. object PyArray_CopyFromObject(object op, int type, int min_depth, int max_depth)
  408. object PyArray_Cast(ndarray mp, int type_num)
  409. object PyArray_Take(ndarray ap, object items, int axis)
  410. object PyArray_Put(ndarray ap, object items, object values)
  411. void PyArray_ITER_RESET(flatiter it) nogil
  412. void PyArray_ITER_NEXT(flatiter it) nogil
  413. void PyArray_ITER_GOTO(flatiter it, npy_intp* destination) nogil
  414. void PyArray_ITER_GOTO1D(flatiter it, npy_intp ind) nogil
  415. void* PyArray_ITER_DATA(flatiter it) nogil
  416. bint PyArray_ITER_NOTDONE(flatiter it) nogil
  417. void PyArray_MultiIter_RESET(broadcast multi) nogil
  418. void PyArray_MultiIter_NEXT(broadcast multi) nogil
  419. void PyArray_MultiIter_GOTO(broadcast multi, npy_intp dest) nogil
  420. void PyArray_MultiIter_GOTO1D(broadcast multi, npy_intp ind) nogil
  421. void* PyArray_MultiIter_DATA(broadcast multi, npy_intp i) nogil
  422. void PyArray_MultiIter_NEXTi(broadcast multi, npy_intp i) nogil
  423. bint PyArray_MultiIter_NOTDONE(broadcast multi) nogil
  424. # Functions from __multiarray_api.h
  425. # Functions taking dtype and returning object/ndarray are disabled
  426. # for now as they steal dtype references. I'm conservative and disable
  427. # more than is probably needed until it can be checked further.
  428. int PyArray_SetNumericOps (object)
  429. object PyArray_GetNumericOps ()
  430. int PyArray_INCREF (ndarray)
  431. int PyArray_XDECREF (ndarray)
  432. void PyArray_SetStringFunction (object, int)
  433. dtype PyArray_DescrFromType (int)
  434. object PyArray_TypeObjectFromType (int)
  435. char * PyArray_Zero (ndarray)
  436. char * PyArray_One (ndarray)
  437. #object PyArray_CastToType (ndarray, dtype, int)
  438. int PyArray_CastTo (ndarray, ndarray)
  439. int PyArray_CastAnyTo (ndarray, ndarray)
  440. int PyArray_CanCastSafely (int, int)
  441. npy_bool PyArray_CanCastTo (dtype, dtype)
  442. int PyArray_ObjectType (object, int)
  443. dtype PyArray_DescrFromObject (object, dtype)
  444. #ndarray* PyArray_ConvertToCommonType (object, int *)
  445. dtype PyArray_DescrFromScalar (object)
  446. dtype PyArray_DescrFromTypeObject (object)
  447. npy_intp PyArray_Size (object)
  448. #object PyArray_Scalar (void *, dtype, object)
  449. #object PyArray_FromScalar (object, dtype)
  450. void PyArray_ScalarAsCtype (object, void *)
  451. #int PyArray_CastScalarToCtype (object, void *, dtype)
  452. #int PyArray_CastScalarDirect (object, dtype, void *, int)
  453. object PyArray_ScalarFromObject (object)
  454. #PyArray_VectorUnaryFunc * PyArray_GetCastFunc (dtype, int)
  455. object PyArray_FromDims (int, int *, int)
  456. #object PyArray_FromDimsAndDataAndDescr (int, int *, dtype, char *)
  457. #object PyArray_FromAny (object, dtype, int, int, int, object)
  458. object PyArray_EnsureArray (object)
  459. object PyArray_EnsureAnyArray (object)
  460. #object PyArray_FromFile (stdio.FILE *, dtype, npy_intp, char *)
  461. #object PyArray_FromString (char *, npy_intp, dtype, npy_intp, char *)
  462. #object PyArray_FromBuffer (object, dtype, npy_intp, npy_intp)
  463. #object PyArray_FromIter (object, dtype, npy_intp)
  464. object PyArray_Return (ndarray)
  465. #object PyArray_GetField (ndarray, dtype, int)
  466. #int PyArray_SetField (ndarray, dtype, int, object)
  467. object PyArray_Byteswap (ndarray, npy_bool)
  468. object PyArray_Resize (ndarray, PyArray_Dims *, int, NPY_ORDER)
  469. int PyArray_MoveInto (ndarray, ndarray)
  470. int PyArray_CopyInto (ndarray, ndarray)
  471. int PyArray_CopyAnyInto (ndarray, ndarray)
  472. int PyArray_CopyObject (ndarray, object)
  473. object PyArray_NewCopy (ndarray, NPY_ORDER)
  474. object PyArray_ToList (ndarray)
  475. object PyArray_ToString (ndarray, NPY_ORDER)
  476. int PyArray_ToFile (ndarray, stdio.FILE *, char *, char *)
  477. int PyArray_Dump (object, object, int)
  478. object PyArray_Dumps (object, int)
  479. int PyArray_ValidType (int)
  480. void PyArray_UpdateFlags (ndarray, int)
  481. object PyArray_New (type, int, npy_intp *, int, npy_intp *, void *, int, int, object)
  482. #object PyArray_NewFromDescr (type, dtype, int, npy_intp *, npy_intp *, void *, int, object)
  483. #dtype PyArray_DescrNew (dtype)
  484. dtype PyArray_DescrNewFromType (int)
  485. double PyArray_GetPriority (object, double)
  486. object PyArray_IterNew (object)
  487. object PyArray_MultiIterNew (int, ...)
  488. int PyArray_PyIntAsInt (object)
  489. npy_intp PyArray_PyIntAsIntp (object)
  490. int PyArray_Broadcast (broadcast)
  491. void PyArray_FillObjectArray (ndarray, object)
  492. int PyArray_FillWithScalar (ndarray, object)
  493. npy_bool PyArray_CheckStrides (int, int, npy_intp, npy_intp, npy_intp *, npy_intp *)
  494. dtype PyArray_DescrNewByteorder (dtype, char)
  495. object PyArray_IterAllButAxis (object, int *)
  496. #object PyArray_CheckFromAny (object, dtype, int, int, int, object)
  497. #object PyArray_FromArray (ndarray, dtype, int)
  498. object PyArray_FromInterface (object)
  499. object PyArray_FromStructInterface (object)
  500. #object PyArray_FromArrayAttr (object, dtype, object)
  501. #NPY_SCALARKIND PyArray_ScalarKind (int, ndarray*)
  502. int PyArray_CanCoerceScalar (int, int, NPY_SCALARKIND)
  503. object PyArray_NewFlagsObject (object)
  504. npy_bool PyArray_CanCastScalar (type, type)
  505. #int PyArray_CompareUCS4 (npy_ucs4 *, npy_ucs4 *, register size_t)
  506. int PyArray_RemoveSmallest (broadcast)
  507. int PyArray_ElementStrides (object)
  508. void PyArray_Item_INCREF (char *, dtype)
  509. void PyArray_Item_XDECREF (char *, dtype)
  510. object PyArray_FieldNames (object)
  511. object PyArray_Transpose (ndarray, PyArray_Dims *)
  512. object PyArray_TakeFrom (ndarray, object, int, ndarray, NPY_CLIPMODE)
  513. object PyArray_PutTo (ndarray, object, object, NPY_CLIPMODE)
  514. object PyArray_PutMask (ndarray, object, object)
  515. object PyArray_Repeat (ndarray, object, int)
  516. object PyArray_Choose (ndarray, object, ndarray, NPY_CLIPMODE)
  517. int PyArray_Sort (ndarray, int, NPY_SORTKIND)
  518. object PyArray_ArgSort (ndarray, int, NPY_SORTKIND)
  519. object PyArray_SearchSorted (ndarray, object, NPY_SEARCHSIDE, PyObject *)
  520. object PyArray_ArgMax (ndarray, int, ndarray)
  521. object PyArray_ArgMin (ndarray, int, ndarray)
  522. object PyArray_Reshape (ndarray, object)
  523. object PyArray_Newshape (ndarray, PyArray_Dims *, NPY_ORDER)
  524. object PyArray_Squeeze (ndarray)
  525. #object PyArray_View (ndarray, dtype, type)
  526. object PyArray_SwapAxes (ndarray, int, int)
  527. object PyArray_Max (ndarray, int, ndarray)
  528. object PyArray_Min (ndarray, int, ndarray)
  529. object PyArray_Ptp (ndarray, int, ndarray)
  530. object PyArray_Mean (ndarray, int, int, ndarray)
  531. object PyArray_Trace (ndarray, int, int, int, int, ndarray)
  532. object PyArray_Diagonal (ndarray, int, int, int)
  533. object PyArray_Clip (ndarray, object, object, ndarray)
  534. object PyArray_Conjugate (ndarray, ndarray)
  535. object PyArray_Nonzero (ndarray)
  536. object PyArray_Std (ndarray, int, int, ndarray, int)
  537. object PyArray_Sum (ndarray, int, int, ndarray)
  538. object PyArray_CumSum (ndarray, int, int, ndarray)
  539. object PyArray_Prod (ndarray, int, int, ndarray)
  540. object PyArray_CumProd (ndarray, int, int, ndarray)
  541. object PyArray_All (ndarray, int, ndarray)
  542. object PyArray_Any (ndarray, int, ndarray)
  543. object PyArray_Compress (ndarray, object, int, ndarray)
  544. object PyArray_Flatten (ndarray, NPY_ORDER)
  545. object PyArray_Ravel (ndarray, NPY_ORDER)
  546. npy_intp PyArray_MultiplyList (npy_intp *, int)
  547. int PyArray_MultiplyIntList (int *, int)
  548. void * PyArray_GetPtr (ndarray, npy_intp*)
  549. int PyArray_CompareLists (npy_intp *, npy_intp *, int)
  550. #int PyArray_AsCArray (object*, void *, npy_intp *, int, dtype)
  551. #int PyArray_As1D (object*, char **, int *, int)
  552. #int PyArray_As2D (object*, char ***, int *, int *, int)
  553. int PyArray_Free (object, void *)
  554. #int PyArray_Converter (object, object*)
  555. int PyArray_IntpFromSequence (object, npy_intp *, int)
  556. object PyArray_Concatenate (object, int)
  557. object PyArray_InnerProduct (object, object)
  558. object PyArray_MatrixProduct (object, object)
  559. object PyArray_CopyAndTranspose (object)
  560. object PyArray_Correlate (object, object, int)
  561. int PyArray_TypestrConvert (int, int)
  562. #int PyArray_DescrConverter (object, dtype*)
  563. #int PyArray_DescrConverter2 (object, dtype*)
  564. int PyArray_IntpConverter (object, PyArray_Dims *)
  565. #int PyArray_BufferConverter (object, chunk)
  566. int PyArray_AxisConverter (object, int *)
  567. int PyArray_BoolConverter (object, npy_bool *)
  568. int PyArray_ByteorderConverter (object, char *)
  569. int PyArray_OrderConverter (object, NPY_ORDER *)
  570. unsigned char PyArray_EquivTypes (dtype, dtype)
  571. #object PyArray_Zeros (int, npy_intp *, dtype, int)
  572. #object PyArray_Empty (int, npy_intp *, dtype, int)
  573. object PyArray_Where (object, object, object)
  574. object PyArray_Arange (double, double, double, int)
  575. #object PyArray_ArangeObj (object, object, object, dtype)
  576. int PyArray_SortkindConverter (object, NPY_SORTKIND *)
  577. object PyArray_LexSort (object, int)
  578. object PyArray_Round (ndarray, int, ndarray)
  579. unsigned char PyArray_EquivTypenums (int, int)
  580. int PyArray_RegisterDataType (dtype)
  581. int PyArray_RegisterCastFunc (dtype, int, PyArray_VectorUnaryFunc *)
  582. int PyArray_RegisterCanCast (dtype, int, NPY_SCALARKIND)
  583. #void PyArray_InitArrFuncs (PyArray_ArrFuncs *)
  584. object PyArray_IntTupleFromIntp (int, npy_intp *)
  585. int PyArray_TypeNumFromName (char *)
  586. int PyArray_ClipmodeConverter (object, NPY_CLIPMODE *)
  587. #int PyArray_OutputConverter (object, ndarray*)
  588. object PyArray_BroadcastToShape (object, npy_intp *, int)
  589. void _PyArray_SigintHandler (int)
  590. void* _PyArray_GetSigintBuf ()
  591. #int PyArray_DescrAlignConverter (object, dtype*)
  592. #int PyArray_DescrAlignConverter2 (object, dtype*)
  593. int PyArray_SearchsideConverter (object, void *)
  594. object PyArray_CheckAxis (ndarray, int *, int)
  595. npy_intp PyArray_OverflowMultiplyList (npy_intp *, int)
  596. int PyArray_CompareString (char *, char *, size_t)
  597. int PyArray_SetBaseObject(ndarray, base) # NOTE: steals a reference to base! Use "set_array_base()" instead.
  598. # Typedefs that matches the runtime dtype objects in
  599. # the numpy module.
  600. # The ones that are commented out needs an IFDEF function
  601. # in Cython to enable them only on the right systems.
  602. ctypedef npy_int8 int8_t
  603. ctypedef npy_int16 int16_t
  604. ctypedef npy_int32 int32_t
  605. ctypedef npy_int64 int64_t
  606. #ctypedef npy_int96 int96_t
  607. #ctypedef npy_int128 int128_t
  608. ctypedef npy_uint8 uint8_t
  609. ctypedef npy_uint16 uint16_t
  610. ctypedef npy_uint32 uint32_t
  611. ctypedef npy_uint64 uint64_t
  612. #ctypedef npy_uint96 uint96_t
  613. #ctypedef npy_uint128 uint128_t
  614. ctypedef npy_float32 float32_t
  615. ctypedef npy_float64 float64_t
  616. #ctypedef npy_float80 float80_t
  617. #ctypedef npy_float128 float128_t
  618. ctypedef float complex complex64_t
  619. ctypedef double complex complex128_t
  620. # The int types are mapped a bit surprising --
  621. # numpy.int corresponds to 'l' and numpy.long to 'q'
  622. ctypedef npy_long int_t
  623. ctypedef npy_longlong long_t
  624. ctypedef npy_longlong longlong_t
  625. ctypedef npy_ulong uint_t
  626. ctypedef npy_ulonglong ulong_t
  627. ctypedef npy_ulonglong ulonglong_t
  628. ctypedef npy_intp intp_t
  629. ctypedef npy_uintp uintp_t
  630. ctypedef npy_double float_t
  631. ctypedef npy_double double_t
  632. ctypedef npy_longdouble longdouble_t
  633. ctypedef npy_cfloat cfloat_t
  634. ctypedef npy_cdouble cdouble_t
  635. ctypedef npy_clongdouble clongdouble_t
  636. ctypedef npy_cdouble complex_t
  637. cdef inline object PyArray_MultiIterNew1(a):
  638. return PyArray_MultiIterNew(1, <void*>a)
  639. cdef inline object PyArray_MultiIterNew2(a, b):
  640. return PyArray_MultiIterNew(2, <void*>a, <void*>b)
  641. cdef inline object PyArray_MultiIterNew3(a, b, c):
  642. return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
  643. cdef inline object PyArray_MultiIterNew4(a, b, c, d):
  644. return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
  645. cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
  646. return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
  647. cdef inline tuple PyDataType_SHAPE(dtype d):
  648. if PyDataType_HASSUBARRAY(d):
  649. return <tuple>d.subarray.shape
  650. else:
  651. return ()
  652. cdef extern from "numpy/ndarrayobject.h":
  653. PyTypeObject PyTimedeltaArrType_Type
  654. PyTypeObject PyDatetimeArrType_Type
  655. ctypedef int64_t npy_timedelta
  656. ctypedef int64_t npy_datetime
  657. cdef extern from "numpy/ndarraytypes.h":
  658. ctypedef struct PyArray_DatetimeMetaData:
  659. NPY_DATETIMEUNIT base
  660. int64_t num
  661. cdef extern from "numpy/arrayscalars.h":
  662. # abstract types
  663. ctypedef class numpy.generic [object PyObject]:
  664. pass
  665. ctypedef class numpy.number [object PyObject]:
  666. pass
  667. ctypedef class numpy.integer [object PyObject]:
  668. pass
  669. ctypedef class numpy.signedinteger [object PyObject]:
  670. pass
  671. ctypedef class numpy.unsignedinteger [object PyObject]:
  672. pass
  673. ctypedef class numpy.inexact [object PyObject]:
  674. pass
  675. ctypedef class numpy.floating [object PyObject]:
  676. pass
  677. ctypedef class numpy.complexfloating [object PyObject]:
  678. pass
  679. ctypedef class numpy.flexible [object PyObject]:
  680. pass
  681. ctypedef class numpy.character [object PyObject]:
  682. pass
  683. ctypedef struct PyDatetimeScalarObject:
  684. # PyObject_HEAD
  685. npy_datetime obval
  686. PyArray_DatetimeMetaData obmeta
  687. ctypedef struct PyTimedeltaScalarObject:
  688. # PyObject_HEAD
  689. npy_timedelta obval
  690. PyArray_DatetimeMetaData obmeta
  691. ctypedef enum NPY_DATETIMEUNIT:
  692. NPY_FR_Y
  693. NPY_FR_M
  694. NPY_FR_W
  695. NPY_FR_D
  696. NPY_FR_B
  697. NPY_FR_h
  698. NPY_FR_m
  699. NPY_FR_s
  700. NPY_FR_ms
  701. NPY_FR_us
  702. NPY_FR_ns
  703. NPY_FR_ps
  704. NPY_FR_fs
  705. NPY_FR_as
  706. #
  707. # ufunc API
  708. #
  709. cdef extern from "numpy/ufuncobject.h":
  710. ctypedef void (*PyUFuncGenericFunction) (char **, npy_intp *, npy_intp *, void *)
  711. ctypedef class numpy.ufunc [object PyUFuncObject, check_size ignore]:
  712. cdef:
  713. int nin, nout, nargs
  714. int identity
  715. PyUFuncGenericFunction *functions
  716. void **data
  717. int ntypes
  718. int check_return
  719. char *name
  720. char *types
  721. char *doc
  722. void *ptr
  723. PyObject *obj
  724. PyObject *userloops
  725. cdef enum:
  726. PyUFunc_Zero
  727. PyUFunc_One
  728. PyUFunc_None
  729. UFUNC_ERR_IGNORE
  730. UFUNC_ERR_WARN
  731. UFUNC_ERR_RAISE
  732. UFUNC_ERR_CALL
  733. UFUNC_ERR_PRINT
  734. UFUNC_ERR_LOG
  735. UFUNC_MASK_DIVIDEBYZERO
  736. UFUNC_MASK_OVERFLOW
  737. UFUNC_MASK_UNDERFLOW
  738. UFUNC_MASK_INVALID
  739. UFUNC_SHIFT_DIVIDEBYZERO
  740. UFUNC_SHIFT_OVERFLOW
  741. UFUNC_SHIFT_UNDERFLOW
  742. UFUNC_SHIFT_INVALID
  743. UFUNC_FPE_DIVIDEBYZERO
  744. UFUNC_FPE_OVERFLOW
  745. UFUNC_FPE_UNDERFLOW
  746. UFUNC_FPE_INVALID
  747. UFUNC_ERR_DEFAULT
  748. UFUNC_ERR_DEFAULT2
  749. object PyUFunc_FromFuncAndData(PyUFuncGenericFunction *,
  750. void **, char *, int, int, int, int, char *, char *, int)
  751. int PyUFunc_RegisterLoopForType(ufunc, int,
  752. PyUFuncGenericFunction, int *, void *)
  753. void PyUFunc_f_f_As_d_d \
  754. (char **, npy_intp *, npy_intp *, void *)
  755. void PyUFunc_d_d \
  756. (char **, npy_intp *, npy_intp *, void *)
  757. void PyUFunc_f_f \
  758. (char **, npy_intp *, npy_intp *, void *)
  759. void PyUFunc_g_g \
  760. (char **, npy_intp *, npy_intp *, void *)
  761. void PyUFunc_F_F_As_D_D \
  762. (char **, npy_intp *, npy_intp *, void *)
  763. void PyUFunc_F_F \
  764. (char **, npy_intp *, npy_intp *, void *)
  765. void PyUFunc_D_D \
  766. (char **, npy_intp *, npy_intp *, void *)
  767. void PyUFunc_G_G \
  768. (char **, npy_intp *, npy_intp *, void *)
  769. void PyUFunc_O_O \
  770. (char **, npy_intp *, npy_intp *, void *)
  771. void PyUFunc_ff_f_As_dd_d \
  772. (char **, npy_intp *, npy_intp *, void *)
  773. void PyUFunc_ff_f \
  774. (char **, npy_intp *, npy_intp *, void *)
  775. void PyUFunc_dd_d \
  776. (char **, npy_intp *, npy_intp *, void *)
  777. void PyUFunc_gg_g \
  778. (char **, npy_intp *, npy_intp *, void *)
  779. void PyUFunc_FF_F_As_DD_D \
  780. (char **, npy_intp *, npy_intp *, void *)
  781. void PyUFunc_DD_D \
  782. (char **, npy_intp *, npy_intp *, void *)
  783. void PyUFunc_FF_F \
  784. (char **, npy_intp *, npy_intp *, void *)
  785. void PyUFunc_GG_G \
  786. (char **, npy_intp *, npy_intp *, void *)
  787. void PyUFunc_OO_O \
  788. (char **, npy_intp *, npy_intp *, void *)
  789. void PyUFunc_O_O_method \
  790. (char **, npy_intp *, npy_intp *, void *)
  791. void PyUFunc_OO_O_method \
  792. (char **, npy_intp *, npy_intp *, void *)
  793. void PyUFunc_On_Om \
  794. (char **, npy_intp *, npy_intp *, void *)
  795. int PyUFunc_GetPyValues \
  796. (char *, int *, int *, PyObject **)
  797. int PyUFunc_checkfperr \
  798. (int, PyObject *, int *)
  799. void PyUFunc_clearfperr()
  800. int PyUFunc_getfperr()
  801. int PyUFunc_handlefperr \
  802. (int, PyObject *, int, int *)
  803. int PyUFunc_ReplaceLoopBySignature \
  804. (ufunc, PyUFuncGenericFunction, int *, PyUFuncGenericFunction *)
  805. object PyUFunc_FromFuncAndDataAndSignature \
  806. (PyUFuncGenericFunction *, void **, char *, int, int, int,
  807. int, char *, char *, int, char *)
  808. int _import_umath() except -1
  809. cdef inline void set_array_base(ndarray arr, object base):
  810. Py_INCREF(base) # important to do this before stealing the reference below!
  811. PyArray_SetBaseObject(arr, base)
  812. cdef inline object get_array_base(ndarray arr):
  813. base = PyArray_BASE(arr)
  814. if base is NULL:
  815. return None
  816. return <object>base
  817. # Versions of the import_* functions which are more suitable for
  818. # Cython code.
  819. cdef inline int import_array() except -1:
  820. try:
  821. __pyx_import_array()
  822. except Exception:
  823. raise ImportError("numpy.core.multiarray failed to import")
  824. cdef inline int import_umath() except -1:
  825. try:
  826. _import_umath()
  827. except Exception:
  828. raise ImportError("numpy.core.umath failed to import")
  829. cdef inline int import_ufunc() except -1:
  830. try:
  831. _import_umath()
  832. except Exception:
  833. raise ImportError("numpy.core.umath failed to import")
  834. cdef extern from *:
  835. # Leave a marker that the NumPy declarations came from this file
  836. # See https://github.com/cython/cython/issues/3573
  837. """
  838. /* NumPy API declarations from "numpy/__init__.pxd" */
  839. """
  840. cdef inline bint is_timedelta64_object(object obj):
  841. """
  842. Cython equivalent of `isinstance(obj, np.timedelta64)`
  843. Parameters
  844. ----------
  845. obj : object
  846. Returns
  847. -------
  848. bool
  849. """
  850. return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type)
  851. cdef inline bint is_datetime64_object(object obj):
  852. """
  853. Cython equivalent of `isinstance(obj, np.datetime64)`
  854. Parameters
  855. ----------
  856. obj : object
  857. Returns
  858. -------
  859. bool
  860. """
  861. return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type)
  862. cdef inline npy_datetime get_datetime64_value(object obj) nogil:
  863. """
  864. returns the int64 value underlying scalar numpy datetime64 object
  865. Note that to interpret this as a datetime, the corresponding unit is
  866. also needed. That can be found using `get_datetime64_unit`.
  867. """
  868. return (<PyDatetimeScalarObject*>obj).obval
  869. cdef inline npy_timedelta get_timedelta64_value(object obj) nogil:
  870. """
  871. returns the int64 value underlying scalar numpy timedelta64 object
  872. """
  873. return (<PyTimedeltaScalarObject*>obj).obval
  874. cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil:
  875. """
  876. returns the unit part of the dtype for a numpy datetime64 object.
  877. """
  878. return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base