Skip to content

Commit f3923b5

Browse files
author
DevakiBolleneni
committed
revert toml file changes and pt 2.8 sm changes
1 parent 7c87c91 commit f3923b5

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

dlc_developer_config.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ neuronx_mode = false
1515
graviton_mode = false
1616
# Please only set it to true if you are preparing a ARM64 related PR
1717
# Do remember to revert it back to false before merging any PR (including ARM64 dedicated PR)
18-
arm64_mode = true
18+
arm64_mode = false
1919
# Please only set it to True if you are preparing a HABANA related PR
2020
# Do remember to revert it back to False before merging any PR (including HABANA dedicated PR)
2121
habana_mode = false
@@ -37,12 +37,12 @@ deep_canary_mode = false
3737
[build]
3838
# Add in frameworks you would like to build. By default, builds are disabled unless you specify building an image.
3939
# available frameworks - ["base", "vllm", "sglang", "autogluon", "huggingface_tensorflow", "huggingface_pytorch", "huggingface_tensorflow_trcomp", "huggingface_pytorch_trcomp", "pytorch_trcomp", "tensorflow", "pytorch", "stabilityai_pytorch"]
40-
build_frameworks = ["pytorch"]
40+
build_frameworks = []
4141

4242

4343
# By default we build both training and inference containers. Set true/false values to determine which to build.
4444
build_training = true
45-
build_inference = false
45+
build_inference = true
4646

4747
# Set do_build to "false" to skip builds and test the latest image built by this PR
4848
# Note: at least one build is required to set do_build to "false"
@@ -129,7 +129,7 @@ dlc-pr-tensorflow-2-training = ""
129129
dlc-pr-autogluon-training = ""
130130

131131
# ARM64 Training
132-
dlc-pr-pytorch-arm64-training = "pytorch/training/buildspec-arm64-2-7-ec2.yml"
132+
dlc-pr-pytorch-arm64-training = ""
133133

134134
# HuggingFace Training
135135
dlc-pr-huggingface-tensorflow-training = ""

pytorch/training/docker/2.8/py3/Dockerfile.cpu

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -286,14 +286,12 @@ WORKDIR /
286286

287287
# Install SM packages
288288
RUN pip install --no-cache-dir -U \
289-
# address package regression caused by smclarify dependency s3fs
290-
"awscli<=1.42.61" \
291-
"boto3<=1.40.61" \
292289
smclarify \
293-
"sagemaker>=2.9.0,<3" \
294-
"sagemaker-experiments<1" \
290+
"sagemaker==2.254.1" \
291+
sagemaker-experiments \
295292
sagemaker-pytorch-training \
296293
sagemaker-training \
294+
# Add sniffio explicitly as it's not included in sagemaker==2.254.1 dependencies
297295
sniffio
298296

299297
# Install extra packages

pytorch/training/docker/2.8/py3/cu129/Dockerfile.gpu

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -251,15 +251,16 @@ WORKDIR /
251251

252252
# Install SM packages
253253
RUN pip install --no-cache-dir -U \
254-
# address package regression caused by smclarify dependency s3fs
255-
"awscli<=1.42.61" \
256-
"boto3<=1.40.61" \
254+
# address package regression caused by smclarify depedency s3fs"
255+
"awscli<1.42.50" \
256+
"boto3<1.40.50" \
257257
smclarify \
258-
"sagemaker>=2.9.0,<3" \
259-
"sagemaker-experiments<1" \
258+
"sagemaker==2.254.1" \
259+
sagemaker-experiments \
260260
sagemaker-pytorch-training \
261261
sagemaker-training \
262-
sniffio
262+
# Add sniffio explicitly as it's not included in sagemaker==2.254.1 dependencies
263+
sniffio
263264

264265
# Install extra packages
265266
RUN pip install --no-cache-dir -U \

0 commit comments

Comments
 (0)