A comprehensive Python library for visualizing and analyzing ordinary differential equations (ODEs) with CUDA acceleration.
ODEVisualization is a high-performance C++/CUDA library with Python bindings that focuses on fast evaluation of high-dimensional sets of ordinary differential equations on GPUs.
The library can be used to:
- Find and evaluate fixed points (attractive and repulsive) in high-dimensional flow fields
- Visualize two-dimensional views of high-dimensional flow fields
- Integrate sets of ODEs with GPU acceleration
- Perform recursive grid computations for detailed phase space analysis
- Analyze flow equations and Jacobians for dynamical systems
- Python 3.8 or higher
- CMake 3.18 or higher
- CUDA Toolkit (for GPU acceleration)
- C++17 compatible compiler
pip install odevisualization
git clone https://github.com/statphysandml/ODEVisualization.git
cd ODEVisualization/odevis
pip install .
If you need to specify CUDA architectures:
pip install . --install-option="--cmake-cuda-architectures=70;75;80"
Use superbuild (automatic dependency management):
pip install . --install-option="--use-superbuild"
Use system dependencies:
pip install . --install-option="--use-system-deps"
The library includes several example systems:
- Lorenz Attractor: Classic chaotic system
- Three-Point System: Will follow
- Four-Point System: Will follow
See the examples/
directory for complete implementations.
For development:
git clone https://github.com/statphysandml/ODEVisualization.git
cd ODEVisualization/odevis
pip install -e .[dev]
Run tests:
pytest
Full documentation is available at: https://odevisualization.readthedocs.io
For support, questions, or development discussions:
- Email: [email protected]
- GitHub Issues: https://github.com/statphysandml/ODEVisualization/issues
This project is licensed under the MIT License - see the LICENSE.md file for details.
If you use ODEVisualization in your research, please cite:
@software{odevisualization,
title = {ODE Visualization: GPU-Accelerated Analysis of Ordinary Differential Equations for the Functional Renormalization Group},
author = {Kades, Lukas and Sadlo, Filip and Pawlowski, Jan M.},
year = {2025},
version = {1.0.0},
url = {https://github.com/statphysandml/ODEVisualization},
note = {Accessed: 2025-08-06}
}