Unverified Commit 82d6997c authored by Benjamin Lefaudeux's avatar Benjamin Lefaudeux Committed by GitHub
Browse files

[chore] v0.3.4 (#603)

parent a82825db
...@@ -5,8 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ...@@ -5,8 +5,17 @@ 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## NEXT - TBD ## NEXT - TBD
## [0.3.4] - 2021-04-13
### Added ### Added
- FSDP: Add no broadcast optim state option ([#560](https://github.com/facebookresearch/fairscale/pull/560))
### Fixed ### Fixed
- ShardedDDP: Properly handle .eval() mode ([#587](https://github.com/facebookresearch/fairscale/pull/587))
- ShardedDDP: Handle model being moved back to CPU prior to state consolidation ([#573](https://github.com/facebookresearch/fairscale/pull/573))
- FSDP: much faster state consolidation ([#595](https://github.com/facebookresearch/fairscale/pull/595))
- FSDP: Add gradient pre-dedivide to prevent overflow with large world sizes ([#565](https://github.com/facebookresearch/fairscale/pull/565))
- Offload: (experimental) Fix activation offloading to CPU ([#588]((https://github.com/facebookresearch/fairscale/pull/588) )
## [0.3.3] - 2021-04-1 ## [0.3.3] - 2021-04-1
### Added ### Added
......
...@@ -29,7 +29,7 @@ copyright = "2020-2021, Facebook AI Research" ...@@ -29,7 +29,7 @@ copyright = "2020-2021, Facebook AI Research"
author = "Facebook AI Research" author = "Facebook AI Research"
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = "0.3.3" release = "0.3.4"
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# LICENSE file in the root directory of this source tree. # LICENSE file in the root directory of this source tree.
# Please update the doc version in docs/source/conf.py as well. # Please update the doc version in docs/source/conf.py as well.
__version__ = "0.3.3" __version__ = "0.3.4"
################################################################################ ################################################################################
# Import most common subpackages # Import most common subpackages
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment