如何使用模块向Fortran公开Python回调

时间:2014-02-17 18:32:35

标签: python module fortran f2py

关于F2Py的

This scipy documentation page声明:

  

[回调函数]也可以在模块中明确设置。然后   没有必要将参数列表中的函数传递给   Fortran功能。如果Fortran函数调用,则可能需要这样做   python回调函数本身由另一个Fortran调用   功能

但是,我似乎无法找到如何做到这一点的例子。

考虑以下Fortran / Python组合:

test.f

subroutine test(py_func)

use iso_fortran_env, only stdout => output_unit

!f2py intent(callback) py_func
external py_func
integer py_func
!f2py integer y,x
!f2py y = py_func(x)

integer :: a
integer :: b

a = 12
write(stdout, *) a

end subroutine

call_test.py

import test

def func(x):
    return x * 2

test.test(func)

使用以下命令编译(英特尔编译器):

python f2py.py -c test.f --fcompiler=intelvem -m test

我必须采取哪些更改才能以模块的形式将func公开给整个Fortran程序,以便我可以从子例程test或任何其他子例程中调用该函数在项目的任何其他fortran文件中?

1 个答案:

答案 0 :(得分:2)

以下对我有用。请注意,没有传递给测试的参数。 python文件如问题中所述。

subroutine test()

use iso_fortran_env, only stdout => output_unit

!f2py intent(callback) py_func
external py_func
integer py_func
integer y,x
!f2py y = py_func(x)

integer :: a
integer :: b

a = 12
write(stdout, *) a

end subroutine

顺便说一句,然后我将py_func包装在一个子程序中,这样我就可以调用它,而不必在我使用它的每个文件/函数中声明以下内容:

integer y
y = py_func(x)