| 613 | } |
| 614 | |
| 615 | PyObject* PyArrayFromIntVector(const int32_t* data, npy_intp* size) { |
| 616 | PyObject* obj = PyArray_SimpleNewFromData( |
| 617 | 1, size, NPY_INT32, (void *)data); |
| 618 | return obj; |
| 619 | } |
| 620 | |
| 621 | PyObject* PyArrayFromInt64Vector(const int64_t* data, npy_intp* size) { |
| 622 | PyObject* obj = PyArray_SimpleNewFromData( |