Skip to content

Commit f3861da

Browse files
author
Sergey Togulev
committed
Updated available versions
1 parent efae525 commit f3861da

File tree

3 files changed

+68
-1
lines changed

3 files changed

+68
-1
lines changed

src/sagemaker/fw_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
)
6161
SM_DATAPARALLEL_SUPPORTED_FRAMEWORK_VERSIONS = {
6262
"tensorflow": ["2.3", "2.3.1", "2.3.2", "2.4", "2.4.1"],
63-
"pytorch": ["1.6", "1.6.0", "1.7", "1.7.1", "1.8", "1.8.1"],
63+
"pytorch": ["1.6", "1.6.0", "1.7", "1.7.1", "1.8", "1.8.0", "1.8.1"],
6464
}
6565
SMDISTRIBUTED_SUPPORTED_STRATEGIES = ["dataparallel", "modelparallel"]
6666

src/sagemaker/image_uri_config/pytorch.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,39 @@
354354
},
355355
"repository": "pytorch-inference"
356356
},
357+
"1.8.0": {
358+
"py_versions": [
359+
"py3",
360+
"py36"
361+
],
362+
"registries": {
363+
"af-south-1": "626614931356",
364+
"ap-east-1": "871362719292",
365+
"ap-northeast-1": "763104351884",
366+
"ap-northeast-2": "763104351884",
367+
"ap-south-1": "763104351884",
368+
"ap-southeast-1": "763104351884",
369+
"ap-southeast-2": "763104351884",
370+
"ca-central-1": "763104351884",
371+
"cn-north-1": "727897471807",
372+
"cn-northwest-1": "727897471807",
373+
"eu-central-1": "763104351884",
374+
"eu-north-1": "763104351884",
375+
"eu-west-1": "763104351884",
376+
"eu-west-2": "763104351884",
377+
"eu-west-3": "763104351884",
378+
"eu-south-1": "692866216735",
379+
"me-south-1": "217643126080",
380+
"sa-east-1": "763104351884",
381+
"us-east-1": "763104351884",
382+
"us-east-2": "763104351884",
383+
"us-gov-west-1": "442386744353",
384+
"us-iso-east-1": "886529160074",
385+
"us-west-1": "763104351884",
386+
"us-west-2": "763104351884"
387+
},
388+
"repository": "pytorch-inference"
389+
},
357390
"1.8.1": {
358391
"py_versions": [
359392
"py3",
@@ -703,6 +736,39 @@
703736
},
704737
"repository": "pytorch-training"
705738
},
739+
"1.8.0": {
740+
"py_versions": [
741+
"py3",
742+
"py36"
743+
],
744+
"registries": {
745+
"af-south-1": "626614931356",
746+
"ap-east-1": "871362719292",
747+
"ap-northeast-1": "763104351884",
748+
"ap-northeast-2": "763104351884",
749+
"ap-south-1": "763104351884",
750+
"ap-southeast-1": "763104351884",
751+
"ap-southeast-2": "763104351884",
752+
"ca-central-1": "763104351884",
753+
"cn-north-1": "727897471807",
754+
"cn-northwest-1": "727897471807",
755+
"eu-central-1": "763104351884",
756+
"eu-north-1": "763104351884",
757+
"eu-west-1": "763104351884",
758+
"eu-west-2": "763104351884",
759+
"eu-west-3": "763104351884",
760+
"eu-south-1": "692866216735",
761+
"me-south-1": "217643126080",
762+
"sa-east-1": "763104351884",
763+
"us-east-1": "763104351884",
764+
"us-east-2": "763104351884",
765+
"us-gov-west-1": "442386744353",
766+
"us-iso-east-1": "886529160074",
767+
"us-west-1": "763104351884",
768+
"us-west-2": "763104351884"
769+
},
770+
"repository": "pytorch-training"
771+
},
706772
"1.8.1": {
707773
"py_versions": [
708774
"py3",

tests/unit/test_fw_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -641,6 +641,7 @@ def test_validate_smdataparallel_args_not_raises():
641641
("ml.p3.16xlarge", "pytorch", "1.6", "py3", smdataparallel_enabled),
642642
("ml.p3.16xlarge", "pytorch", "1.7.1", "py3", smdataparallel_enabled),
643643
("ml.p3.16xlarge", "pytorch", "1.7", "py3", smdataparallel_enabled),
644+
("ml.p3.16xlarge", "pytorch", "1.8.0", "py3", smdataparallel_enabled),
644645
("ml.p3.16xlarge", "pytorch", "1.8.1", "py3", smdataparallel_enabled),
645646
("ml.p3.16xlarge", "pytorch", "1.8", "py3", smdataparallel_enabled),
646647
]

0 commit comments

Comments
 (0)