Automatic differentation compatible with DOLFINx
Project description
DOLFINx-Adjoint
DOLFINx-Adjoint is an algorithmic differentiation (AD) framework for DOLFINx. It allows you to automatically compute the gradients and Hessians of PDE-constrained optimization problems and track your computational graphs through the pyadjoint backend.
Read the Latest Documentation here.
Note for Legacy FEnICS Users: If you are using the legacy FEnICS (
dolfin) library, please refer to the original dolfin-adjoint repository. This repository (DOLFINx-Adjoint) is built specifically for the modern DOLFINx environment and is currently under active development. It is intended to eventually support the same comprehensive feature set and capabilities as the legacy version.
Features
-
Automated Adjoints: Seamlessly derive discrete adjoint models from DOLFINx forward models.
-
Overloaded API: Swap out standard
dolfinxcalls with theirdolfinx_adjointequivalents (e.g.,Function,Constant,LinearProblem,NonlinearProblem,assemble_scalar) to automatically record the computational tape. -
Optimization: Seamless integration with PDE-constrained optimization frameworks like Moola or SciPy via
pyadjoint.ReducedFunctional.
Installation
Dependencies
DOLFINx-Adjoint requires DOLFINx (>=0.11.0) and pyadjoint-ad.
via pip
The main way to install the package is via pip:
python3 -m pip install dolfinx-adjoint
Development Install
To install the latest development version directly from the repository, use:
python3 -m pip install git+[https://github.com/scientificcomputing/dolfinx-adjoint.git](https://github.com/scientificcomputing/dolfinx-adjoint.git)
If you plan to actively modify the code, clone the repository and install the optional dependencies for testing, development, and documentation generation:
git clone [https://github.com/scientificcomputing/dolfinx-adjoint.git](https://github.com/scientificcomputing/dolfinx-adjoint.git)
cd dolfinx-adjoint
python3 -m pip install -e ".[all]"
Docker
A pre-built Docker image is automatically published by the CI. You can pull the nightly build which comes with DOLFINx and DOLFINx-Adjoint pre-installed:
docker run -ti ghcr.io/scientificcomputing/dolfinx-adjoint:v0.2.1
(Note: Adjust the tag to the latest release or build).
Quick Start
Using dolfinx_adjoint is designed to be as close to standard dolfinx syntax as possible. Here is a brief overview of how to track a parameter and assemble an objective functional:
import dolfinx
from mpi4py import MPI
import pyadjoint
import ufl
import dolfinx_adjoint
# Create mesh and function space
mesh = dolfinx.mesh.create_unit_square(MPI.COMM_WORLD, 10, 10)
V = dolfinx.fem.functionspace(mesh, ("Lagrange", 1))
# Use dolfinx_adjoint overloaded types
# This ensures operations are tracked on the pyadjoint tape!
f = dolfinx_adjoint.Function(V, name="Control")
f.interpolate(lambda x: x[0] + x[1]) # Initial guess for control
uh = dolfinx_adjoint.Function(V, name="State")
# Define UFL forms for a simple Poisson problem: - \Delta u = f
u, v = ufl.TrialFunction(V), ufl.TestFunction(V)
a = ufl.inner(ufl.grad(u), ufl.grad(v)) * ufl.dx
L = f * v * ufl.dx
# Set up Dirichlet boundary condition (u = 0 on boundary)
mesh.topology.create_connectivity(mesh.topology.dim - 1, mesh.topology.dim)
exterior_facets = dolfinx.mesh.exterior_facet_indices(mesh.topology)
exterior_dofs = dolfinx.fem.locate_dofs_topological(V, mesh.topology.dim - 1, exterior_facets)
bc = dolfinx.fem.dirichletbc(dolfinx.default_scalar_type(0.0), exterior_dofs, V)
# Use overloaded solvers
problem = dolfinx_adjoint.LinearProblem(a, L, u=uh, bcs=[bc])
problem.solve()
# Define a desired temperature profile 'd' and regularization parameter 'alpha'
x = ufl.SpatialCoordinate(mesh)
d = ufl.sin(ufl.pi * x[0]) * ufl.sin(ufl.pi * x[1])
alpha = dolfinx.fem.Constant(mesh, dolfinx.default_scalar_type(1e-6))
# Assemble the objective scalar using the overloaded assembly
J_symbolic = 0.5 * ufl.inner(uh - d, uh - d) * ufl.dx + 0.5 * alpha * ufl.inner(f, f) * ufl.dx
J = dolfinx_adjoint.assemble_scalar(J_symbolic)
# Create a ReducedFunctional for optimization
control = pyadjoint.Control(f)
Jhat = pyadjoint.ReducedFunctional(J, control)
# Evaluate gradient
gradient = Jhat.derivative()
For more comprehensive examples, such as solving the optimal control of the Poisson equation or time-distributed control problems, check out the demos/ directory or the online documentation.
Development and Testing
Code formatting is enforced via ruff and type-checking via mypy. To set up your local development environment:
# Install development dependencies
python3 -m pip install -e ".[dev,test]"
# Run formatting checks
ruff check .
ruff format --check .
# Run type checking
python3 -m mypy .
# Run tests
python3 -m pytest -vs tests/
License
MIT License. See LICENSE for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dolfinx_adjoint-0.2.1.tar.gz.
File metadata
- Download URL: dolfinx_adjoint-0.2.1.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f721fe5b78f74485af7300776641888d3ed22061f17cda8fcf3ca42424f1fa03
|
|
| MD5 |
2bcde3b2791ecbf2716026c6f014f8fa
|
|
| BLAKE2b-256 |
2b1f22928f0bbcf465228cfb37f520b7c299aaf44b415395fdd677c50ff3c343
|
Provenance
The following attestation bundles were made for dolfinx_adjoint-0.2.1.tar.gz:
Publisher:
pypi.yml on scientificcomputing/dolfinx-adjoint
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dolfinx_adjoint-0.2.1.tar.gz -
Subject digest:
f721fe5b78f74485af7300776641888d3ed22061f17cda8fcf3ca42424f1fa03 - Sigstore transparency entry: 1731653166
- Sigstore integration time:
-
Permalink:
scientificcomputing/dolfinx-adjoint@e8340f05c130a528e4a9d3792e0d8936fd189789 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/scientificcomputing
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@e8340f05c130a528e4a9d3792e0d8936fd189789 -
Trigger Event:
push
-
Statement type:
File details
Details for the file dolfinx_adjoint-0.2.1-py3-none-any.whl.
File metadata
- Download URL: dolfinx_adjoint-0.2.1-py3-none-any.whl
- Upload date:
- Size: 26.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c839064739fd649fc6ea0e52430101eb6fa730b0adcf54f76e2c66314accf75
|
|
| MD5 |
ddebd9ebd0af322bf18fbb61bd605017
|
|
| BLAKE2b-256 |
1da0c08b4e669a0fa1869782888523f9778d5ee4a748438a433b3645f9d0bbab
|
Provenance
The following attestation bundles were made for dolfinx_adjoint-0.2.1-py3-none-any.whl:
Publisher:
pypi.yml on scientificcomputing/dolfinx-adjoint
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
dolfinx_adjoint-0.2.1-py3-none-any.whl -
Subject digest:
6c839064739fd649fc6ea0e52430101eb6fa730b0adcf54f76e2c66314accf75 - Sigstore transparency entry: 1731653202
- Sigstore integration time:
-
Permalink:
scientificcomputing/dolfinx-adjoint@e8340f05c130a528e4a9d3792e0d8936fd189789 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/scientificcomputing
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@e8340f05c130a528e4a9d3792e0d8936fd189789 -
Trigger Event:
push
-
Statement type: