Skip to content

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fferflo committed Jun 11, 2024
1 parent a624bb6 commit af49870
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [0.3.0]

### Added

- Add partial support for [tinygrad](https://github.com/tinygrad/tinygrad).
- Supported:
- `einx.rearrange`
- `einx.{elementwise|add|multiply|where|...}`
- `einx.{reduce|sum|mean|...}`
- `einx.{vmap_with_axis|flip|softmax|...}`
- `einx.dot`
- Not supported:
- `einx.vmap` (no `vmap` in tinygrad)
- `einx.{index|get_at|set_at|...}` (due to relying on `einx.vmap`)

### Changed

- Use `tf.gather_nd` instead of `x[y]` to implement `einx.get_at` for Tensorflow.

### Fixed

- Allow empty tuples and lists as constraints for ellipsis parameters.
- Fix shorthand notation in `einx.dot`.



## [0.2.2]

### Added
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

setup(
name="einx",
version="0.2.2",
version="0.3.0",
python_requires=">=3.8",
description="Tensor Operations Expressed in Einstein-Inspired Notation",
description="Universal Tensor Operations in Einstein-Inspired Notation for Python",
long_description=long_description,
long_description_content_type="text/markdown",
author="Florian Fervers",
Expand Down

0 comments on commit af49870

Please sign in to comment.