Skip to content

Commit

Permalink
[chore]0.4.1 release (#803)
Browse files Browse the repository at this point in the history
* [chore]0.4.1 release

* put more details in one change log
  • Loading branch information
tmarkstrum authored Sep 20, 2021
1 parent 086402d commit 1b9be42
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## NEXT - TBD
### Fixed

### Added

## [0.4.1] - 2021-09-17
### Fixed
- FSDP: We don't attach post backward hooks for params that don't require grad. However in the hook
triggered after the post backward hook, we assert on the POST_BACKWARD state which can only
be set in the post backward hook. Modified the assert to account for the fact that the root
Expand Down Expand Up @@ -34,6 +39,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- activation checkpoint: Added a context manager to disable checkpoint in case the same wrapped module
needs to be checkpointed and not checkpointed in different parts of
the module forward pass. [#772]
- FSDP: Added a toggle with an environment variable ENABLE_NCCL_BASE_COLLECTIVES=[0,1] to allow users
enable/disable using new nccl base collecectives. By default, using new nccl base collectives
is enabled. [#801]

## [0.4.0] - 2021-07-31
### 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.4.0"
release = "0.4.1"


# -- 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.4.0"
__version__ = "0.4.1"

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

0 comments on commit 1b9be42

Please sign in to comment.