diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b925549..3671c2b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Added +- Automatic vectorization of elementwise operations on CPU for tensors dims that + are divible by 4 (AVX) and 8 (AVX2) +- Replacing std::shared_ptr with custom IntrusivePtr for small objects like + Tensors, Hypotheses and Expressions. +- First steps towards integrating FP16 support, currently no-ops. + ### Fixed +- Sort parameters by lexicographical order during allocation to ensure consistent + memory-layout during allocation, loading, saving. - Output empty line when input is empty line. Previous behavior might result in hallucinated outputs. diff --git a/VERSION b/VERSION index 2fb69e15..57f52717 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v1.8.1 +v1.8.2