我正在尝试将共享 C 库连接到一些 python 代码。与库的接口类似于
typedef struct{
int v1;
double* v2} input;
还有两种类似的类型:用于配置和输出类型。
ctypes Structure
我使用s在 python 中设置这些结构,如下所示:
class input(Structure):
_fields_ = [("v1",c_int),("v2",POINTER(c_double)]
C 代码有一些函数接收指向该结构的指针,并且 argtypes 定义如下:
fun.argtypes = [constraints,input,POINTER(input)]
constraints
是另一种结构,其中包含一些int
用于配置的字段。
首先我更新输入结构中的 v2 字段
input.v2 = generated_array.ctypes.data_as(POINTER(c_double))
然后我称之为:
fun(constraints,input,byref(output))
函数原型要求 struct 和 * 到 struct(假设输出 struct 类型与输入 struct 类型相同)。
然后我想访问存储在输出的 v2 字段中的 fun 结果。但我得到了意想不到的结果。有更好/正确的方法吗?
我在这里搜索了很多并阅读了文档,但我找不到问题所在。我没有任何错误消息,但我从共享库收到的警告似乎表明这些接口存在错误。
我想我发现了问题:
当我调用该方法时,会调用一个复杂的 numpy 数组。然后我创建 4 个向量:
out_real = ascontiguousarray(zeros(din.size,dtype=c_double))
out_imag = ascontiguousarray(zeros(din.size,dtype=c_double))
in_real = ascontiguousarray(din.real,dtype = c_double)
in_imag = ascontiguousarray(din.imag,dtype = c_double)
其中 din 是输入向量。我以这种方式测试了该方法:
print in_real.ctypes.data_as(POINTER(c_double))
print in_imag.ctypes.data_as(POINTER(c_double))
print out_real.ctypes.data_as(POINTER(c_double))
print out_imag.ctypes.data_as(POINTER(c_double))
结果是:
<model.LP_c_double object at 0x1d81f80>
<model.LP_c_double object at 0x1d81f80>
<model.LP_c_double object at 0x1d81f80>
<model.LP_c_double object at 0x1d81f80>
似乎他们都指向同一个地方。
经过一些更改后,它按预期工作......
经过几次测试,我发现代码第一次几乎是正确的。我创建了一次 Structure 实例并更新了它的字段。我改为在每次调用fun
. 我还将所有数组类型更改为等效的 ctypes 类型;这似乎使该功能按预期工作。
打印行为仍然与上面的测试一样,但即使出现这种奇怪的行为,该功能似乎也能正常工作。正如下面@ericsun 评论所指出的那样,这是正确的。