Skip to content

Commit 0eb1856

Browse files
committed
bump version
1 parent bc1b921 commit 0eb1856

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.20.1] - 2023-09-13
810
### Changed
911
- Add back the optimizations with the lazy `._chunks` that was removed in 0.19.0
1012

e3nn_jax/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.20.0"
1+
__version__ = "0.20.1"
22

33
from e3nn_jax._src.config import config
44
from e3nn_jax._src.rotation import (

e3nn_jax/_src/utils/vmap.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def vmap(
2929
>>> y = vmap(e3nn.scalar_activation)(x)
3030
>>> y.zero_flags
3131
(False, True)
32+
>>> assert y.chunks[1] is None
3233
"""
3334
if in_axes == -1:
3435
raise ValueError("in_axes=-1 is not supported by e3nn.vmap")

0 commit comments

Comments
 (0)