我正在尝试包装一个具有很多这样的功能的头文件
测试.h
void test(int N, int* data_in, int* data_out);
这样我就可以使用 numpy.
现在我有以下 cython 代码:
测试.pyx
import numpy as np
cimport numpy as np
ctypedef np.int_t itype_t
cdef extern from 'VolumeForm.h':
void _test 'test' (int, int*, int*)
def wrap_test(np.ndarray[itype_t, ndim=2] data):
cdef np.ndarray[dtype_t, ndim=1] out
out = np.zeros((data.shape[0],1), dtype=np.double)
_test(
data.shape[0],
<itype_t*> data.data,
<itype_t*> out.data
)
return out
但是,当我尝试编译它时,我得到了错误:
Error converting Pyrex file to C:
(...)
Cannot assign type 'test.itype_t *' to 'int *'
我怎样才能解决这个问题?