Skip to content

Commit

Permalink
[chore] 0.3.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Anjali Sridhar committed Jul 12, 2021
1 parent 8d82db4 commit bc5d696
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## NEXT - TBD
### Fixed
- doc: thoroughly improved the doc
- checkpointing: use dummy tensor to ensure backward pass is called [#701]
- checkpointing: ensure internal fwd counter is not incremented in eval mode [#709]
- FSDP: fixed bug where buffers returned in `state_dict()` could still be half precision when `mixed_precision` is set to `True`. [#705]

### Added

## [0.3.8] - 2021-07-12
### Fixed
- checkpointing: Use dummy tensor to ensure backward pass is called. [#701]
- checkpointing: Ensure internal fwd counter is not incremented in eval mode. [#709]
- checkpointing: Use non-blocking CPU transfer to improve perf. [#719]
- FSDP: Fixed bug where buffers returned in `state_dict()` could still be half precision when `mixed_precision` is set to `True`. [#705]
- FSDP: Ensure requires_grad of FlatParameter is consistent with requires_grad of the original parameters. [#721]
- doc: Thoroughly improved the doc for FSDP. [#711]
- cleanup: Remove examples/ doc from the repo. [#712]
- cleanup: Future proof storage size test. [#735]
- cleanup: Migrate away from legacy torchtext iterators. [#713]
- chore: Updated torch 1.9 to release version. [#717]

### Added
- FSDP: supporting multiple flatten parameter groups [#708] [#711]
- chore: Add the latest numpy version to requirements-test.txt to prevent mypy errors on certain PR commits [#732]

## [0.3.7] - 2021-05-17
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
author = "Facebook AI Research"

# The full version, including alpha/beta/rc tags
release = "0.3.7"
release = "0.3.8"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion fairscale/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# LICENSE file in the root directory of this source tree.

# Please update the doc version in docs/source/conf.py as well.
__version__ = "0.3.7"
__version__ = "0.3.8"

################################################################################
# Import most common subpackages
Expand Down

0 comments on commit bc5d696

Please sign in to comment.