Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dlc_developer_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ deep_canary_mode = false
[build]
# Add in frameworks you would like to build. By default, builds are disabled unless you specify building an image.
# available frameworks - ["base", "vllm", "autogluon", "huggingface_tensorflow", "huggingface_pytorch", "huggingface_tensorflow_trcomp", "huggingface_pytorch_trcomp", "pytorch_trcomp", "tensorflow", "pytorch", "stabilityai_pytorch"]
build_frameworks = []
build_frameworks = ["pytorch"]


# By default we build both training and inference containers. Set true/false values to determine which to build.
build_training = true
build_inference = true
build_inference = false

# Set do_build to "false" to skip builds and test the latest image built by this PR
# Note: at least one build is required to set do_build to "false"
Expand Down Expand Up @@ -124,7 +124,7 @@ nightly_pr_test_mode = false
dlc-pr-base = ""

# Standard Framework Training
dlc-pr-pytorch-training = ""
dlc-pr-pytorch-training = "pytorch/training/buildspec-2-7-sm.yml"
dlc-pr-tensorflow-2-training = ""
dlc-pr-autogluon-training = ""

Expand Down
3 changes: 3 additions & 0 deletions pytorch/training/docker/2.7/py3/cu128/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@ RUN chmod +x /usr/local/bin/start_with_right_hostname.sh

# Install SM packages
RUN pip install --no-cache-dir -U \
# address package regression caused by smclarify depedency s3fs"
"awscli<=1.42.60" \
"boto3<=1.40.60" \
smclarify \
"sagemaker>=2.9.0,<3" \
"sagemaker-experiments<1" \
Expand Down