Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] - TBD
### Changed
- Updated `int/lsode.f90` to be OpenMP thread-safe
- Declared STEPMIN as threadprivate in the created `ROOT_Global.f90` and `ROOT_Global.F90` files

## [3.5.0] - 2026-07-09
### Added
Expand Down Expand Up @@ -39,6 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed
- Removed references to unneccessary `azure-cli` and `microsoft-prod` packages in `.github/workflows/run-ci-tests.yml`
- Removed warnings that the LSODE integraor is not thread-safe in ReadTheDocs

## [3.4.0] - 2026-04-29
### Added
Expand Down
9 changes: 0 additions & 9 deletions docs/source/reference/known-bugs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,6 @@ These `bug reports (on GitHub)
<https://github.com/KineticPreProcessor/KPP/issues?q=is%3Aissue%20state%3Aopen%20label%3Abug>`_
are currently unresolved. We hope to fix these in future releases.

LSODE integrator is not thread-safe
-----------------------------------

We have discovered that the current implementation of the LSODE
integrator is not thread-safe for `OpenMP parallelization
<https://www.openmp.org/>`_. When LSODE is called from within an
OpenMP parallel loop, the integration will fail because key internal
variables in LSODE will be overwritten by concurrent threads.

============================
Bugs that have been resolved
============================
Expand Down
Loading