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
782714a8
Unverified
Commit
782714a8
authored
Jul 12, 2021
by
anj-s
Committed by
GitHub
Jul 12, 2021
Browse files
[chore] 0.3.8 release (#739)
parent
86fdebd8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
6 deletions
+18
-6
CHANGELOG.md
CHANGELOG.md
+16
-4
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 @
782714a8
...
...
@@ -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
...
...
docs/source/conf.py
View file @
782714a8
...
...
@@ -29,7 +29,7 @@ copyright = "2020-2021, Facebook AI Research"
author
=
"Facebook AI Research"
# The full version, including alpha/beta/rc tags
release
=
"0.3.
7
"
release
=
"0.3.
8
"
# -- General configuration ---------------------------------------------------
...
...
fairscale/__init__.py
View file @
782714a8
...
...
@@ -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
...
...
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