-
Notifications
You must be signed in to change notification settings - Fork 279
/
NumpyVector.hpp
443 lines (369 loc) · 14.7 KB
/
NumpyVector.hpp
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
#ifndef NTA_NUMPY_VECTOR_HPP
#define NTA_NUMPY_VECTOR_HPP
/* ---------------------------------------------------------------------
* Numenta Platform for Intelligent Computing (NuPIC)
* Copyright (C) 2013, Numenta, Inc. Unless you have an agreement
* with Numenta, Inc., for a separate license for this software code, the
* following terms and conditions apply:
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero Public License for more details.
*
* You should have received a copy of the GNU Affero Public License
* along with this program. If not, see http://www.gnu.org/licenses.
*
* http://numenta.org/licenses/
* ---------------------------------------------------------------------
*/
/** @file
* Contains the NumpyArray class, a wrapper for Python numpy arrays.
*/
#include <nupic/py_support/NumpyArrayObject.hpp>
#include <nupic/types/Types.hpp> // For nupic::Real.
#include <nupic/utils/Log.hpp> // For NTA_ASSERT
#include <algorithm> // For std::copy.
namespace nupic {
extern int LookupNumpyDType(const size_t *);
extern int LookupNumpyDType(const nupic::Byte *);
extern int LookupNumpyDType(const nupic::Int16 *);
extern int LookupNumpyDType(const nupic::UInt16 *);
extern int LookupNumpyDType(const nupic::Int32 *);
extern int LookupNumpyDType(const nupic::UInt32 *);
extern int LookupNumpyDType(const nupic::Int64 *);
extern int LookupNumpyDType(const nupic::UInt64 *);
extern int LookupNumpyDType(const nupic::Real32 *);
extern int LookupNumpyDType(const nupic::Real64 *);
/**
* Concrete Numpy multi-d array wrapper whose implementation cannot be visible
* due to the specifics of dynamically loading the Numpy C function API.
*/
class NumpyArray
{
NumpyArray(const NumpyArray &); // Verboten.
NumpyArray &operator=(const NumpyArray &); // Verboten.
protected:
PyArrayObject *p_;
int dtype_;
const char *addressOf0() const;
char *addressOf0();
int stride(int i) const;
NumpyArray(int nd, const int *dims, int dtype);
NumpyArray(PyObject *p, int dtype, int requiredDimension=0);
public:
///////////////////////////////////////////////////////////
/// Destructor.
///
/// Releases the reference to the internal numpy array.
///////////////////////////////////////////////////////////
virtual ~NumpyArray();
///////////////////////////////////////////////////////////
/// The number of dimensions of the internal numpy array.
///
/// Will always be 1, as enforced by the constructors.
///////////////////////////////////////////////////////////
int numDimensions() const { return getRank(); }
int getRank() const;
///////////////////////////////////////////////////////////
/// Gets the size of the array along dimension i.
///
/// Does not check the validity of the passed-in dimension.
///////////////////////////////////////////////////////////
int dimension(int i) const;
void getDims(int *) const;
///////////////////////////////////////////////////////////
/// Gets the size of the array (along dimension 0).
///////////////////////////////////////////////////////////
int size() const { return dimension(0); }
///////////////////////////////////////////////////////////
/// Returns a PyObject that can be returned from C code to Python.
///
/// The PyObject returned is a new reference, and the caller must
/// dereference the object when done.
/// The PyObject is produced by PyArray_Return (whatever that does).
///////////////////////////////////////////////////////////
PyObject *forPython();
};
///////////////////////////////////////////////////////////
/// A wrapper for 1D numpy arrays of data type equaivalent to nupic::Real.
///
/// Numpy is a Python extension written in C.
/// Accessing numpy's C API directly is tricky but possible.
/// Such access can be performed with SWIG typemaps,
/// using a slow and feature-poor set of SWIG typemap definitions
/// provided as an example with the numpy documentation.
/// This class bypasses that method of access, in favor of
/// a faster interface.
///
/// This wrapper should only be used within Python bindings,
/// as numpy data structures will only be passed in from Python code.
/// For an example of its use, see the nupic::SparseMatrix Python bindings
/// in nupic/python/bindings/math/SparseMatrix.i
///////////////////////////////////////////////////////////
template<typename T=nupic::Real>
class NumpyVectorT : public NumpyArray
{
NumpyVectorT(const NumpyVectorT<T> &); // Verboten.
NumpyVectorT<T> &operator=(const NumpyVectorT<T> &); // Verboten.
public:
///////////////////////////////////////////////////////////
/// Create a new 1D numpy array of size n.
///////////////////////////////////////////////////////////
NumpyVectorT(int n, const T& val=0)
: NumpyArray(1, &n, LookupNumpyDType((const T *) 0))
{
std::fill(begin(), end(), val);
}
NumpyVectorT(int n, const T *val)
: NumpyArray(1, &n, LookupNumpyDType((const T *) 0))
{
if(val) std::copy(val, val+n, begin());
}
///////////////////////////////////////////////////////////
/// Reference an existing 1D numpy array, or copy it if
/// it differs in type.
///
/// Produces a really annoying warning if this will do a slow copy.
/// Do not use in this case. Make sure the data coming in is in
/// the appropriate format (1D contiguous numpy array of type
/// equivalent to nupic::Real). If nupic::Real is float,
/// the incoming array should have been created with dtype=numpy.float32
///////////////////////////////////////////////////////////
NumpyVectorT(PyObject *p)
: NumpyArray(p, LookupNumpyDType((const T *) 0), 1)
{}
virtual ~NumpyVectorT() {}
T* begin() { return addressOf(0); }
T* end() { return begin() + size(); }
const T* begin() const { return addressOf(0); }
const T* end() const { return begin() + size(); }
///////////////////////////////////////////////////////////
/// Get a pointer to element i.
///
/// Does not check the validity of the index.
///////////////////////////////////////////////////////////
const T *addressOf(int i) const
{ return (const T *) (addressOf0() + i*stride(0)); }
///////////////////////////////////////////////////////////
/// Get a non-const pointer to element i.
///
/// Does not check the validity of the index.
///////////////////////////////////////////////////////////
T *addressOf(int i)
{ return (T *) (addressOf0() + i*stride(0)); }
///////////////////////////////////////////////////////////
/// Get the increment (in number of Reals) from one element
/// to the next.
///////////////////////////////////////////////////////////
int incr() const { return int(addressOf(1) - addressOf(0)); }
inline T& get(int i) { return *addressOf(i); }
inline T get(int i) const { return *addressOf(i); }
inline void set(int i, const T& val) { *addressOf(i) = val; }
};
//--------------------------------------------------------------------------------
template<typename T=nupic::Real>
class NumpyMatrixT : public NumpyArray
{
NumpyMatrixT(const NumpyMatrixT &); // Verboten.
NumpyMatrixT &operator=(const NumpyMatrixT &); // Verboten.
public:
typedef int size_type;
///////////////////////////////////////////////////////////
/// Create a new 2D numpy array of size n.
///////////////////////////////////////////////////////////
NumpyMatrixT(const int nRowsCols[2])
: NumpyArray(2, nRowsCols, LookupNumpyDType((const T *) 0))
{}
NumpyMatrixT(PyObject *p)
: NumpyArray(p, LookupNumpyDType((const T *) 0), 2)
{}
///////////////////////////////////////////////////////////
/// Destructor.
///
/// Releases the reference to the internal numpy array.
///////////////////////////////////////////////////////////
virtual ~NumpyMatrixT() {}
int rows() const { return dimension(0); }
int columns() const { return dimension(1); }
int nRows() const { return dimension(0); }
int nCols() const { return dimension(1); }
inline const T *addressOf(int row, int col) const
{ return (const T *) (addressOf0() + row*stride(0) + col*stride(1)); }
inline T *addressOf(int row, int col)
{ return (T *) (addressOf0() + row*stride(0) + col*stride(1)); }
inline const T* begin(int row) const
{ return (const T*)(addressOf0() + row*stride(0)); }
inline const T* end(int row) const
{ return (const T*)(addressOf0() + row*stride(0) + nCols()*stride(1)); }
inline T* begin(int row)
{ return (T*)(addressOf0() + row*stride(0)); }
inline T* end(int row)
{ return (T*)(addressOf0() + row*stride(0) + nCols()*stride(1)); }
inline T& get(int i, int j) { return *addressOf(i,j); }
inline T get(int i, int j) const { return *addressOf(i,j); }
inline void set(int i, int j, const T& val) { *addressOf(i,j) = val; }
};
template<typename T=nupic::Real>
class NumpyNDArrayT : public NumpyArray
{
NumpyNDArrayT(const NumpyNDArrayT &); // Verboten.
NumpyNDArrayT &operator=(const NumpyNDArrayT &); // Verboten.
public:
NumpyNDArrayT(PyObject *p)
: NumpyArray(p, LookupNumpyDType((const T *) 0))
{}
NumpyNDArrayT(int rank, const int *dims)
: NumpyArray(rank, dims, LookupNumpyDType((const T *) 0))
{}
virtual ~NumpyNDArrayT() {}
const T *getData() const { return (const T *) addressOf0(); }
T *getData() { return (T *) addressOf0(); }
};
//--------------------------------------------------------------------------------
typedef NumpyVectorT<> NumpyVector;
typedef NumpyMatrixT<> NumpyMatrix;
typedef NumpyNDArrayT<> NumpyNDArray;
//--------------------------------------------------------------------------------
template <typename T>
inline T convertToValueType(PyObject *val)
{
return * nupic::NumpyNDArrayT<T>(val).getData();
}
//--------------------------------------------------------------------------------
template <typename T>
inline PyObject* convertFromValueType(const T& value) {
nupic::NumpyNDArrayT<T> ret(0, NULL);
*ret.getData() = value;
return ret.forPython();
}
//--------------------------------------------------------------------------------
template <typename I, typename T>
inline PyObject* convertToPairOfLists(I i_begin, I i_end, T val)
{
const size_t n = (size_t) (i_end - i_begin);
PyObject *indOut = PyTuple_New(n);
// Steals the new references.
for (size_t i = 0; i != n; ++i, ++i_begin)
PyTuple_SET_ITEM(indOut, i, PyInt_FromLong(*i_begin));
PyObject *valOut = PyTuple_New(n);
// Steals the new references.
for (size_t i = 0; i != n; ++i, ++val)
PyTuple_SET_ITEM(valOut, i, PyFloat_FromDouble(*val));
PyObject *toReturn = PyTuple_New(2);
// Steals the index tuple reference.
PyTuple_SET_ITEM(toReturn, 0, indOut);
// Steals the index tuple reference.
PyTuple_SET_ITEM(toReturn, 1, valOut);
// Returns a single new reference.
return toReturn;
}
//--------------------------------------------------------------------------------
template <typename I, typename T>
inline PyObject* createPair32(I i, T v)
{
PyObject *result = PyTuple_New(2);
PyTuple_SET_ITEM(result, 0, PyInt_FromLong(i));
PyTuple_SET_ITEM(result, 1, PyFloat_FromDouble(v));
return result;
}
//--------------------------------------------------------------------------------
template <typename I, typename T>
inline PyObject* createPair64(I i, T v)
{
PyObject *result = PyTuple_New(2);
PyTuple_SET_ITEM(result, 0, PyLong_FromLongLong(i));
PyTuple_SET_ITEM(result, 1, PyFloat_FromDouble(v));
return result;
}
//--------------------------------------------------------------------------------
template <typename I, typename T>
inline PyObject* createTriplet32(I i1, I i2, T v1)
{
PyObject *result = PyTuple_New(3);
PyTuple_SET_ITEM(result, 0, PyInt_FromLong(i1));
PyTuple_SET_ITEM(result, 1, PyInt_FromLong(i2));
PyTuple_SET_ITEM(result, 2, PyFloat_FromDouble(v1));
return result;
}
//--------------------------------------------------------------------------------
template <typename I, typename T>
inline PyObject* createTriplet64(I i1, I i2, T v1)
{
PyObject *result = PyTuple_New(3);
PyTuple_SET_ITEM(result, 0, PyLong_FromLongLong(i1));
PyTuple_SET_ITEM(result, 1, PyLong_FromLongLong(i2));
PyTuple_SET_ITEM(result, 2, PyFloat_FromDouble(v1));
return result;
}
//--------------------------------------------------------------------------------
template <typename TIter>
PyObject* PyInt32Vector(TIter begin, TIter end)
{
Py_ssize_t n = end - begin;
PyObject *p = PyTuple_New(n);
Py_ssize_t i = 0;
for (TIter cur=begin; cur!=end; ++cur, ++i) {
PyTuple_SET_ITEM(p, i, PyInt_FromLong(*cur));
}
return p;
}
//--------------------------------------------------------------------------------
template <typename TIter>
PyObject* PyInt64Vector(TIter begin, TIter end)
{
Py_ssize_t n = end - begin;
PyObject *p = PyTuple_New(n);
Py_ssize_t i = 0;
for (TIter cur=begin; cur!=end; ++cur, ++i) {
PyTuple_SET_ITEM(p, i, PyLong_FromLongLong(*cur));
}
return p;
}
//--------------------------------------------------------------------------------
template <typename TIter>
PyObject* PyFloatVector(TIter begin, TIter end)
{
Py_ssize_t n = end - begin;
PyObject *p = PyTuple_New(n);
Py_ssize_t i = 0;
for (TIter cur=begin; cur!=end; ++cur, ++i) {
PyTuple_SET_ITEM(p, i, PyFloat_FromDouble(*cur));
}
return p;
}
/**
* Extract a 1D Numpy array's buffer.
*/
template<typename T>
class NumpyVectorWeakRefT
{
public:
NumpyVectorWeakRefT(PyObject* pyArray)
: pyArray_((PyArrayObject*)pyArray)
{
NTA_ASSERT(PyArray_NDIM(pyArray_) == 1);
NTA_ASSERT(PyArray_EquivTypenums(
PyArray_TYPE(pyArray_), LookupNumpyDType((const T *) 0)));
}
T* begin() const
{
return (T*) PyArray_DATA(pyArray_);
}
T* end() const
{
return (T*) PyArray_DATA(pyArray_) + size();
}
size_t size() const
{
return PyArray_DIMS(pyArray_)[0];
}
protected:
PyArrayObject* pyArray_;
};
} // End namespace nupic.
#endif