Python包装器中的Fortran DLL,相同功能的输出各不相同



我已经从这个问题中调整了我的代码

我的最终目标是: - 在DLL中打包一些Fortran代码(已经完成) - 创建一个Python包装器作为接口,以从源接收输入,并将这些输入提供到DLL中,然后将它们传递到DLLS FORTRAN函数中 - 将功能的输出返回到另一个Python程序。

到目前为止,我一直在将此示例用作原型(对于我最终会适应的),每次都会获得不同的输出。

如下所示:

    C:UsersNAMEDesktop>python.exe py_wrapper.py
    <CDLL 'fort_test', handle 6f800000 at 0x25e174ec2e8>
    <_FuncPtr object at 0x0000025E17617388>
    <_FuncPtr object at 0x0000025E17617388>
    c_long(3)
    390943376        <---int value (my annotation for clarity)
    <class 'int'>
    c_long(390943376)
    <__main__.LP_c_long object at 0x0000025E174D54C8>

    C:UsersNAMEDesktop>python.exe py_wrapper.py
    <CDLL 'fort_test', handle 6f800000 at 0x23fa636c2e8>
    <_FuncPtr object at 0x0000023FA6497388>
    <_FuncPtr object at 0x0000023FA6497388>
    c_long(3)
    -1506454896       <---int value (my annotation for clarity)
    <class 'int'>
    c_long(-1506454896)
    <__main__.LP_c_long object at 0x0000023FA63554C8>

这是我的fortran代码的内容:

    subroutine ex(i)
    integer i
    i=i+1
    return i
    end     

这是我的python包装器:(这里有很多测试内容)

    from ctypes import *
    DLL = CDLL('fort_test')
    print(DLL)
    print(getattr(DLL, 'ex_'))
    print(DLL.ex_)
    x = pointer(c_int(3))
    print(x.contents)
    res = DLL.ex_(x)
    print(res)
    print(type(res))
    proc_res = pointer(c_int(res))
    print(proc_res.contents)
    print(proc_res)

我的问题是,有人知道为什么此输出不断变化吗?我的输入是代码中的3个,我希望给定四个函数的输出,但是我得到了看起来像内存地址的内容(请参阅输出示例中的注释)或内存地址的签名整数表示?

更新:

我解决了我的问题。

from ctypes import *
DLL = windll.fort_test
print DLL
x = byref(c_int(3)) 
print x res = DLL.ex_( x )
print cast(res,POINTER(c_int)).contents

我也清理了很多。我继续传递参考,然后施放作为C_INT指针返回的内存地址(所有帽子都很重要),并使用'.contents'函数指针将其放置为

相关内容

  • 没有找到相关文章