-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to Synapse AI Release 1.12.1 (#106)
* Upgrade to Synapse AI Release 1.12.1 Update images and modify hooks to suit lightning 2.1 Signed-off-by: Jerome <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Jirka Borovec <[email protected]>
- Loading branch information
1 parent
73149db
commit 5b00a32
Showing
8 changed files
with
54 additions
and
22 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
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,4 +1,4 @@ | ||
__version__ = "1.1.1.dev" | ||
__version__ = "1.2.0" | ||
__author__ = "Lightning-AI et al." | ||
__author_email__ = "[email protected]" | ||
__license__ = "Apache-2.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
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 |
---|---|---|
|
@@ -82,8 +82,8 @@ | |
warning_cache = WarningCache() | ||
|
||
_HPU_DEEPSPEED_AVAILABLE = ( | ||
# HPU deep speed is supported only through this pip install git+https://github.com/HabanaAI/[email protected].0 | ||
RequirementCache("deepspeed==0.9.4+hpu.synapse.v1.12.0") | ||
# HPU deep speed is supported only through this pip install git+https://github.com/HabanaAI/[email protected].1 | ||
RequirementCache("deepspeed==0.9.4+hpu.synapse.v1.12.1") | ||
) | ||
if TYPE_CHECKING and _HPU_DEEPSPEED_AVAILABLE: | ||
import deepspeed | ||
|
@@ -295,7 +295,7 @@ def __init__( | |
if not _HPU_DEEPSPEED_AVAILABLE: | ||
raise MisconfigurationException( | ||
"To use the `HPUDeepSpeedStrategy`, you must have hpu DeepSpeed installed." | ||
" Install it by running `pip install git+https://github.com/HabanaAI/[email protected].0`." | ||
" Install it by running `pip install git+https://github.com/HabanaAI/[email protected].1`." | ||
) | ||
|
||
super().__init__( | ||
|
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