tools such as F2PY, PyFort and Forthon. F2PY is
distributed with NumPy and is a capable tool for
wrapping Fortran 77 codes. Fwrap’s approach dif-
fers in that it leverages Cython to create Python
bindings. Manual tuning of the wrapper can be
easily accomplished by simply modifying the gen-
erated Cython code, rather than using a restricted
domain-specific language. Another benefit is re-
duced overhead when calling Fortran code from
Cython.
Consider a real world example: wrapping a sub-
routine from netlib’s LAPACK Fortran 90 source.
We will use the Fortran 90 subroutine interface
for dgesdd, used to compute the singular value de-
composition arrays U, S, and VT of a real array A,
such that A = U * DIAG(S) * VT. This routine
is typical of Fortran 90 source code – it has scalar
and array arguments with different intents and
different datatypes. We have augmented the ar-
gument declarations with INTENT attributes and
removed extraneous work array arguments for il-
lustration purposes:
SUBROUTINE DGESDD(JOBZ, M, N, A, LDA, S, &
& U, LDU, VT, LDVT, INFO)
! .. Scalar Arguments ..
CHARACTER, INTENT(IN) :: JOBZ
INTEGER, INTENT(OUT)
:: INFO
INTEGER, INTENT(IN)
:: LDA, LDU, LDVT &
& M, N
! .. Array Arguments ..
DOUBLE PRECISION, INTENT(INOUT) :: &
& A(LDA, *)
DOUBLE PRECISION, INTENT(OUT)
:: &
& S(*), U(LDU, *), VT(LDVT, *)
! DGESDD subroutine body
END SUBROUTINE DGESDD
When invoked on the above Fortran code, Fwrap
parses the code and makes it available to C,
Cython and Python. If desired, we can generate
a deployable package for use on computers
that don’t have Fwrap or Cython installed.
To use the wrapped code from Python, we
must first set up the subroutine arguments—in