Skip to content

Commit 7900d51

Browse files
authored
Release 0.3.7 (#1976)
1 parent ea02973 commit 7900d51

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

RELEASE.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Genesis Release Note
22

3+
## 0.3.7
4+
5+
The performance of GsTaichi dynamic array mode has been greatly improved. Now it should be on par with fixed-size array mode (aka performance mode) for very large batch sizes, and up to 30% slower for non-batched simulations. This mode is still considered experimental and must be enabled manually by setting the env var 'GS_ENABLE_NDARRAY=1'. Just try it if you are tired of endlessly waiting for the simulation to compile!
6+
7+
### New Features
8+
9+
* Implement position-velocity controller. (@matthieuvigne) (#1948)
10+
11+
### Bug Fixes
12+
13+
* Fix missing option `diffuse_texture` to `Glass` surface. (@Kashu7100) (#1934)
14+
* Fix interactive viewer. (@YilingQiao) (#1931)
15+
* Fix external coupling forces from other solvers not affecting rigid bodies. (@SonSang) (#1941)
16+
* Fix silent process killing issue in MPM simulation by raising an exception. (@SonSang) (#1949)
17+
* Fix 'discrete_obstacles_terrain' being completely flat. (@jgillick) (#1972)
18+
19+
### Miscellaneous
20+
21+
* Added warning message about stable timestep for SPH solver. (@SonSang) (#1925)
22+
* Reduce memory usage due to diff constraint solver. (@YilingQiao) (#1930)
23+
* Faster non-batched simulation. (@duburcqa) (#1935)
24+
* Fix or silent dev warnings. (@duburcqa) (#1944)
25+
* Add caching to Rigid Link state getters to improve performance. (@duburcqa) (#1940, #1955)
26+
* Add support of Linux ARM. (@duburcqa) (#1961)
27+
* Add 'GS_PARA_LEVEL' env var to force kernel parallelization level. (@duburcqa) (#1968)
28+
329
## 0.3.6
430

531
A new experimental interface with the Incremental Potential Contact coupling solver [libuipc](https://github.com/spiriMirror/libuipc) has been introduced, mainly targeting cloth simulation.

genesis/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.6"
1+
__version__ = "0.3.7"

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 = "genesis-world"
7-
version = "0.3.6"
7+
version = "0.3.7"
88
description = "A universal and generative physics engine"
99
readme = "README.md"
1010
requires-python = ">=3.10,<3.14"

0 commit comments

Comments
 (0)