Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mariogeiger committed Sep 13, 2023
1 parent bc1b921 commit 0eb1856
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ 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]

## [0.20.1] - 2023-09-13
### Changed
- Add back the optimizations with the lazy `._chunks` that was removed in 0.19.0

Expand Down
2 changes: 1 addition & 1 deletion e3nn_jax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.20.0"
__version__ = "0.20.1"

from e3nn_jax._src.config import config
from e3nn_jax._src.rotation import (
Expand Down
1 change: 1 addition & 0 deletions e3nn_jax/_src/utils/vmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ def vmap(
>>> y = vmap(e3nn.scalar_activation)(x)
>>> y.zero_flags
(False, True)
>>> assert y.chunks[1] is None
"""
if in_axes == -1:
raise ValueError("in_axes=-1 is not supported by e3nn.vmap")
Expand Down

0 comments on commit 0eb1856

Please sign in to comment.