我可以使用gfortran创建共享库吗?

时间:2012-02-15 06:22:38

标签: python fortran gfortran f2py

我想制作这样的文件,以便在python中使用它。 如何从fortran源创建共享库?

我测试过以下代码。

gfortran -c mod.f90
#gfortran -c sub1.f90
gfortran -c func.f90
gfortran -shared -fPIC -o func.so func.f90 mod.o

但我无法在python中导入它。我在fortran源代码中使用了模块文件。我从python导入了fortran源代码。我不确定我做对了。

[===>14:47:59]f1:python
Python 2.7.2+ (default, Oct  4 2011, 20:03:08) 
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import func
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: dynamic module does not define init function (initfunc)




func.f90
-----------------------------------------
program func

use mod_test

switch1 = .true.
switch2 = .false.

x = 1.2
!call test(x, z)
print *, b, str, z, switch1, switch2

!print *, 'hello'
end program func
-----------------------------------------
mod.f90
-----------------------------------------
module mod_test
!implicit none
integer a
real x, y, z
real*8 :: b = 3.4
logical*2 switch1, switch2
character*5, parameter :: str = 'good'
end module mod_test
-----------------------------------------
sub1.f90
-----------------------------------------
subroutine test(input, output)
real, intent(in) :: input
real, intent(out) :: output

output = (input + input)
end subroutine
-----------------------------------------

1 个答案:

答案 0 :(得分:9)

你需要在Fortran和Python之间使用一些“粘合剂”。查看F2PY - Fortran to Python interface generator

EDIT。例如:

f2py -c -m func func.f90 mod.f90 sub1.f90
python
>>> import func
>>> dir(func)
['__doc__', '__file__', '__name__', '__version__', 'mod_test', 'test']

编辑2.如果你想从Python执行func.f90中的代码,我认为你必须将它从程序改为子程序。