forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumpy_cpp.h
493 lines (427 loc) · 10 KB
/
numpy_cpp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
/* -*- mode: c++; c-basic-offset: 4 -*- */
#ifndef _NUMPY_CPP_H_
#define _NUMPY_CPP_H_
/***************************************************************************
* This file is based on original work by Mark Wiebe, available at:
*
* http://github.com/mwiebe/numpy-cpp
*
* However, the needs of matplotlib wrappers, such as treating an
* empty array as having the correct dimensions, have made this rather
* matplotlib-specific, so it's no longer compatible with the
* original.
*/
#include "py_exceptions.h"
#include <complex>
#ifdef _POSIX_C_SOURCE
# undef _POSIX_C_SOURCE
#endif
#ifdef _XOPEN_SOURCE
# undef _XOPEN_SOURCE
#endif
#include <Python.h>
#include <numpy/ndarrayobject.h>
namespace numpy
{
// Type traits for the NumPy types
template <typename T>
struct type_num_of;
// This is dodgy - need sizeof(bool) == 1 consistently for this to be valid...
// template <> struct type_num_of<bool> {
// enum {value = NPY_BOOL};
//};
template <>
struct type_num_of<npy_byte>
{
enum {
value = NPY_BYTE
};
};
template <>
struct type_num_of<npy_ubyte>
{
enum {
value = NPY_UBYTE
};
};
template <>
struct type_num_of<npy_short>
{
enum {
value = NPY_SHORT
};
};
template <>
struct type_num_of<npy_ushort>
{
enum {
value = NPY_USHORT
};
};
template <>
struct type_num_of<npy_int>
{
enum {
value = NPY_INT
};
};
template <>
struct type_num_of<npy_uint>
{
enum {
value = NPY_UINT
};
};
template <>
struct type_num_of<npy_long>
{
enum {
value = NPY_LONG
};
};
template <>
struct type_num_of<npy_ulong>
{
enum {
value = NPY_ULONG
};
};
template <>
struct type_num_of<npy_longlong>
{
enum {
value = NPY_LONGLONG
};
};
template <>
struct type_num_of<npy_ulonglong>
{
enum {
value = NPY_ULONGLONG
};
};
template <>
struct type_num_of<npy_float>
{
enum {
value = NPY_FLOAT
};
};
template <>
struct type_num_of<npy_double>
{
enum {
value = NPY_DOUBLE
};
};
#if NPY_LONGDOUBLE != NPY_DOUBLE
template <>
struct type_num_of<npy_longdouble>
{
enum {
value = NPY_LONGDOUBLE
};
};
#endif
template <>
struct type_num_of<npy_cfloat>
{
enum {
value = NPY_CFLOAT
};
};
template <>
struct type_num_of<std::complex<npy_float> >
{
enum {
value = NPY_CFLOAT
};
};
template <>
struct type_num_of<npy_cdouble>
{
enum {
value = NPY_CDOUBLE
};
};
template <>
struct type_num_of<std::complex<npy_double> >
{
enum {
value = NPY_CDOUBLE
};
};
#if NPY_CLONGDOUBLE != NPY_CDOUBLE
template <>
struct type_num_of<npy_clongdouble>
{
enum {
value = NPY_CLONGDOUBLE
};
};
#endif
template <>
struct type_num_of<std::complex<npy_longdouble> >
{
enum {
value = NPY_CLONGDOUBLE
};
};
template <>
struct type_num_of<PyObject *>
{
enum {
value = NPY_OBJECT
};
};
template <typename T>
struct type_num_of<T &>
{
enum {
value = type_num_of<T>::value
};
};
template <typename T>
struct type_num_of<const T>
{
enum {
value = type_num_of<T>::value
};
};
template <typename T>
struct is_const
{
enum {
value = false
};
};
template <typename T>
struct is_const<const T>
{
enum {
value = true
};
};
namespace detail
{
template <template <typename, int> class AV, typename T, int ND>
class array_view_accessors;
template <template <typename, int> class AV, typename T>
class array_view_accessors<AV, T, 1>
{
public:
typedef AV<T, 1> AVC;
typedef T sub_t;
T &operator()(npy_intp i)
{
AVC *self = static_cast<AVC *>(this);
return *reinterpret_cast<T *>(self->m_data + self->m_strides[0] * i);
}
const T &operator()(npy_intp i) const
{
const AVC *self = static_cast<const AVC *>(this);
return *reinterpret_cast<const T *>(self->m_data + self->m_strides[0] * i);
}
T &operator[](npy_intp i)
{
AVC *self = static_cast<AVC *>(this);
return *reinterpret_cast<T *>(self->m_data + self->m_strides[0] * i);
}
const T &operator[](npy_intp i) const
{
const AVC *self = static_cast<const AVC *>(this);
return *reinterpret_cast<const T *>(self->m_data + self->m_strides[0] * i);
}
};
template <template <typename, int> class AV, typename T>
class array_view_accessors<AV, T, 2>
{
public:
typedef AV<T, 2> AVC;
typedef AV<T, 1> sub_t;
T &operator()(npy_intp i, npy_intp j)
{
AVC *self = static_cast<AVC *>(this);
return *reinterpret_cast<T *>(self->m_data + self->m_strides[0] * i +
self->m_strides[1] * j);
}
const T &operator()(npy_intp i, npy_intp j) const
{
const AVC *self = static_cast<const AVC *>(this);
return *reinterpret_cast<const T *>(self->m_data + self->m_strides[0] * i +
self->m_strides[1] * j);
}
sub_t operator[](npy_intp i) const
{
const AVC *self = static_cast<const AVC *>(this);
return sub_t(self->m_arr,
self->m_data + self->m_strides[0] * i,
self->m_shape + 1,
self->m_strides + 1);
}
};
template <template <typename, int> class AV, typename T>
class array_view_accessors<AV, T, 3>
{
public:
typedef AV<T, 3> AVC;
typedef AV<T, 2> sub_t;
T &operator()(npy_intp i, npy_intp j, npy_intp k)
{
AVC *self = static_cast<AVC *>(this);
return *reinterpret_cast<T *>(self->m_data + self->m_strides[0] * i +
self->m_strides[1] * j + self->m_strides[2] * k);
}
const T &operator()(npy_intp i, npy_intp j, npy_intp k) const
{
const AVC *self = static_cast<const AVC *>(this);
return *reinterpret_cast<const T *>(self->m_data + self->m_strides[0] * i +
self->m_strides[1] * j + self->m_strides[2] * k);
}
sub_t operator[](npy_intp i) const
{
const AVC *self = static_cast<const AVC *>(this);
return sub_t(self->m_arr,
self->m_data + self->m_strides[0] * i,
self->m_shape + 1,
self->m_strides + 1);
}
};
}
static npy_intp zeros[] = { 0, 0, 0 };
template <typename T, int ND>
class array_view : public detail::array_view_accessors<array_view, T, ND>
{
friend class detail::array_view_accessors<numpy::array_view, T, ND>;
private:
// Copies of the array data
PyArrayObject *m_arr;
npy_intp *m_shape;
npy_intp *m_strides;
char *m_data;
public:
typedef T value_type;
enum {
ndim = ND
};
array_view() : m_arr(NULL), m_data(NULL)
{
m_shape = zeros;
m_strides = zeros;
}
array_view(PyObject *arr, bool contiguous = false) : m_arr(NULL), m_data(NULL)
{
if (!set(arr, contiguous)) {
throw py::exception();
}
}
array_view(const array_view &other, bool contiguous = false) : m_arr(NULL), m_data(NULL)
{
if (!set((PyObject *)other.m_arr)) {
throw py::exception();
}
}
array_view(PyArrayObject *arr, char *data, npy_intp *shape, npy_intp *strides)
{
m_arr = arr;
Py_INCREF(arr);
m_data = data;
m_shape = shape;
m_strides = strides;
}
array_view(npy_intp shape[ND]) : m_arr(NULL), m_shape(NULL), m_strides(NULL), m_data(NULL)
{
PyObject *arr = PyArray_SimpleNew(ND, shape, type_num_of<T>::value);
if (arr == NULL) {
throw py::exception();
}
if (!set(arr, true)) {
Py_DECREF(arr);
throw py::exception();
}
Py_DECREF(arr);
}
~array_view()
{
Py_XDECREF(m_arr);
}
int set(PyObject *arr, bool contiguous = false)
{
PyArrayObject *tmp;
if (arr == NULL || arr == Py_None) {
Py_XDECREF(m_arr);
m_arr = NULL;
m_data = NULL;
m_shape = zeros;
m_strides = zeros;
} else {
if (contiguous) {
tmp = (PyArrayObject *)PyArray_ContiguousFromAny(arr, type_num_of<T>::value, 0, ND);
} else {
tmp = (PyArrayObject *)PyArray_FromObject(arr, type_num_of<T>::value, 0, ND);
}
if (tmp == NULL) {
return 0;
}
if (PyArray_NDIM(tmp) == 0 || PyArray_DIM(tmp, 0) == 0) {
Py_XDECREF(m_arr);
m_arr = NULL;
m_data = NULL;
m_shape = zeros;
m_strides = zeros;
} else if (PyArray_NDIM(tmp) != ND) {
PyErr_Format(PyExc_ValueError,
"Expected %d-dimensional array, got %d",
ND,
PyArray_NDIM(tmp));
Py_DECREF(tmp);
return 0;
}
/* Copy some of the data to the view object for faster access */
Py_XDECREF(m_arr);
m_arr = tmp;
m_shape = PyArray_DIMS(m_arr);
m_strides = PyArray_STRIDES(m_arr);
m_data = (char *)PyArray_BYTES(tmp);
}
return 1;
}
npy_intp dim(size_t i)
{
if (i > ND) {
return 0;
}
return m_shape[i];
}
size_t size()
{
return (size_t)dim(0);
}
T *data()
{
return (T *)m_data;
}
PyObject *pyobj()
{
Py_INCREF(m_arr);
return (PyObject *)m_arr;
}
static int converter(PyObject *obj, void *arrp)
{
array_view<T, ND> *arr = (array_view<T, ND> *)arrp;
if (!arr->set(obj)) {
return 0;
}
return 1;
}
static int converter_contiguous(PyObject *obj, void *arrp)
{
array_view<T, ND> *arr = (array_view<T, ND> *)arrp;
if (!arr->set(obj, true)) {
return 0;
}
return 1;
}
};
} // namespace numpy
#endif