如何使用C API创建Numpy数组的datetime64对象?

时间:2014-07-30 09:48:51

标签: python numpy datetime64

我需要从C / C ++代码创建一个numpy datetime64对象的数组。正如您所看到的NPY_LONGLONGNPY_VOID我做到了。我需要为NPY_DATETIME类型执行相同的操作。

PyObject *arr1 = PyArray_SimpleNew(1, &dims, NPY_LONGLONG);
PyObject *arr2 = PyArray_New(&PyArray_Type, 1, &dims, NPY_VOID, NULL, NULL, item_size, 0, NULL);

问题是没有关于NPY_DATETIME类型的内部表示的文档,所以我不知道它是否具有固定的大小,结构。

如果你像NPY_LONGLONGNPY_VOID那样举例,那就太棒了。

1 个答案:

答案 0 :(得分:2)

我找到了一个很好的解决方案。这是我的函数,它从C缓冲区创建numpy数组。

PyObject* create_datetime_array(int index, std::string const &dtype)
{
    int buffer_size = this->elements_count*sizeof(omd::OT_int64);
    npy_intp dims = this->elements_count;
    PyObject *date_type = Py_BuildValue("s", dtype.c_str());
    PyArray_Descr *descr;
    PyArray_DescrConverter(date_type, &descr);
    Py_XDECREF(date_type);
    PyObject *arr = PyArray_SimpleNewFromDescr(1, &dims, descr);
    memcpy(PyArray_BYTES((PyArrayObject *)arr), &(this->int64_data[index][0]), buffer_size);
    return arr;
}

dtype是M8 [ms]或M8 [us]或M8 [ns]。