Skip to content

Commit

Permalink
refactor: update pytorch version threshold to 3.0.0 (#658)
Browse files Browse the repository at this point in the history
* refactor: update pytorch version threshold to 3.0.0

* refactor: bump version

* style: add newline

---------

Co-authored-by: Shibo Xing <[email protected]>
  • Loading branch information
ShiboXing and Shibo Xing authored Apr 6, 2023
1 parent 6113cfe commit 8887b3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion smdebug/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.32"
__version__ = "1.0.33"
2 changes: 1 addition & 1 deletion smdebug/pytorch/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Cached Pytorch Version
PT_VERSION = version.parse(torch.__version__)

SUPPORTED_PT_VERSION_THRESHOLD = version.parse("1.14.0")
SUPPORTED_PT_VERSION_THRESHOLD = version.parse("3.0.0")


def get_reduction_of_data(reduction_name, tensor_data, tensor_name, abs=False):
Expand Down

0 comments on commit 8887b3c

Please sign in to comment.