Skip to content

Commit 4488e17

Browse files
authored
[chore] create v0.0.2 (#59)
1 parent d1d7441 commit 4488e17

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.0.1] - 2020-07-31
87

8+
## [0.0.2] - 2020-08-28
9+
### Added
10+
- add ddp that works with oss with reduce() not all_reduce() (#19)
11+
- support for PyTorch v1.6
12+
- add mixed precision Adam (#40)
13+
- Adam optimizer state scaling (#44)
14+
15+
### Fixed
16+
- properly restore a sharded optim state (#39)
17+
- OSS restore state to proper device (#46)
18+
- optim/oss: support optimizers with additional step kwargs (#53)
19+
- optim/oss: fix state cast (#56)
20+
- fix eval for oss_ddp (#55)
21+
- optim/oss: work correctly with LRScheduler (#58)
22+
23+
## [0.0.1] - 2020-07-31
924
- Initial release.

fairscale/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This source code is licensed under the BSD license found in the
44
# LICENSE file in the root directory of this source tree.
55

6-
__version__ = "0.0.1"
6+
__version__ = "0.0.2"
77

88
################################################################################
99
# Import most common subpackages

0 commit comments

Comments
 (0)