Skip to content

Commit 2104808

Browse files
authored
Merge branch 'aws:master' into master
2 parents 175e62d + 6925cbc commit 2104808

20 files changed

+1939
-95
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## v2.207.1 (2024-02-06)
4+
5+
### Bug Fixes and Other Changes
6+
7+
* Add PT 2.1 as a supported framework for the smdistributed distribution
8+
* Enable private docker registry support for ModelBuilder
9+
* HF PT 2.1 Image Configs
10+
11+
### Documentation Changes
12+
13+
* add setup commands for documentation generation
14+
315
## v2.207.0 (2024-02-05)
416

517
### Features

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.207.1.dev0
1+
2.207.2.dev0

doc/api/prep_data/feature_store.rst

+4
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ Inputs
9191
:members:
9292
:show-inheritance:
9393

94+
.. autoclass:: sagemaker.feature_store.inputs.TtlDuration
95+
:members:
96+
:show-inheritance:
97+
9498
.. autoclass:: sagemaker.feature_store.inputs.S3StorageConfig
9599
:members:
96100
:show-inheritance:

src/sagemaker/estimator.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -3285,7 +3285,6 @@ class Framework(EstimatorBase):
32853285
UNSUPPORTED_DLC_IMAGE_FOR_SM_PARALLELISM = (
32863286
"2.0.1-gpu-py310-cu121",
32873287
"2.0-gpu-py310-cu121",
3288-
"2.1.0-gpu-py310",
32893288
)
32903289

32913290
def __init__(
@@ -3959,7 +3958,7 @@ def _distribution_configuration(self, distribution):
39593958
for unsupported_image in Framework.UNSUPPORTED_DLC_IMAGE_FOR_SM_PARALLELISM:
39603959
if (
39613960
unsupported_image in img_uri and not torch_distributed_enabled
3962-
): # disabling DLC images with CUDA12
3961+
): # disabling DLC images without SMDataParallel or SMModelParallel
39633962
raise ValueError(
39643963
f"SMDistributed is currently incompatible with DLC image: {img_uri}. "
39653964
"(Could be due to CUDA version being greater than 11.)"

0 commit comments

Comments
 (0)