Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch PT 2.4 Training SM DLC #4457

Merged
merged 7 commits into from
Dec 11, 2024
Merged
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
7 changes: 5 additions & 2 deletions pytorch/training/docker/2.4/py3/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -306,13 +306,16 @@ RUN /opt/conda/bin/mamba install -y -c conda-forge \
shap \
# pinned for sagemaker==2.235.1
"cloudpickle==2.2.1" \
&& /opt/conda/bin/mamba clean -afy

RUN pip install --no-cache-dir -U \
# pin numpy requirement for sagemaker dependency
# requires explicit declaration of spacy, thic, blis
# pip install due to pip check conflict with conda package
spacy \
thinc \
blis \
"numpy<2" \
&& /opt/conda/bin/mamba clean -afy
"numpy<2"

# Copy workaround script for incorrect hostname
COPY changehostname.c /
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"accelerate": {
"version_specifier": "==1.1.1",
"version_specifier": "==1.2.0",
"skip": "True"
},
"fastai": {
"version_specifier": "==2.7.18",
"skip": "True"
},
"s3torchconnector": {
"version_specifier": "==1.2.7",
"version_specifier": "==1.3.0",
"skip": "True"
},
"torchaudio": {
Expand Down
7 changes: 5 additions & 2 deletions pytorch/training/docker/2.4/py3/cu124/Dockerfile.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -488,13 +488,16 @@ RUN /opt/conda/bin/mamba install -y -c conda-forge \
seaborn \
# pinned for sagemaker==2.235.1
"cloudpickle==2.2.1" \
&& /opt/conda/bin/mamba clean -afy

RUN pip install --no-cache-dir -U \
# pin numpy requirement for sagemaker dependency
# requires explicit declaration of spacy, thic, blis
# pip install due to pip check conflict with conda package
spacy \
thinc \
blis \
"numpy<2" \
&& /opt/conda/bin/mamba clean -afy
"numpy<2"

# Add SageMaker DataParallel to LD_LIBRARY_PATH
ENV LD_LIBRARY_PATH="/opt/conda/lib/python${PYTHON_SHORT_VERSION}/site-packages/smdistributed/dataparallel/lib:$LD_LIBRARY_PATH"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"accelerate": {
"version_specifier": "==1.1.1",
"version_specifier": "==1.2.0",
"skip": "True"
},
"fastai": {
Expand All @@ -12,7 +12,7 @@
"skip": "True"
},
"s3torchconnector": {
"version_specifier": "==1.2.7",
"version_specifier": "==1.3.0",
"skip": "True"
},
"torchaudio": {
Expand Down
Loading