@@ -937,6 +937,7 @@ def test_validate_smdataparallel_args_not_raises():
937
937
("ml.p3.16xlarge" , "pytorch" , "1.12" , "py38" , smdataparallel_enabled ),
938
938
("ml.p3.16xlarge" , "pytorch" , "1.13.1" , "py39" , smdataparallel_enabled ),
939
939
("ml.p3.16xlarge" , "pytorch" , "2.0.0" , "py310" , smdataparallel_enabled ),
940
+ ("ml.p3.16xlarge" , "pytorch" , "2.0.1" , "py310" , smdataparallel_enabled ),
940
941
("ml.p3.16xlarge" , "tensorflow" , "2.4.1" , "py3" , smdataparallel_enabled_custom_mpi ),
941
942
("ml.p3.16xlarge" , "tensorflow" , "2.4.1" , "py37" , smdataparallel_enabled_custom_mpi ),
942
943
("ml.p3.16xlarge" , "tensorflow" , "2.4.3" , "py3" , smdataparallel_enabled_custom_mpi ),
@@ -959,6 +960,7 @@ def test_validate_smdataparallel_args_not_raises():
959
960
("ml.p3.16xlarge" , "pytorch" , "1.12.1" , "py38" , smdataparallel_enabled_custom_mpi ),
960
961
("ml.p3.16xlarge" , "pytorch" , "1.13.1" , "py39" , smdataparallel_enabled_custom_mpi ),
961
962
("ml.p3.16xlarge" , "pytorch" , "2.0.0" , "py310" , smdataparallel_enabled_custom_mpi ),
963
+ ("ml.p3.16xlarge" , "pytorch" , "2.0.1" , "py310" , smdataparallel_enabled_custom_mpi ),
962
964
]
963
965
for instance_type , framework_name , framework_version , py_version , distribution in good_args :
964
966
fw_utils ._validate_smdataparallel_args (
@@ -995,6 +997,10 @@ def test_validate_pytorchddp_not_raises():
995
997
"1.12" ,
996
998
"1.12.0" ,
997
999
"1.12.1" ,
1000
+ "1.13.1" ,
1001
+ "2.0.0" ,
1002
+ "2.0.1" ,
1003
+ "2.1.0"
998
1004
]
999
1005
for framework_version in pytorchddp_supported_fw_versions :
1000
1006
fw_utils .validate_pytorch_distribution (
@@ -1060,6 +1066,8 @@ def test_validate_torch_distributed_not_raises():
1060
1066
torch_distributed_gpu_supported_fw_versions = [
1061
1067
"1.13.1" ,
1062
1068
"2.0.0" ,
1069
+ "2.0.1" ,
1070
+ "2.1.0"
1063
1071
]
1064
1072
for framework_version in torch_distributed_gpu_supported_fw_versions :
1065
1073
fw_utils .validate_torch_distributed_distribution (
0 commit comments