Skip to content

Commit 678e4cc

Browse files
committed
Version bump.
1 parent 42df405 commit 678e4cc

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
# Changelog
22

3-
## Unreleased
3+
## Version 0.6.3 - May 18 2026
44

55
### Added
66
- Alternative text for images in README.md
77
- Test for example files.
88
- Test for utils.
99
- Markdown files to declare contribution, governance, code of conduct, and support.
1010
- Documentation of elements with shape function plots.
11+
- Publications page in docs.
12+
- Theory chapter in docs.
13+
- New publication on C/C-SiC plates added to docs.
1114

1215
### Changed
1316
- Refactored benchmarks with plots and added them to documentation.
@@ -16,11 +19,18 @@
1619
- Add basic `shell/plasticity.ipynb` example.
1720
- Significantly enhanced material testing coverage.
1821
- Renamed data helper API from `torchfem.examples.get_example_file(...)` to `torchfem.data.get_data(...)` and moved the module from `examples.py` to `data.py`.
22+
- Skip unnecessary stiffness matrix construction during the backward pass to reduce memory and compute overhead.
23+
- Reduce initial GPU memory peaks with chunked index mapping in `__init__`.
1924

2025
### Removed
2126
- The utility functions `voigt_strain_rotation` and `voigt_stress_rotation` are not used anywhere. They are removed.
2227
- Dependency on unused `memory_profiler`. This was replaced by a custom profiling function for benchmarking earlier.
2328

29+
### Fixed
30+
- The FPP example was not working correctly after removing `retain_graph=True` from the sparse solver. Also, detaching `f` in base was introducing an error here. This is now fixed.
31+
- Fixed bug where external strains were validated against `n_nodes` instead of `n_elem` (Thanks to @JulGre).
32+
- Fixed `compute_stiffness` argument not being properly propagated in `integrate_material`.
33+
2434
## Version 0.6.2 - March 25 2026
2535

2636
### Fixed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "torch-fem"
7-
version = "0.6.2"
7+
version = "0.6.3"
88
authors = [{ name = "Nils Meyer", email = "nils.meyer@uni-a.de" }]
99
description = "GPU accelerated differentiable finite elements for solid mechanics with PyTorch."
1010
readme = "README.md"

0 commit comments

Comments
 (0)