Skip to content

feature: Add support for TF2.9.2 training images #3178

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Dec 14, 2022
Merged
1 change: 1 addition & 0 deletions src/sagemaker/fw_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
"2.8.0",
"2.9",
"2.9.1",
"2.9.2",
"2.10",
"2.10.0",
],
Expand Down
4 changes: 2 additions & 2 deletions src/sagemaker/image_uri_config/tensorflow.json
Original file line number Diff line number Diff line change
Expand Up @@ -1783,7 +1783,7 @@
"2.6": "2.6.3",
"2.7": "2.7.1",
"2.8": "2.8.0",
"2.9": "2.9.1",
"2.9": "2.9.2",
"2.10": "2.10.0"
},
"versions": {
Expand Down Expand Up @@ -3205,7 +3205,7 @@
},
"repository": "tensorflow-training"
},
"2.9.1": {
"2.9.2": {
"py_versions": [
"py39"
],
Expand Down
2 changes: 2 additions & 0 deletions tests/unit/test_fw_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,7 @@ def test_validate_smdataparallel_args_not_raises():
("ml.p3.16xlarge", "tensorflow", "2.7", "py38", smdataparallel_enabled),
("ml.p3.16xlarge", "tensorflow", "2.8.0", "py39", smdataparallel_enabled),
("ml.p3.16xlarge", "tensorflow", "2.8", "py39", smdataparallel_enabled),
("ml.p3.16xlarge", "tensorflow", "2.9.2", "py39", smdataparallel_enabled),
("ml.p3.16xlarge", "tensorflow", "2.9.1", "py39", smdataparallel_enabled),
("ml.p3.16xlarge", "tensorflow", "2.9", "py39", smdataparallel_enabled),
("ml.p3.16xlarge", "tensorflow", "2.10.0", "py39", smdataparallel_enabled),
Expand Down Expand Up @@ -915,6 +916,7 @@ def test_validate_smdataparallel_args_not_raises():
("ml.p3.16xlarge", "tensorflow", "2.7.1", "py38", smdataparallel_enabled_custom_mpi),
("ml.p3.16xlarge", "tensorflow", "2.8.0", "py39", smdataparallel_enabled_custom_mpi),
("ml.p3.16xlarge", "tensorflow", "2.9.1", "py39", smdataparallel_enabled_custom_mpi),
("ml.p3.16xlarge", "tensorflow", "2.9.2", "py39", smdataparallel_enabled_custom_mpi),
("ml.p3.16xlarge", "tensorflow", "2.10.0", "py39", smdataparallel_enabled_custom_mpi),
("ml.p3.16xlarge", "pytorch", "1.8.0", "py3", smdataparallel_enabled_custom_mpi),
("ml.p3.16xlarge", "pytorch", "1.9.1", "py38", smdataparallel_enabled_custom_mpi),
Expand Down