Skip to main content

ADIOS4DOLFINx - A framework for checkpointing in DOLFINx

MIT DOI Anaconda-Server Badge

ADIOS4DOLFINx is an extension for DOLFINx to checkpoint meshes, meshtags and functions using ADIOS 2.

The code uses the ADIOS2 Python-wrappers to write DOLFINx objects to file, supporting N-to-M (recoverable) and N-to-N (snapshot) checkpointing. See: Checkpointing in DOLFINx - FEniCS 23 or the examples in the Documentation for more information.

For scalability, the code uses MPI Neighbourhood collectives for communication across processes.

Statement of Need

As the usage of high performance computing clusters increases, more and more large-scale, long-running simulations are deployed. The need for storing intermediate solutions from such simulations are crucial, as the HPC system might crash, or the simulation might crash or exceed the alloted computational budget. Having a checkpoint of related variables, such as the solutions to partial differential equations (PDEs) is therefore essential. The adios4dolfinx library extends the DOLFINx computational framework for solving PDEs with checkpointing functionality, such that immediate solutions and mesh information can be stored and re-used in another simulation.

Installation

Compatibility with DOLFINx:

  • ADIOS4DOLFINx v0.10.0 is compatible with DOLFINx v0.10.x
  • ADIOS4DOLFINx v0.9.6 is compatible with DOLFINx v0.9.x
  • ADIOS4DOLFINx v0.8.1 is compatible with DOLFINx v0.8.x
  • ADIOS4DOLFINx v0.7.3 is compatible with DOLFINx v0.7.x

Dependencies

The library depends on the Python-interface of DOLFINx and an MPI-build of ADIOS2. Therefore ADIOS2 should not be install through PYPI/pip, but has to be installed through Conda, Spack or from source.

[!IMPORTANT]
ADIOS2<2.10.2 does not work properly with numpy>=2.0.0. Everyone is advised to use the newest version of ADIOS2. This is for instance available through conda or the ghcr.io/fenics/dolfinx/dolfinx:nightly Docker-image.

Spack

ADIOS4DOLFINx is a spack package which can be installed with

spack add py-adios4dolfinx ^py-fenics-dolfinx+petsc4py+slepc4py
spack concretize
spack install

once you have downloaded spack and set up a new environment, as described in Spack: Installation notes. To ensure that the spack packages are up to date, please call

spack repo update builtin

prior to concretizing.

Docker

An MPI build of ADIOS2 is installed in the official DOLFINx containers, and thus there are no additional dependencies required to install adios4dolfinx on top of DOLFINx in these images.

Create a Docker container, named for instance dolfinx-checkpoint. Use the nightly tag to get the main branch of DOLFINx, or stable to get the latest stable release

docker run -ti -v $(pwd):/root/shared -w /root/shared --name=dolfinx-checkpoint ghcr.io/fenics/dolfinx/dolfinx:nightly

For the latest version compatible with nightly (with the ability to run the test suite), use

python3 -m pip install adios4dolfinx[test]@git+https://github.com/jorgensd/adios4dolfinx@main

If you are using the stable image, you can install adios4dolfinx from PYPI with

python3 -m pip install adios4dolfinx[test]

This docker container can be opened with

docker container start -i dolfinx-checkpoint

at a later instance

Conda

[!NOTE]
Conda supports the stable release of DOLFINx, and thus the appropriate version should be installed, see the section above for more details.

Following is a minimal recipe of how to install adios4dolfinx, given that you have conda installed on your system.

conda create -n dolfinx-checkpoint python=3.10
conda activate dolfinx-checkpoint
conda install -c conda-forge adios4dolfinx

[!NOTE] Remember to download the appropriate version of adios4dolfinx from Github adios4dolfinx: Releases

To run the test suite, you should also install ipyparallel, pytest and coverage, which can all be installed with conda

conda install -c conda-forge ipyparallel pytest coverage

Functionality

DOLFINx

  • Reading and writing meshes, using adios4dolfinx.read/write_mesh
  • Reading and writing meshtags associated to meshes adios4dolfinx.read/write_meshtags
  • Reading checkpoints for any element (serial and parallel, arbitrary number of functions and timesteps per file). Use adios4dolfinx.read/write_function.
  • Writing standalone function checkpoints relating to "original meshes", i.e. meshes read from XDMFFile. Use adios4dolfinx.write_function_on_input_mesh for this.
  • Store mesh partitioning and re-read the mesh with this information, avoiding calling SCOTCH, Kahip or Parmetis.

[!IMPORTANT]
For checkpoints written with write_function to be valid, you first have to store the mesh with write_mesh to the checkpoint file.

[!IMPORTANT]
A checkpoint file supports multiple functions and multiple time steps, as long as the functions are associated with the same mesh

[!IMPORTANT]
Only one mesh per file is allowed

Example Usage

The repository contains many documented examples of usage, in the docs-folder, including

Backwards compatibility

[!WARNING] If you are using v0.7.2, you are advised to upgrade to v0.7.3, as it contains som crucial fixes for openmpi.

Legacy DOLFIN

Only checkpoints for Lagrange or DG functions are supported from legacy DOLFIN

  • Reading meshes from the DOLFIN HDF5File-format
  • Reading checkpoints from the DOLFIN HDF5File-format (one checkpoint per file only)
  • Reading checkpoints from the DOLFIN XDMFFile-format (one checkpoint per file only, and only uses the .h5 file)

See the API for more information.

Testing

This library uses pytest for testing. To execute the tests, one should first install the library and its dependencies, as listed above. Then, can execute all tests by calling

python3 -m pytest .

Testing against data from legacy dolfin

Some tests check the capability of reading data created with the legacy version of DOLFIN. To create this dataset, start a docker container with legacy DOLFIN, for instance:

docker run -ti -v $(pwd):/root/shared -w /root/s
hared --rm ghcr.io/scientificcomputing/fenics:2024-02-19

Then, inside this container, call

python3 ./tests/create_legacy_data.py --output-dir=legacy

Testing against data from older versions of ADIOS4DOLFINx

Some tests check the capability to read data generated by adios4dolfinx<0.7.2. To generate data for these tests use the following commands:

docker run -ti -v $(pwd):/root/shared -w /root/shared --rm ghcr.io/fenics/dolfinx/dolfinx:v0.7.3

Then, inside the container, call

python3 -m pip install adios4dolfinx==0.7.1
python3 ./tests/create_legacy_checkpoint.py --output-dir=legacy_checkpoint

Long term plan

The long term plan is to get this library merged into DOLFINx (rewritten in C++ with appropriate Python-bindings).

Download files

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

Source Distribution

adios4dolfinx-0.10.0.post1.tar.gz (40.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

adios4dolfinx-0.10.0.post1-py3-none-any.whl (33.9 kB view details)

Uploaded Python 3

File details

Details for the file adios4dolfinx-0.10.0.post1.tar.gz.

File metadata

  • Download URL: adios4dolfinx-0.10.0.post1.tar.gz
  • Upload date:
  • Size: 40.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for adios4dolfinx-0.10.0.post1.tar.gz
Algorithm Hash digest
SHA256 ce2c97c16ab4502e6bbb54462b7c4c1108abcfac337b2793b3b012f418a6b613
MD5 c84aa2f08a596e4d448cb341e30e5a8f
BLAKE2b-256 2afa31e4d0530ac569c36c18dc5663f7f1c6ead8c7abd31dd72d83650be40478

See more details on using hashes here.

Provenance

The following attestation bundles were made for adios4dolfinx-0.10.0.post1.tar.gz:

Publisher: pypi.yml on jorgensd/adios4dolfinx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adios4dolfinx-0.10.0.post1-py3-none-any.whl.

File metadata

File hashes

Hashes for adios4dolfinx-0.10.0.post1-py3-none-any.whl
Algorithm Hash digest
SHA256 702e9665a6e0ba736b283ff45c88d1ecc095e7031f2cf1832a1a4dfc8fa609cc
MD5 da6fa87c893102a68a028b3c378182e2
BLAKE2b-256 f4240ca4ed7f9210d47b1bebfb8652b812ebf20ed6d6b487f99c49a495ecbbb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for adios4dolfinx-0.10.0.post1-py3-none-any.whl:

Publisher: pypi.yml on jorgensd/adios4dolfinx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page