-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
## What's Changed | ||
* Get rid of torch cpp extension when compiling @MayDomine @Achazwl in #115 #132 | ||
* Github action CICD @MayDomine in #115 | ||
* Now Loss scale can be managed more dynamic by min and max loss scale by @Achazwl #129 | ||
* Fix `bmt.load(model)` OOM when meets torch >= 1.12 @MayDomine #115 | ||
* `AdamOffloadOptimizer` can choose avx flag automatically in runtime @MayDomine #115 | ||
* Now BMTrain is fully compatible with torch 2.0 @MayDomine #115 | ||
|
||
**Full Changelog**: https://github.com/OpenBMB/BMTrain/compare/0.2.2...0.2.3 | ||
* Using pytorch's hook mechanism to refactor ZeRO, checkpoint, pipeline, communication implementation by @zkh2016 in #128 #159 | ||
* Add Bf16 support by @Achazwl in #136 | ||
* Tensor parallel implementation by @Achazwl @zkh2016 @MayDomine in #153 | ||
* Async save state_dict by @zhk2016 in #171 | ||
* `AdamOffloadOptimizer` can save whole gathered state by @MayDomine in #184 | ||
* New test for new version's bmtrain by @Achazwl @JerryYin777 @MayDomine | ||
**Full Changelog**: https://github.com/OpenBMB/BMTrain/compare/0.2.3...1.0.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ def build_extension(self, ext): | |
] | ||
setup( | ||
name='bmtrain', | ||
version='0.2.3.post2', | ||
version='1.0.0', | ||
author="Guoyang Zeng", | ||
author_email="[email protected]", | ||
description="A toolkit for training big models", | ||
|