I am trying to compile a python module from some Fortran code using f2py. The code compiles fine with ifort, but throws up errors when using f2py. Here is the code (it is over two files):
gdat.f90:
MODULE GDAT
PUBLIC
INTEGER :: NX, NY
END MODULE GDAT
part.f90:
SUBROUTINE PART(ARR)
USE GDAT, ONLY: NX, NY
INTEGER, INTENT(IN) :: ARR(NX,NY)
PRINT*, ARR
END SUBROUTINE PART
I compile it using f2py -c gdat.f90 part.f90 -m part, but I get errors about nx and ny not being defined, e.g.:
/var/tmp/tmp2hzU6s/src.linux-x86_64-2.7/untitledmodule.c: In function 'f2py_rout_untitled_part':
/var/tmp/tmp2hzU6s/src.linux-x86_64-2.7/untitledmodule.c:180: error: 'nx' undeclared (first use in this function)
It seems to be a problem with the definition of the explicitly shaped array ARR. Like I say, it compiles fine on ifort.
I know this is a simple piece of code and can be written another way, but it is just a test piece that I wrote: I am actually trying to compile a much larger set of fortran modules that have lots of these explicit array definitions in the (using variables from a central module to define the bounds), so I would really like to get this to work rather than rewrite this other code!
USEblock. Getting to those requires additional Fortran-based wrappers, and I'm not sure it does that. I think you can write your own getters for nx and ny, and use those in a f2py wrapper definition .pyf file. (The rest is left as an exercise, too late for me to think about this today... It also doesn't fit into the margin of this comment box ;) – pv. Nov 23 '12 at 1:50