Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
fairscale
Commits
1b9be421
Unverified
Commit
1b9be421
authored
Sep 20, 2021
by
tmarkstrum
Committed by
GitHub
Sep 20, 2021
Browse files
[chore]0.4.1 release (#803)
* [chore]0.4.1 release * put more details in one change log
parent
086402d5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
+10
-2
CHANGELOG.md
CHANGELOG.md
+8
-0
docs/source/conf.py
docs/source/conf.py
+1
-1
fairscale/__init__.py
fairscale/__init__.py
+1
-1
No files found.
CHANGELOG.md
View file @
1b9be421
...
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
...
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## NEXT - TBD
## NEXT - TBD
### Fixed
### 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
-
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
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
be set in the post backward hook. Modified the assert to account for the fact that the root
...
@@ -34,6 +39,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
...
@@ -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
-
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
needs to be checkpointed and not checkpointed in different parts of
the module forward pass. [#772]
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
## [0.4.0] - 2021-07-31
### Fixed
### Fixed
...
...
docs/source/conf.py
View file @
1b9be421
...
@@ -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.4.
0
"
release
=
"0.4.
1
"
# -- General configuration ---------------------------------------------------
# -- General configuration ---------------------------------------------------
...
...
fairscale/__init__.py
View file @
1b9be421
...
@@ -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.4.
0
"
__version__
=
"0.4.
1
"
################################################################################
################################################################################
# Import most common subpackages
# Import most common subpackages
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment