Skip to main content

No project description provided

Project description

f2py-jit

pypi version license Binder pipeline status coverage report

Just-in-time compilation of Fortran code in Python via f2py.

Quick start

Start from a piece of Fortran code.f90

subroutine hello()
  print*, "Hello world!"
end subroutine hello

Compile the code, import it and execute it

from f2py_jit import jit
f90 = jit('code.f90')
f90.hello()

Do the same but from a python string containing the source block

source = """
subroutine hello()
  print*, "Hello world!"
end subroutine hello
"""
f90 = jit(source)
f90.hello()

If the Fortran source contains multiple subroutines calling each other, f2py will not perform interprocedural optimizations (at least not by default). f2py_jit can inline the source code before compiling it, and you will get a performace boost [This feature is experimental]

from f2py_jit import jit, inline
f90 = jit(inline('code.f90'))
f90.hello()

Documentation

Features

  • Compilation of source blocks as python strings
  • Caching of modules build across executions
  • Optional inlining of Fortran code to improve performance (experimental)

Documentation

Check out the tutorial for more examples and the public API for full details.

The tutorial can be executed live on binder.

Dependencies

  • numpy
  • Fortran compiler

Installation

The easiest way to install f2py-jit is with pip

pip install f2py-jit

Alternately, you can clone the code repository and install from source

git clone https://framagit.org/coslo/f2py-jit.git
cd f2py_jit
make install

Authors

Daniele Coslovich: https://www.units.it/daniele.coslovich/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

f2py_jit-0.7.0-py2.py3-none-any.whl (21.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page