File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
src/sagemaker/image_uri_config
tests/unit/sagemaker/image_uris Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 8
8
"2.1" : " 2.1.2" ,
9
9
"2.2" : " 2.3.1" ,
10
10
"2.2.0" : " 2.3.1" ,
11
+ "2.3" : " 2.4.0" ,
11
12
"2.3.1" : " 2.4.0"
12
13
},
13
14
"versions" : {
Original file line number Diff line number Diff line change @@ -28,16 +28,13 @@ def test_smp_v2(load_config):
28
28
"smdistributed" : {"modelparallel" : {"enabled" : True }},
29
29
}
30
30
31
- print ("load_config" , load_config )
32
- print ("VERSIONS" , VERSIONS )
33
-
34
31
for processor in PROCESSORS :
35
32
for version in VERSIONS :
36
33
ACCOUNTS = load_config ["training" ]["versions" ][version ]["registries" ]
37
34
PY_VERSIONS = load_config ["training" ]["versions" ][version ]["py_versions" ]
38
35
for py_version in PY_VERSIONS :
39
- # py311 is only for smp version 2.4.0
40
- if py_version == "py311" and "2.4 " not in version :
36
+ # py311 is only for PT 2.3.1 and SMP 2.4.0
37
+ if py_version == "py311" and "2.3 " not in version :
41
38
continue
42
39
43
40
for region in ACCOUNTS .keys ():
@@ -46,8 +43,6 @@ def test_smp_v2(load_config):
46
43
if "2.1" in version or "2.2" in version or "2.3" in version :
47
44
cuda_vers = "cu121"
48
45
49
- print ("HERE" , version , py_version )
50
-
51
46
uri = image_uris .get_training_image_uri (
52
47
region ,
53
48
framework = "pytorch" ,
You can’t perform that action at this time.
0 commit comments